diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9af4401ebb07..ba87b69e8943 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,67 +1,40 @@ -# Contribute Code or Provide Feedback for Azure PowerShell +# Contributing to Azure PowerShell This repository contains PowerShell cmdlets for developers and administrators to develop, deploy, and manage Microsoft Azure applications. ## Basics -If you would like to become an active contributor to this project, please follow the instructions provided in [Microsoft Azure Projects Contribution Guidelines](http://azure.github.io/guidelines/). - -In the Azure Developer Experience, you are at Step 5: - -[API Design Review](https://github.com/Azure/adx-documentation-pr#begin-api-design-review) -> [Engage with ADX team](https://github.com/Azure/adx-documentation-pr/blob/master/README.md#engage-with-adx-team) -> [Swagger specification](https://github.com/Azure/adx-documentation-pr#create-swagger-specification) -> [SDKs](https://github.com/Azure/adx-documentation-pr#sdks) -> _**[CLIs](https://github.com/Azure/adx-documentation-pr#clis)**_ - -## Table of Contents - -[Before Starting](#before-starting) -- [Onboarding](#onboarding) -- [GitHub Basics](#github-basics) - - [GitHub Workflow](#github-workflow) - - [Forking the Azure/azure-powershell repository](#forking-the-azureazure-powershell-repository) -- [Code of Conduct](#code-of-conduct) - -[Filing Issues](#filing-issues) - -[Submitting Changes](#submitting-changes) -- [Pull Requests](#pull-requests) -- [SDK for .NET](#sdk-for-net) -- [Pull Request Guidelines](#pull-request-guidelines) - - [Cleaning up commits](#cleaning-up-commits) - - [Updating the change log](#updating-the-change-log) - - [General guidelines](#general-guidelines) - - [Testing guidelines](#testing-guidelines) - - [Cmdlet signature guidelines](#cmdlet-signature-guidelines) - - [Cmdlet parameter guidelines](#cmdlet-parameter-guidelines) - - [Cmdlet pipeline guidelines](#cmdlet-pipeline-guidelines) +If you would like to become an active contributor to this project (or any other open source Microsoft project), please see the list of resources found on [this page](https://opensource.microsoft.com/resources). ## Before Starting ### Onboarding -Make sure that your GitHub account is part of the Azure organization. [Use this page](http://aka.ms/azuregithub) to link your account. +All users must sign the [Microsoft Contributor License Agreement (CLA)](https://cla.opensource.microsoft.com/) before any code contribution can be made. For Microsoft employees, make sure that your GitHub account is part of the Azure organization. [Use this page](http://aka.ms/azuregithub) to link your account. -Before cloning this repository, please make sure you have started in our [documentation repository](https://github.com/Azure/adx-documentation-pr) (you will only have access to that page if you are part of the Azure organization). +### Code of Conduct + +This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. ### GitHub Basics #### GitHub Workflow -If you don't have experience with Git and GitHub, some of the terminology and process can be confusing. [Here is a guide to understanding the GitHub flow](https://guides.github.com/introduction/flow/) and [here is a guide to understanding the basic Git commands](https://education.github.com/git-cheat-sheet-education.pdf). +If you don't have much experience using GitHub or Git, [here is a guide to understanding the GitHub flow](https://guides.github.com/introduction/flow/) and [here is a guide to understanding the basic Git commands](https://education.github.com/git-cheat-sheet-education.pdf). #### Forking the Azure/azure-powershell repository Unless you are working with multiple contributors on the same file, we ask that you fork the repository and submit your pull request from there. [Here is a guide to forks in GitHub](https://guides.github.com/activities/forking/). -### Code of Conduct - -This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. - ## Filing Issues You can find all of the issues that have been filed in the [Issues](https://github.com/Azure/azure-powershell/issues) section of the repository. -If you encounter any bugs with Microsoft Azure PowerShell, please file an issue [here](https://github.com/Azure/azure-powershell/issues/new) and make sure to fill out the provided template with the requested information. +To file an issue, first select one of the [provided templates](https://github.com/Azure/azure-powershell/issues/new/choose) to ensure that the proper information is provided. The following are a few of the templates we have: -To suggest a new feature or changes that could be made to Azure PowerShell, file an issue the same way you would for a bug, but remove the provided template and replace it with information about your suggestion. +- [_Az module bug report_](https://github.com/Azure/azure-powershell/issues/new?assignees=&labels=&template=az-module-bug-report.md&title=) +- [_AzureRM module bug report_](https://github.com/Azure/azure-powershell/issues/new?assignees=&labels=&template=azurerm-module-bug-report.md&title=) +- [_Feature request_](https://github.com/Azure/azure-powershell/issues/new?assignees=&labels=Feature+Request&template=feature_request.md&title=) You can find the code complete and release dates of the next three Azure PowerShell releases in the [Milestones](https://github.com/Azure/azure-powershell/milestones) section of the Issue page. Each milestone will display the issues that are being worked on for the corresponding release. @@ -71,110 +44,57 @@ You can find the code complete and release dates of the next three Azure PowerSh You can find all of the pull requests that have been opened in the [Pull Request](https://github.com/Azure/azure-powershell/pulls) section of the repository. -To open your own pull request, click [here](https://github.com/Azure/azure-powershell/compare). When creating a pull request, keep the following in mind: +When creating a pull request, keep the following in mind: - Make sure you are pointing to the fork and branch that your changes were made in - Choose the correct branch you want your pull request to be merged into - The **master** branch is for active development; changes in this branch will be in the next Azure PowerShell release + - The **preview** branch is a snapshot of the last `AzureRM` release and _should not_ be used for active development - The **release-X.X.X** branch is for active development during a release - The pull request template that is provided **should be filled out**; this is not something that should just be deleted or ignored when the pull request is created - Deleting or ignoring this template will elongate the time it takes for your pull request to be reviewed - The SLA for reviewing pull requests is **two business days** -### SDK for .NET - -If your changes require a new version of an Azure management library, please ensure that the corresponding NuGet package has been published from the [Azure SDK for .NET repository](https://github.com/Azure/azure-sdk-for-net). - -For more information on how to make changes to the SDK for .NET repository and publish packages to NuGet, please see the [`README.md`](https://github.com/Azure/azure-sdk-for-net/blob/psSdkJson6/README.md) in the Azure SDK for .NET repository. - ### Pull Request Guidelines A pull request template will automatically be included as a part of your PR. Please fill out the checklist as specified. Pull requests **will not be reviewed** unless they include a properly completed checklist. -The following is a list of guidelines that pull requests opened in the Azure PowerShell repository must adhere to. You can find a more complete discussion of Azure PowerShell design guidelines [here](documentation/development-docs/azure-powershell-design-guidelines.md). - -#### Cleaning up Commits - -If you are thinking about making a large change to your Azure PowerShell cmdlets, **break up the change into small, logical, testable chunks, and organize your pull requests accordingly**. - -Often when a pull request is created with a large number of files changed and/or a large number of lines of code added and/or removed, GitHub will have a difficult time opening up the changes on their site. This forces the Azure PowerShell team to uses separate software, such as CodeFlow or Beyond Compare, to do a code review on the pull request. +The following is a list of guidelines that pull requests opened in the Azure PowerShell repository must adhere to. You can find a more complete discussion of Azure PowerShell design guidelines [here](documentation/development-docs/design-guidelines). -If you find yourself creating a pull request and are unable to see all the changes on GitHub, we recommend **splitting the pull request into multiple pull requests that are able to be reviewed on GitHub**. +#### General guidelines -If splitting up the pull request is not an option, we recommend **creating individual commits for different parts of the pull request, which can be reviewed individually on GitHub**. +The following guidelines must be followed in **EVERY** pull request that is opened. -For more information on cleaning up the commits in a pull request, such as how to rebase, squash, and cherry-pick, click [here](documentation/development-docs/cleaning-up-commits.md). +- Title of the pull request is clear and informative +- The appropriate `ChangeLog.md` file has been updated with a snippet describing the changes being made +- There are a [small number of commits](documentation/development-docs/cleaning-up-commits.md) that each have an informative message +- All files shipped with a module should contain a proper Microsoft license header +- For public API changes to cmdlets: + - a cmdlet design review was approved for the changes in [this repository](https://github.com/Azure/azure-powershell-cmdlet-review-pr) + - the markdown help files have been regenerated using the commands listed [here](https://github.com/Azure/azure-powershell/blob/master/documentation/development-docs/help-generation.md#updating-all-markdown-files-in-a-module) -#### Updating the change log +#### Testing guidelines -Any changes that are made must be reflected in the respecitve service's change log under the `Upcoming Release` header. This change log will allow customers to easily track what has been changed between releases of a service. +The following guidelines must be followed in **EVERY** pull request that is opened. -For ARM service projects, the change log is located at `src/{{service}}/{{service}}/ChangeLog.md`. +- Changes made have corresponding test coverage +- Tests should not include any hardcoded values, such as location, resource id, etc. +- Tests should have proper setup of resources to ensure any user can re-record the test if necessary +- No existing tests should be skipped -#### Breaking Changes +#### Cmdlet guidelines -Breaking changes should **not** be introduced into the repository without giving customers at least six months notice. For a description of breaking changes in Azure PowerShell and how to declare them in the code using the [various breaking change attributes](documentation/breaking-changes/breaking-changes-attribute-help.md), see [here](documentation/breaking-changes/breaking-changes-definition.md). +Please see the [_Cmdlet Best Practices_](./documentation/development-docs/design-guidelines/cmdlet-best-practices.md) document for information about cmdlet design guidelines. -Whenever a service team announces a breaking change, they must add it to the `upcoming-breaking-changes.md` file in their respective service folder. When the service team is ready to release the module with the breaking change, they must move the corresponding information from `upcoming-breaking-changes.md` into the `current-breaking-changes.md` file located in their service folder. +Examples of standard cmdlets that follow Azure PowerShell patterns and best practices can be found [here](./documentation/development-docs/examples). -#### General guidelines +#### Parameter guidelines -The following guidelines must be followed in **EVERY** pull request that is opened. +Please see the [_Parameter Best Practices_](./documentation/development-docs/design-guidelines/parameter-best-practices.md) document for information about parameter design guidelines. -- Title of the pull request is clear and informative -- There are a small number of commits that each have an informative message -- A description of the changes the pull request makes is included, and a reference to the bug/issue the pull request fixes is included, if applicable -- All files have the Microsoft copyright header -- Cmdlets refer to the management libraries through NuGet references - no dlls are checked in -- The pull request does not introduce [breaking changes](documentation/breaking-changes/breaking-changes-definition.md) (unless a major version change occurs in the assembly and module) +#### Piping guidelines -#### Testing guidelines +Please see the [_Piping Best Practices_](./documentation/development-docs/design-guidelines/piping-best-practices.md) document for information about piping design guidelines. -The following guidelines must be followed in **EVERY** pull request that is opened. +#### Module guidelines -- Pull request includes test coverage for the included changes -- Tests must use xunit, and should either use Moq to mock management client calls, or use the scenario test framework -- Test code should not contain hard coded values for resource names, resource locations, subscriptions, tenants, or similar values. Test scripts, when run live, should be executable using any subscription and any location in Azure -- PowerShell scripts used in tests must do any necessary setup as part of the test or suite setup, and should not use hard-coded values for existing resources -- Test should not use App.config files for settings -- Tests should use the built-in PowerShell functions for generating random names when unique names are necessary - this will store names in the test recording -- Tests should use `Wait-Seconds` for PowerShell and `TestUtilities.Wait` for C# to pause rather than `Start-Sleep` or `Thread.Sleep` respectively - -#### Cmdlet signature guidelines - -The following guidelines must be followed in pull requests that add, edit, or remove a cmdlet. - -- Cmdlet name uses an approved PowerShell verb - use enums for `VerbsCommon`, `VerbsCommunication`, `VerbsData`, `VerbsDiagnostic`, `VerbsLifecycle`, `VerbsOther`, and `VerbsSecurity` whenever possible - - Note that you can see a list of all approved PowerShell verbs by running `Get-Verb` in PowerShell - - When a verb you would like to use is not in the list of approved verbs, or to get ideas on how to use verbs, consult the [Approved Verbs for Windows PowerShell Commands](https://msdn.microsoft.com/en-us/library/ms714428\(v=vs.85\).aspx) documentation where you will find descriptions of approved verbs as well as related verbs in the comments so that you can find one appropriate for your command -- Cmdlet noun name uses the AzureRm prefix for management cmdlets, and the Azure prefix for data plane cmdlets -- Cmdlet specifies the `OutputType` attribute; if the cmdlet produces no output, it should have an `OutputType` of `bool` and implement a `PassThrough` parameter -- If the cmdlet makes changes or has side effects, it should implement `ShouldProcess` and have `SupportsShouldProcess = true` specified in the cmdlet attribute. See a discussion about correct `ShouldProcess` implementation [here](documentation/development-docs/should-process-confirm-impact.md). -- Cmdlets should derive from [`AzureRmCmdlet`](https://github.com/Azure/azure-powershell-common/blob/master/src/ResourceManager/Version2016_09_01/AzureRMCmdlet.cs) class for management cmdlets, and [`AzureDataCmdlet`](https://github.com/Azure/azure-powershell-common/blob/master/src/Common/AzureDataCmdlet.cs) for data cmdlets -- If multiple parameter sets are implemented, the cmdlet should specify a `DefaultParameterSetName` in its cmdlet attribute - -#### Cmdlet parameter guidelines - -The following guidelines must be followed in pull requests that add, edit, or remove a parameter. - -- Cmdlets should have no more than four positional parameters -- Cmdlet parameter sets should be mutually exclusive - each parameter set must have at least one mandatory parameter not in other parameter sets -- Parameter types should not expose types from the management library - complex parameter types should be defined in the module -- Complex parameter types are discouraged - a parameter type should be simple types as often as possible. If complex types are used, they should be shallow and easily creatable from a constructor or another cmdlet -- Parameters should be explicitly marked as `Mandatory` or not, and should contain a `HelpMessage` -- No parameter is of type `object` -- Management cmdlets should have the following parameters and aliases: - - `ResourceGroupName` with (optional) alias to `ResourceGroupName` type `string` marked as `[ValueFromPipelineByPropertyName]` - - `Name` with alias to `ResourceName` type `string` marked as `[ValueFromPipelineByPropertyName]` - - `Location` (if appropriate) type `string` - - `Tag` type `HashTable` - -#### Cmdlet pipeline guidelines - -The following guidelines must be followed in pull requests that make changes to pipeline parameters. - -- Complex parameters should take values from the pipeline when possible, and certainly when they match the output type of another cmdlets -- Only one parameter should use `ValueFromPipeline` per parameter set; parameters from different parameter sets may have this attribute, but should not be convertible -- No parameter is of type `object` -- Each management cmdlet should have a parameter set that takes `ResourceGroupName` and `Name` from the pipeline by property value -- For a given resource type, it should be possible to pipe the output of `Get` and `New` cmdlets to the input of `Set`, `Update`, `Remove` and other action cmdlets for that resource -- More information can be found [here](https://github.com/Azure/azure-powershell/blob/master/documentation/development-docs/piping-in-powershell.md) +Please see the [_Module Best Practices_](./documentation/development-docs/design-guidelines/module-best-practices.md) document for information about module design guidelines. diff --git a/ChangeLog.md b/ChangeLog.md index 27c91eba0a7c..43c613db3901 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,60 @@ +## 1.7.0 - April 2019 +### Highlights since the last major release +* General availability of `Az` module +* For more information about the `Az` module, please visit the following: https://aka.ms/azps-announce +* Added Location, ResourceGroup, and ResourceName completers: https://azure.microsoft.com/en-us/blog/completers-in-azure-powershell/ +* Added wildcard support to Get cmdlets for Az.Compute and Az.Network +* Added interactive and username/password authentication for Windows PowerShell 5.1 only +* Added support for Python 2 runbooks in Az.Automation +* Az.LogicApp: New cmdlets for Integration Account Assemblies and Batch Configuration + +#### Az.Accounts +* Updated Add-AzEnvironment and Set-AzEnvironment to accept parameter AzureAnalysisServicesEndpointResourceId + +#### Az.AnalysisServices +* Using ServiceClient in dataplane cmdlets and removing the original authentication logic +* Making Add-AzureASAccount a wrapper of Connect-AzAccount to avoid a breaking change + +#### Az.Automation +* Fixed New-AzAutomationSoftwareUpdateConfiguration cmdlet bug for Inclusions. Now parameter IncludedKbNumber and IncludedPackageNameMask should work. +* Bug fix for azure automation update management dynamic group + +#### Az.Compute +* Add HyperVGeneration parameter to New-AzDiskConfig and New-AzSnapshotConfig +* Allow VM creation with galley image from other tenants. + +#### Az.ContainerInstance +* Fixed issue in the -Command parameter of New-AzContainerGroup which added a trailing empty argument + +#### Az.DataFactory +* Updated ADF .Net SDK version to 3.0.2 +* Updated Set-AzDataFactoryV2 cmdlet with extra parameters for RepoConfiguration related settings. + +#### Az.Resources +* Improve handling of providers for 'Get-AzResource' when providing '-ResourceId' or '-ResourceGroupName', '-Name' and '-ResourceType' parameters +* Improve error handling for for 'Test-AzDeployment' and 'Test-AzResourceGroupDeployment' + - Handle errors thrown outside of deployment validation and include them in output of command instead + - More information here: https://github.com/Azure/azure-powershell/issues/6856 +* Add '-IgnoreDynamicParameters' switch parameter to set of deployment cmdlets to skip prompt in script and job scenarios + - More information here: https://github.com/Azure/azure-powershell/issues/6856 + +#### Az.Sql +* Support Database Data Classification. + +#### Az.Storage +* Report detail error when create Storage context with parameter -UseConnectedAccount, but without login Azure account + - New-AzStorageContext +* Support Manage Blob Service Properties of a specified Storage account with Management plane API + - Update-AzStorageBlobServiceProperty + - Get-AzStorageBlobServiceProperty + - Enable-AzStorageBlobDeleteRetentionPolicy + - Disable-AzStorageBlobDeleteRetentionPolicy +* -AsJob support for Blob and file upload and download cmdlets + - Get-AzStorageBlobContent + - Set-AzStorageBlobContent + - Get-AzStorageFileContent + - Set-AzStorageFileContent + ## 1.6.0 - March 2019 ### Highlights since the last major release * General availability of `Az` module diff --git a/README.md b/README.md index b6486dcea231..09b16aac05d2 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,9 @@ Try it out in Azure Cloud Shell! ## Modules Below is a table containing our Azure PowerShell rollup module. -Description | Module Name | PowerShell Gallery Link -------------------------------------- | --------------------------------------- | ----------------------- -Azure PowerShell | `Az` | [![Az]][AzGallery] +Description | Module Name | PowerShell Gallery Link +----------------- | ------------ | ----------------------- +Azure PowerShell | `Az` | [![Az]][AzGallery] For a full list of modules found in this repository, please see the [Azure PowerShell Modules][AzurePowerShelModules] document. @@ -27,7 +27,7 @@ Run the following command in an elevated PowerShell session to install the rollu Install-Module -Name Az ``` -This module runs on Windows PowerShell with [.NET Framework 4.7.2][DotNetFramework] or greater, or [PowerShell Core][PowerShellCore]. The Az module replaces AzureRM. You should not install Az side-by-side with AzureRM. +This module runs on Windows PowerShell with [.NET Framework 4.7.2][DotNetFramework] or greater, or [PowerShell Core][PowerShellCore]. The `Az` module replaces `AzureRM`. You should not install `Az` side-by-side with `AzureRM`. If you have an earlier version of the Azure PowerShell modules installed from the PowerShell Gallery and would like to update to the latest version, run the following commands in an elevated PowerShell session: @@ -43,7 +43,7 @@ For detailed instructions on installing Azure PowerShell, please refer to the [i ### Log into Azure -To connect to Azure, use the [Connect-AzAccount][ConnectAzAccount] cmdlet: +To connect to Azure, use the [`Connect-AzAccount`][ConnectAzAccount] cmdlet: ```powershell # Device Code login - Provides a link to sign into Azure via your web browser @@ -53,7 +53,7 @@ Connect-AzAccount Connect-AzAccount -ServicePrincipal -ApplicationId 'http://my-app' -Credential $PSCredential -TenantId $TenantId ``` -To log into a specific cloud (_AzureChinaCloud_, _AzureCloud_, _AzureGermanCloud_, _AzureUSGovernment_), use the `Environment` parameter: +To log into a specific cloud (_AzureChinaCloud_, _AzureCloud_, _AzureGermanCloud_, _AzureUSGovernment_), use the `-Environment` parameter: ```powershell # Specific cloud login - Logs into the Azure China cloud @@ -62,7 +62,7 @@ Connect-AzAccount -Environment AzureChinaCloud ### Getting and setting your Azure PowerShell session context -A session context persists login information across Azure PowerShell modules and PowerShell instances. To view the context you are using in the current session, which contains the subscription and tenant, use the [Get-AzContext][GetAzContext] cmdlet: +A session context persists login information across Azure PowerShell modules and PowerShell instances. To view the context you are using in the current session, which contains the subscription and tenant, use the [`Get-AzContext`][GetAzContext] cmdlet: ```powershell # Gets the Azure PowerShell context for the current PowerShell session @@ -72,7 +72,7 @@ Get-AzContext Get-AzContext -ListAvailable ``` -To get the subscriptions in a tenant, use the [Get-AzSubscription][GetAzSubscription] cmdlet: +To get the subscriptions in a tenant, use the [`Get-AzSubscription`][GetAzSubscription] cmdlet: ```powershell # Get all of the Azure subscriptions in your current Azure tenant @@ -82,7 +82,7 @@ Get-AzSubscription Get-AzSubscription -TenantId $TenantId ``` -To change the subscription that you are using for your current context, use the [Set-AzContext][SetAzContext] cmdlet: +To change the subscription that you are using for your current context, use the [`Set-AzContext`][SetAzContext] cmdlet: ```powershell # Set the Azure PowerShell context to a specific Azure subscription @@ -139,13 +139,13 @@ Alternatively, be sure to check out the [Azure Community Support](https://azure. ### Feedback -If there is a feature you would like to see in Azure PowerShell, please use the [Send-Feedback][SendFeedback] cmdlet, or file an issue in our [GitHub issues][GitHubIssues] page to provide the Azure PowerShell team direct feedback. +If there is a feature you would like to see in Azure PowerShell, please use the [`Send-Feedback`][SendFeedback] cmdlet, or file an issue in our [GitHub issues][GitHubIssues] page to provide the Azure PowerShell team direct feedback. ## Contribute Code If you would like to become an active contributor to this project, please follow the instructions provided in [Microsoft Azure Projects Contribution Guidelines][ContributionGuidelines]. -Additional information about contributing to this repository can be found in the [Contributing][Contributing] document and the [Azure PowerShell Developer Guide][DeveloperGuide] document. +Additional information about contributing to this repository can be found in the [`CONTRIBUTING.md`][Contributing] document and the [_Azure PowerShell Developer Guide_][DeveloperGuide] document. ## Learn More @@ -162,8 +162,8 @@ _This project has adopted the [Microsoft Open Source Code of Conduct][CodeOfCond [Contributing]: CONTRIBUTING.md -[AzureIcon]: documentation/MicrosoftAzure-32px.png -[PowershellIcon]: documentation/MicrosoftPowerShellCore-32px.png +[AzureIcon]: documentation/images/MicrosoftAzure-32px.png +[PowershellIcon]: documentation/images/MicrosoftPowerShellCore-32px.png [AzurePowerShelModules]: documentation/azure-powershell-modules.md [DeveloperGuide]: documentation/development-docs/azure-powershell-developer-guide.md diff --git a/build.proj b/build.proj index 26e2aa2c6fb6..34100e49b5b1 100644 --- a/build.proj +++ b/build.proj @@ -245,7 +245,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -261,8 +261,10 @@ $(LibraryRoot)src/**/Authenticators.csproj; $(LibraryRoot)src/**/Automation.Test.csproj; $(LibraryRoot)src/**/Storage.Test.csproj; + C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe + + "$(PowerShellCommand)" -NonInteractive -NoLogo -NoProfile -Command - diff --git a/build/download-build-steps.yml b/build/download-build-steps.yml index e530b8c50847..8d4e3e580885 100644 --- a/build/download-build-steps.yml +++ b/build/download-build-steps.yml @@ -1,8 +1,6 @@ steps: -- task: DownloadBuildArtifacts@0 - displayName: 'Download artifacts' +- task: DownloadPipelineArtifact@0 + displayName: 'Download build' inputs: - buildType: 'current' - downloadType: 'single' - artifactName: artifacts - downloadPath: $(System.DefaultWorkingDirectory) \ No newline at end of file + artifactName: build + targetPath: artifacts \ No newline at end of file diff --git a/build/jobs.yml b/build/jobs.yml index 0efad909f48d..6c6d0fff84f9 100644 --- a/build/jobs.yml +++ b/build/jobs.yml @@ -21,6 +21,8 @@ jobs: arguments: 'build.proj /t:Build /p:Configuration=$(Configuration)' - template: publish-artifacts-steps.yml + parameters: + artifactName: build - job: Generate_Help displayName: Generate Help @@ -47,6 +49,8 @@ jobs: arguments: 'build.proj /t:GenerateHelp /p:Configuration=$(Configuration)' - template: publish-artifacts-steps.yml + parameters: + artifactName: help - job: Static_Analysis displayName: Static Analysis @@ -70,11 +74,14 @@ jobs: arguments: 'build.proj /t:StaticAnalysis /p:Configuration=$(Configuration)' - template: publish-artifacts-steps.yml + parameters: + artifactName: static-analysis - job: Test displayName: Test dependsOn: Build condition: succeeded() + timeoutInMinutes: 120 pool: vmImage: ${{ parameters.vmImage }} @@ -92,4 +99,6 @@ jobs: custom: msbuild arguments: 'build.proj /t:Test /p:Configuration=$(Configuration);Framework=netcoreapp2.1' - - template: publish-artifacts-steps.yml \ No newline at end of file + - template: publish-artifacts-steps.yml + parameters: + artifactName: test \ No newline at end of file diff --git a/build/publish-artifacts-steps.yml b/build/publish-artifacts-steps.yml index d66da77cc2df..e6a1f4f8bffa 100644 --- a/build/publish-artifacts-steps.yml +++ b/build/publish-artifacts-steps.yml @@ -1,7 +1,10 @@ +parameters: + artifactName: '' + steps: -- task: PublishBuildArtifacts@1 - displayName: 'Save artifacts' +- task: PublishPipelineArtifact@0 + displayName: 'Save ${{ parameters.artifactName }}' inputs: - artifactName: artifacts - pathtoPublish: artifacts + artifactName: ${{ parameters.artifactName }} + targetPath: artifacts condition: succeededOrFailed() \ No newline at end of file diff --git a/documentation/Debugging-StaticAnalysis-Errors.md b/documentation/Debugging-StaticAnalysis-Errors.md index a8afebf2d40b..c7ab2bcca422 100644 --- a/documentation/Debugging-StaticAnalysis-Errors.md +++ b/documentation/Debugging-StaticAnalysis-Errors.md @@ -42,7 +42,7 @@ _Note_: Sometimes the error listed in the .csv file can be a false positive (for We take breaking changes very seriously, so please be mindful about the violations that you suppress in our repo. ### Signature Issues -Signature issues occur when your cmdlets do not follow PowerShell standards. Please check [this page](https://github.com/Azure/azure-powershell/blob/master/documentation/development-docs/azure-powershell-design-guidelines.md) to ensure you are following PowerShell guidelines. Issues with severity 0 or 1 must be addressed, while issues with severity 2 are advisory. If you have an issue with severity 0 or 1 that has been approved by the Azure PowerShell team, you can suppress them following these steps: +Signature issues occur when your cmdlets do not follow PowerShell standards. Please check the [_Cmdlet Best Practices_](https://github.com/Azure/azure-powershell/blob/master/documentation/development-docs/design-guidelines/cmdlet-best-practices.md) and the [_Parameter Best Practices_](https://github.com/Azure/azure-powershell/blob/master/documentation/development-docs/design-guidelines/parameter-best-practices.md) documents to ensure you are following PowerShell guidelines. Issues with severity 0 or 1 must be addressed, while issues with severity 2 are advisory. If you have an issue with severity 0 or 1 that has been approved by the Azure PowerShell team, you can suppress them following these steps: - Download the `SignatureIssues.csv` file from the Jenkins build - Open the file using a text editor (such as VS Code) and copy each of the errors you'd like to suppress diff --git a/documentation/development-docs/azure-powershell-design-guidelines.md b/documentation/development-docs/azure-powershell-design-guidelines.md deleted file mode 100644 index 5f49f8a7adae..000000000000 --- a/documentation/development-docs/azure-powershell-design-guidelines.md +++ /dev/null @@ -1,326 +0,0 @@ -# Azure PowerShell Design Guidelines - -## Table of Contents - -- [Cmdlet Guidelines](#cmdlet-guidelines) - - [Cmdlet Naming Conventions](#cmdlet-naming-conventions) - - [Verb-Noun Format](#verb-noun-format) - - [Pascal Case](#pascal-case) - - [Noun Prefix](#noun-prefix) - - [Specific Noun and Noun Singularity](#specific-noun-and-noun-singularity) - - [Set vs. Update](#set-vs-update) - - [Cmdlet Alias](#cmdlet-alias) - - [Output Type](#output-type) - - [Returning Wrapped SDK Types](#returning-wrapped-sdk-types) - - [Returning No Output](#returning-no-output) - - [ShouldProcess](#should-process) - - [When to Add the Force Parameter](#when-to-add-the-force-parameter) -- [Parameter Guidelines](#parameter-guidelines) - - [Parameter Naming Conventions](#parameter-naming-conventions) - - [Standard Parameter Name](#standard-parameter-name) - - [Pascal Case](#pascal-case) - - [Singularity](#singularity) - - [Parameter Alias](#parameter-alias) - - [Bool vs. SwitchParameter](#bool-vs-switchparameter) - - [Closed Set of Values](#closed-set-of-values) - - [Consistent Parameter Types](#consistent-parameter-types) -- [Parameter Set Guidelines](#parameter-set-guidelines) - - [Parameter Set Naming Conventions](#parameter-set-naming-conventions) - - [Pascal Case](#pascal-case) - - [Attribute Guidelines](#attribute-guidelines) - - [Mutually Exclusive Parameter Sets](#mutually-exclusive-parameter-sets) - - [Positional Parameters Limit](#positional-parameters-limit) - - [ValueFromPipeline Limit](#valuefrompipeline-limit) - - [Required Parameter Sets](#required-parameter-sets) - - [Interactive Parameter Set](#interactive-parameter-set) - - [ResourceId Parameter Set](#resourceid-parameter-set) - - [InputObject Parameter Set](#inputobject-parameter-set) -- [Piping Guidelines](#piping-guidelines) - - [ResourceId](#resourceid) - - [InputObject](#inputobject) -- [AsJob Parameter](#asjob-parameter) -- [Argument Completers](#argument-completers) - -## Expected Patterns for Standard Cmdlets - -For information and examples on standard cmdlet implementation (`Get-*`, `New-*`, `Remove-*` and `Set/Update-*`) for resources and child resources, please see our [Expected Patterns for Standard Cmdlets](./patterns-for-standard-cmdlets.md) document. - -## Cmdlet Guidelines - -### Cmdlet Naming Conventions - -The following are naming conventions to keep in mind when coming up with a name for your cmdlet. - -#### Verb-Noun Format - -Cmdlet names should follow the _Verb-Noun_ format, where the verb is from the [list of approved PowerShell verbs](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/approved-verbs-for-windows-powershell-commands), and the noun is a specific noun describing a resource within your service. - -#### Pascal Case - -From the [Strongly Encouraged Development Guidelines](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#use-pascal-case-for-cmdlet-names-sd02): - -> _Use Pascal case for cmdlet names. In other words, capitalize the first letter of the verb and all terms used in the noun. For example, "Clear-ItemProperty"._ - -#### Noun Prefix - -For ARM cmdlets, the noun must be prefixed with `Az`. - -#### Specific Noun and Noun Singularity - -From the [Strongly Encouraged Development Guidelines](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#use-a-specific-noun-for-a-cmdlet-name-sd01): - -> _Nouns used in cmdlet naming need to be very specific so that the user can discover your cmdlets. Prefix generic nouns such as "server" with a shortened version of the product name. For example, if a noun refers to a server that is running an instance of Microsoft SQL Server, use a noun such as "SQLServer". The combination of specific nouns and the short list of approved verbs enable the user to quickly discover and anticipate functionality while avoiding duplication among cmdlet names._ -> -> _To enhance the user experience, the noun that you choose for a cmdlet name should be singular. For example, use the name `Get-Process` instead of `Get-Processes`. It is best to follow this rule for all cmdlet names, even when a cmdlet is likely to act upon more than one item._ - -#### Set vs. Update - -If your cmdlet is performing a **PATCH** operation (_i.e._, a partial replacement on the server), then the cmdlet should use the verb `Update`. - -If your cmdlet is performing a **PUT** operation (_i.e._, a full replacement on the server), the the cmdlet should use the verb `Set`. - -#### Cmdlet Alias - -If you there is a separate nomenclature for your service and/or resource, or if you would like to shorten the name of the cmdlet so it's easier to remember, you can add an alias attribute to your cmdlet to allow for this functionality. - -### Output Type - -Specified by the `OutputType` attribute, this piece of metadata lets the user know what the type of the object returned by the cmdlet is (found in the **Outputs** section of a cmdlet's help content). - -#### Returning Wrapped SDK Types - -In most cases, cmdlets will be returning an object corresponding to a resource(s) that a user is performing an action on. Rather than returning the .NET SDK type for that resource (exposing .NET SDK types in PowerShell cmdlets is _strongly_ discouraged), we suggest creating a new class that wraps this .NET SDK type, allowing for breaking changes in the underlying type while avoiding breaking changes in the PowerShell type. - -For example, the `Get-AzVM` cmdlet uses the .NET SDK to retrieve objects of the `VirtualMachine` type, but a new class, `PSVirtualMachine`, was created to wrap the type from the .NET SDK, and is returned by the cmdlet. If, in the future, the `VirtualMachine` type in the .NET SDK has a property removed, that property can still be maintained in PowerShell by adding it to the `PSVirtualMachine` and recreating the value, thus avoiding a breaking change in the cmdlet(s). - -#### Returning No Output - -In the case where your cmdlet doesn't return any output (_e.g._, removing, starting, stopping a resource), the cmdlet should implement the `PassThru` parameter and the `OutputType` should be set to `bool`. The `PassThru` parameter is a `SwitchParameter` set by the user to signal that they would like to receive output from a cmdlet which does not return anything. If the `PassThru` parameter is provided, you should return the value `true` so the user is made aware that the operation was successful. If the operation was unsuccessful, then the cmdlet should throw an exception. - -### ShouldProcess - -If a cmdlet makes any changes to an object on the server (_e.g._, create, delete, update, start, stop a resource), the cmdlet should implement `ShouldProcess`. This property adds the `WhatIf` and `Confirm` parameters to the cmdlet: `WhatIf` is a `SwitchParameter` that, when provided by the user, doesn't execute the part of the cmdlet responsible for making the changes to the object, but rather displays a message alerting the user of the action that is to be performed on the object; `Confirm` is a `SwitchParameter` that, when provided by the user, prompts the user for confirmation that they want to continue with the execution of the cmdlet. - -More information about `ShouldProcess` can be found in the [Should Process and Confirm Impact](./should-process-confirm-impact.md) document. - -#### When to Add the Force Parameter - -The `Force` parameter is reserved for special scenarios where additional confirmation from the user is required. From the above document on [Should Process and Confirm Impact](./should-process-confirm-impact.md) document: - -> _Some cmdlets required additional confirmation. For example, if a cmdlet would destroy existing resources in some circumstances, the cmdlet might detect that condition and prompt the user to verify before continuing. Overwriting an existing resource during resource creation, overwriting a file when downloading data, deleting a resource that is currently in use, or deleting a container that contains additional resources are all example of this pattern. To implement additional confirmation, and allow scripts to opt out of additional prompts, the above pattern is enhanced with calles to `ShouldContinue()` and the `Force` parameter._ - -## Parameter Guidelines - -### Parameter Naming Conventions - -The following are naming conventions to keep in mind when coming up with a name for your parameters. - -In addition, a recommended list of parameter names can be found [here](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/standard-cmdlet-parameter-names-and-types). - -#### Standard Parameter Name - -From the [Strongly Encouraged Development Guidelines](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#use-standard-parameter-names): - -> _Your cmdlet should use standard parameter names so that the user can quickly determine what a particular parameter means. If a more specific name is required, use a standard parameter name, and then specify a more specific name as an alias. For example, the `Get-Service` cmdlet has a parameter that has a generic name (**Name**) and a more specific alias (**ServiceName**). Both terms can be used to specify the parameter._ - -#### Pascal Case - -Similar to cmdlets (mentioned above), parameters should follow pascal casing.From the [Strongly Encouraged Development Guidelines](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#use-pascal-case-for-parameter-names): - -> _Use Pascal case for parameter names. In other words, capitalize the first letter of each word in the parameter name, including the first letter of the name._ - -#### Singularity - -From the [Strongly Encouraged Development Guidelines](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#use-singular-parameter-names): - -> _Avoid using plural names for parameters whose value is a single element. This includes parameters that take arrays or lists because the user might supply an array or list with only one element._ -> ->_Plural parameter names should be used only in those cases where the value of the parameter is always a multiple-element value. In these cases, the cmdlet should verify that multiple elements are supplied, and the cmdlet should display a warning to the user if multiple elements are not supplied._ - -#### Parameter Alias - -If you there is a separate nomenclature for the parameter name, or if you would like to shorten the name of the parameter so it's easier to remember, you can add an alias attribute to your parameter to allow for this functionality. - -### Bool vs. SwitchParameter - -Parameters of type `bool` are _strongly_ discouraged in PowerShell. The `SwitchParameter` type of a parameter acts a flag that signals whether or not some action should be taken based on if the parameter was provided or not. From the [Strongly Encouraged Development Guidelines](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#parameters-that-take-true-and-false): - -> _If your parameter takes only true and false, define the parameter as type SwitchParameter. A switch parameter is treated as true when it is specified in a command. If the parameter is not included in a command, Windows PowerShell considers the value of the parameter to be false. Do not define Boolean parameters._ - -### Closed Set of Values - -If there is a closed set of values applicable for a given parameter, use either a `ValidateSet`, enumeration type, or an `ArgumentCompleter`. This functionality allows users to tab through the different values they can provide. From the [Strongly Encouraged Development Guidelines](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#parameters-that-take-a-list-of-options): - -> _There are two ways to create a parameter whose value can be selected from a set of options._ -> -> - _Define an enumeration type (or use an existing type) that specifies the valid values. Then, use the enumeration type to create a parameter of that type._ -> - _Add the **ValidateSet** attribute to the parameter declaration._ - -In addition, you can choose to add an `ArgumentCompleter` to a parameter to allow users to tab through a closed set of values, _but this does not restrict users on the values they can provide._ For more information on `ArgumentCompleters`, please see the [below section](#argument-completers) - -### Consistent Parameter Types - -From the [Strongly Encouraged Development Guidelines](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#use-consistent-parameter-types): - -> _When the same parameter is used by multiple cmdlets, always use the same parameter type. For example, if the **Process** parameter is an **Int16** type for one cmdlet, do not make the **Process** parameter for another cmdlet a **UInt16** type._ - -## Parameter Set Guidelines - -### Parameter Set Naming Conventions - -The following are naming conventions to keep in mind when coming up with a name for your parameter set. - -#### Pascal Case - -Similar to cmdlets (mentioned above), parameter set names should follow pascal casing. From the [Strongly Encouraged Development Guidelines](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#use-pascal-case-for-cmdlet-names-sd02): - -> _Use Pascal case for cmdlet names. In other words, capitalize the first letter of the verb and all terms used in the noun. For example, "Clear-ItemProperty"._ - -### Attribute Guidelines - -The following are guidelines that should be followed when working with the attributes of a parameter set. - -#### Mutually Exclusive Parameter Sets - -For PowerShell to determine which parameter set a user is intending to use with a set of provided parameters, the parameter sets need to be designed in such a way that they are mutually exclusive. From the remarks section of [Parameter Attribute Declaration](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/parameter-attribute-declaration#remarks): - -> _Each parameter set must have at least one unique parameter. Good cmdlet design indicates this unique parameter should also be mandatory if possible. If your cmdlet is designed to be run without parameters, the unique parameter cannot be mandatory._ - -#### Positional Parameters Limit - -It is possibile to call a PowerShell cmdlet without providing the parameter names, but just the values you would like to pass through. This is done by specifying the position at which the value of each parameter should be provided by using the `Position` property for a parameter. However, when there are too many positional parameters in a single parameter set, it can be difficult for the user to remember the exact ordering in which the parameter values should be provided. From the remarks section of [Parameter Attribute Declaration](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/parameter-attribute-declaration#remarks): - -> _When you specify positional parameters, limit the number of positional parameters in a parameter set to less than five. And, positional parameters do not have to be contiguous. Positions 5, 100, and 250 work the same as positions 0, 1, and 2._ - -In addition, there should be no two parameters with the same position in the same parameter set. From the remarks section of [Parameter Attribute Declaration](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/parameter-attribute-declaration#remarks): - -> _No parameter set should contain more than one positional parameter with the same position._ - -#### ValueFromPipeline Limit - -Allowing the user to pipe an object from one cmdlet to another is a major scenario in PowerShell, but allowing multiple parameters in the same parameter set to accept their value from the pipeline can cause issues. From the remarks section of [Parameter Attribute Declaration](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/parameter-attribute-declaration#remarks): - -> _Only one parameter in a parameter set should declare ValueFromPipeline = true. Multiple parameters can define ValueFromPipelineByPropertyName = true._ - -### Required Parameter Sets - -In most Azure PowerShell cmdlets, there is a bare minimum of three parameter sets that need to be implemented. - -#### Interactive Parameter Set - -This parameter set should be implemented by _every_ cmdlet - in most cases, the user provides the name of the resource that they are acting upon (`Name`) and the resource group in which they are acting in (`ResourceGroupName`). - -The interactive parameter set **will always be the default parameter set** for a cmdlet (specified by the `DefaultParameterSetName` property in the `Cmdlet` attribute). This means that when PowerShell is unable to determine which parameter set a user is in, it will default to the interactive parameter set and prompt the user to provide values for the missing mandatory parameters. - -#### ResourceId Parameter Set - -This parameter set should be implemented by _every_ cmdlet - the user is able to provide a `ResourceId` string or GUID from the Azure Portal, or from one of the generic resources cmdlets (more information about that below in the piping section), and act upon the given resource associated with the id. The typical `Name` and `ResourceGroupName` parameters are replaced by a single `ResourceId` parameter of type string. - -#### InputObject Parameter Set - -This parameter should be implemented by _most_ cmdlets - the user is able to take the object returned from the `Get`, `New`, or `Set` cmdlets (or other cmdlets that return the common resource) and provide it to the `InputObject` parameter for a cmdlet that acts upon the same resource. The typical `Name` and `ResourceGroupName` parameters are retrieved from the `InputObject` that the user is passing through. - -## Piping Guidelines - -Piping is an important scenario for cmdlets to have enabled in PowerShell. For more information on how piping works and for examples of its usage, please see the [Piping in PowerShell](./piping-in-powershell.md) document. - -Below are the two main piping scenarios that should be applied in the cmdlets with the corresponding parameter sets. - -### ResourceId - -In this scenario, the user is able to pipe the result of a generic resources cmdlet into a cmdlet that accepts `ResourceId`. The below example shows how a user can use the generic resources cmdlet `Find-AzResource` to get all resources of type `Foo` and remove them: - -```powershell -Find-AzResource -ResourceType Microsoft.Foo/foo | Remove-AzFoo -``` - -For more information on enabling the `ResourceId` piping scenario and more examples, please see the ["Using the `ResourceId` parameter"](./piping-in-powershell.md#using-the-resourceid-parameter) section of the _Piping in PowerShell_ document. - -### InputObject - -In this scenario, the user is able to pipe the result of a cmdlet that returns a resource into a cmdlet that accepts that resource as an `InputObject`. The below example shows how a user can get a `Foo` object from one cmdlet and pipe it to a cmdlet that removes it: - -```powershell -Get-AzFoo -Name "FooName" -ResourceGroupName "RG" | Remove-AzFoo -``` - -For more information on enabling the `InputObject` piping scenario and more examples, please see the ["Using the `InputObject` parameter"](./piping-in-powershell.md#using-the-inputobject-parameter) section of the _Piping in PowerShell_ document. - -## AsJob Parameter - -All long running operations must implement the `-AsJob` parameter, which will allow the user to create jobs in the background. For more information about PowerShell jobs and the -AsJob parameter, read [this doc](https://docs.microsoft.com/en-us/powershell/azure/using-psjobs). - -To implement the `-AsJob` parameter, simply add the parameter to the end of the parameter list: - -````cs -[Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] -public SwitchParameter AsJob { get; set; } -```` - -Once you add the parameter, please manually test that the job is created and successfully completes when the parameter is specified. Additionally, please ensure that the help files are updated with this parameter. - -To ensure that `-AsJob` is not broken in future changes, please add a test for this parameter. To update tests to include this parameter, use the following pattern: - -````powershell -$job = Get-AzSubscription -$job | Wait-Job -$subcriptions = $job | Receive-Job -```` - -To set a custom job name, please use [SetBackgroupJobDescription(string name)](https://github.com/Azure/azure-powershell-common/blob/master/src/Common/AzurePSCmdlet.cs#L810). The default job description is: "Long Running Operation for '{cmdlet name}' on resource '{resource name}'" - -## Argument Completers - -PowerShell uses Argument Completers to provide tab completion for users. At the moment, Azure PowerShell has two specific argument completers that should be applied to relevant parameters, and one generic argument completer that can be used to tab complete with a given list of values. - -### Resource Group Completer - -For any parameter that takes a resource group name, the `ResourceGroupCompleter` should be applied as an attribute. This will allow the user to tab through all resource groups in the current subscription. - -```cs -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -... -[Parameter(Mandatory = false, HelpMessage = "The resource group name")] -[ResourceGroupCompleter] -public string ResourceGroupName { get; set; } -``` - -### Resource Name Completer - -For any parameter that takes a resource name, the `ResourceNameCompleter` should be applied as an attribute. This will allow the user to tab through all resource names for the ResourceType in the current subscription. This completer will filter based upon the current parent resources provided (for instance, if ResourceGroupName is provided, only the resources in that particular resource group will be returned). For this completer, please provide the ResourceType as the first argument, followed by the parameter name for all parent resources starting at the top level. - -```cs -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -... -[Parameter(Mandatory = false, HelpMessage = "The parent server name")] -[ResourceNameCompleter("Microsoft.Sql/servers", nameof(ResourceGroupName))] -public string ServerName { get; set; } - -[Parameter(Mandatory = false, HelpMessage = "The database name")] -[ResourceNameCompleter("Microsoft.Sql/servers/databases", nameof(ResourceGroupName), nameof(ServerName))] -public string Name { get; set; } -``` - -### Location Completer - -For any parameter that takes a location, the `LocationCompleter` should be applied as an attribute. In order to use the `LocationCompleter`, you must input as an argument all of the Providers/ResourceTypes used by the cmdlet. The user will then be able to tab through locations that are valid for all of the Providers/ResourceTypes specified. - -```cs -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -... -[Parameter(Mandatory = false, HelpMessage = "The location of the resource")] -[LocationCompleter("Microsoft.Batch/operations")] -public string Location { get; set; } -``` - -### Generic Argument Completer - -For any parameter which you would like the user to tab through a list of suggested values (but you do not want to limit the users to only these values), the generic argument completer should be added. - -```cs -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -... -[Parameter(Mandatory = false, HelpMessage = "The tiers of the plan")] -[PSArgumentCompleter("Basic", "Premium", "Elite")] -public string Tier { get; set; } -``` diff --git a/documentation/development-docs/azure-powershell-developer-guide.md b/documentation/development-docs/azure-powershell-developer-guide.md index 224c98ec051b..d3b78eaebc71 100644 --- a/documentation/development-docs/azure-powershell-developer-guide.md +++ b/documentation/development-docs/azure-powershell-developer-guide.md @@ -116,9 +116,11 @@ To keep consistency across our modules, we've implemented a static analysis syst msbuild build.proj /t:StaticAnalysis ``` +_Note_: this can add 10-15 minutes to your build time due to help generation. + ## Running Tests -Launch `VS Developer Command Prompt` and run the following command (from the root of the repository) to run all of the tests: +Launch `VS Developer Command Prompt` and run the following command (from the root of the repository) to run all of the tests in playback: ``` msbuild build.proj /t:Test @@ -142,7 +144,7 @@ For more information about on-boarding a new library in the SDK for .NET reposit Before development, you must meet with the Azure PowerShell team to have a design review for your proposed PowerShell cmdlets. We advise that this review is held no earlier than three weeks out from code complete of the release you want to ship the cmdlets with. For a small number of cmdlet changes and/or additions, an email containing the markdown files for the proposed changes is suggested. For a large number of changes and/or additions, a meeting is required with the Azure PowerShell team. -Before submitting a design review, please be sure that you have read the [Azure PowerShell Design Guidelines](azure-powershell-design-guidelines.md) document. +Before submitting a design review, please be sure that you have read the documents found in the [Azure PowerShell Design Guidelines](./design-guidelines) folder. Please submit a design review here: https://github.com/Azure/azure-powershell-cmdlet-review-pr @@ -191,7 +193,7 @@ After the solution file is updated, save and close it. Now, open the solution fi ``` **Note**: This is not needed since this is a new project and does not use legacy namespace conventions. - + - Update this entry to use your SDK: ```xml @@ -210,7 +212,7 @@ There are a few existing projects that need to be added before developing any cm ## PowerShell Cmdlet Design Guidelines -Please check out the [PowerShell Cmdlet Design Guidelines](azure-powershell-design-guidelines.md) page for more information on how to create cmdlets that follow the PowerShell guidelines. +Please check out the [_Cmdlet Best Practices_](./design-guidelines/cmdlet-best-practices.md) document for more information on how to create cmdlets that follow the PowerShell guidelines. ## Enable Running PowerShell when Debugging @@ -218,7 +220,7 @@ Please check out the [PowerShell Cmdlet Design Guidelines](azure-powershell-desi - Right click on your project in the **Solution Explorer** and select **Set as StartUp project** - Right-click on the project and select **Properties** - Go to the **Debug** tab -- Under **Start Action**, pick _Start external program_ and type the PowerShell 6.0 directory +- Under **Start Action**, pick _Start external program_ and type the PowerShell 6.0 directory - For example, `C:\Program Files\PowerShell\6\pwsh.exe` ### Importing Modules @@ -311,81 +313,4 @@ Whenver you make updates to a project, please make sure to update the correspond ## Publish to PowerShell Gallery -To publish your module to the [official PowerShell gallery](http://www.powershellgallery.com/) or the test gallery site, contact the Azure PowerShell team - -## AsJob Parameter - -All long running operations must implement the `-AsJob` parameter, which will allow the user to create jobs in the background. For more information about PowerShell jobs and the -AsJob parameter, read [this doc](https://docs.microsoft.com/en-us/powershell/azure/using-psjobs). - -To implement the `-AsJob` parameter, simply add the parameter to the end of the parameter list: - -````cs -[Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] -public SwitchParameter AsJob { get; set; } -```` - -Once you add the parameter, please manually test that the job is created and successfully completes when the parameter is specified. Additionally, please ensure that the help files are updated with this parameter. - -To ensure that `-AsJob` is not broken in future changes, please add a test for this parameter. To update tests to include this parameter, use the following pattern: - -````powershell -$job = Get-AzSubscription -$job | Wait-Job -$subcriptions = $job | Receive-Job -```` - -## Argument Completers - -PowerShell uses Argument Completers to provide tab completion for users. At the moment, Azure PowerShell has two specific argument completers that should be applied to relevant parameters, and one generic argument completer that can be used to tab complete with a given list of values. To test the completers, run a complete build after you have added the completers (`msbuild build.proj`) and ensure that the psm1 file (`Az..psm1`) has been added to the psd1 file found in `artifacts/Debug/Az./Az..psd1` under "Root Module". - -### Resource Group Completer - -For any parameter that takes a resource group name, the `ResourceGroupCompleter` should be applied as an attribute. This will allow the user to tab through all resource groups in the current subscription. - -```cs -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -... -[Parameter(Mandatory = false, HelpMessage = "The resource group name")] -[ResourceGroupCompleter] -public string ResourceGroupName { get; set; } -``` - -### Resource Name Completer - -For any parameter that takes a resource name, the `ResourceNameCompleter` should be applied as an attribute. This will allow the user to tab through all resource names for the ResourceType in the current subscription. This completer will filter based upon the current parent resources provided (for instance, if ResourceGroupName is provided, only the resources in that particular resource group will be returned). For this completer, please provide the ResourceType as the first argument, followed by the parameter name for all parent resources starting at the top level. - -```cs -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -... -[Parameter(Mandatory = false, HelpMessage = "The parent server name")] -[ResourceNameCompleter("Microsoft.Sql/servers", nameof(ResourceGroupName))] -public string ServerName { get; set; } - -[Parameter(Mandatory = false, HelpMessage = "The database name")] -[ResourceNameCompleter("Microsoft.Sql/servers/databases", nameof(ResourceGroupName), nameof(ServerName))] -public string Name { get; set; } -``` - -### Location Completer - -For any parameter that takes a location, the `LocationCompleter` should be applied as an attribute. In order to use the `LocationCompleter`, you must input as an argument all of the Providers/ResourceTypes used by the cmdlet. The user will then be able to tab through locations that are valid for all of the Providers/ResourceTypes specified. - -```cs -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -... -[Parameter(Mandatory = false, HelpMessage = "The location of the resource")] -[LocationCompleter("Microsoft.Batch/operations")] -public string Location { get; set; } -``` - -### Generic Argument Completer - -For any parameter which you would like the user to tab through a list of suggested values (but you do not want to limit the users to only these values), the generic argument completer should be added. - -```cs -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -... -[Parameter(Mandatory = false, HelpMessage = "The tiers of the plan")] -[PSArgumentCompleter("Basic", "Premium", "Elite")] -public string Tier { get; set; } -``` +To publish your module to the [official PowerShell gallery](http://www.powershellgallery.com/) or the test gallery site, contact the Azure PowerShell team \ No newline at end of file diff --git a/documentation/development-docs/design-guidelines/README.md b/documentation/development-docs/design-guidelines/README.md new file mode 100644 index 000000000000..6611903aecdc --- /dev/null +++ b/documentation/development-docs/design-guidelines/README.md @@ -0,0 +1,33 @@ +## Azure PowerShell Design Guidelines + +In this folder, you will find best practices and design guidelines for different components of Azure PowerShell. + +### Table of contents + +- [Cmdlet Best Practices](./cmdlet-best-practices.md) + - [Cmdlet Naming Conventions](./cmdlet-best-practices.md#cmdlet-naming-conventions) + - [Output Type](./cmdlet-best-practices.md#output-type) + - [`ShouldProcess`](./cmdlet-best-practices.md#shouldprocess) + - [`AsJob`](./cmdlet-best-practices.md#asjob) + - [Required Parameter Sets](./cmdlet-best-practices.md#required-parameter-sets) +- [Module Best Practices](./module-best-practices.md) + - [Module Metadata](./module-best-practices.md#module-metadata) + - [Module Dependencies](./module-best-practices.md#module-dependencies) +- [Parameter Best Practices](./parameter-best-practices.md) + - [Parameter Guidelines](./parameter-best-practices.md#parameter-guidelines) + - [Parameter Naming Conventions](./parameter-best-practices.md#parameter-naming-conventions) + - [Parameter Types](./parameter-best-practices.md#parameter-types) + - [Argument Completers](./parameter-best-practices.md#argument-completers) + - [Parameter Set Guidelines](./parameter-best-practices.md#parameter-set-guidelines) + - [Parameter Set Naming Conventions](./parameter-best-practices.md#parameter-set-naming-conventions) + - [Attribute Guidelines](./parameter-best-practices.md#attribute-guidelines) +- [Piping Best Practices](./piping-best-practices.md) + - [Piping in PowerShell](./piping-best-practices.md#piping-in-powershell) + - [Understanding Piping](./piping-best-practices.md#understanding-piping) + - [Piping in Azure PowerShell](./piping-best-practices.md#piping-in-azure-powershell) + - [Using the `-InputObject` Parameter](./piping-best-practices.md#using-the-inputobject-parameter) + - [Using the `-ResourceId` Parameter](./piping-best-practices.md#using-the-resourceid-parameter) + - [Full examples](./piping-best-practices.md#full-examples) +- [`ShouldProcess` and `ConfirmImpact`](./should-process-confirm-impact.md) + - [`ShouldProcess`](./should-process-confirm-impact.md#shouldprocess) + - [`ConfirmImpact`](./should-process-confirm-impact.md#confirmimpact) diff --git a/documentation/development-docs/design-guidelines/cmdlet-best-practices.md b/documentation/development-docs/design-guidelines/cmdlet-best-practices.md new file mode 100644 index 000000000000..d9bf54d7fa45 --- /dev/null +++ b/documentation/development-docs/design-guidelines/cmdlet-best-practices.md @@ -0,0 +1,160 @@ +# Cmdlet Best Practices + +### Cmdlet Naming Conventions + +The following are naming conventions to keep in mind when coming up with a name for your cmdlet. + +#### Verb-Noun Format + +Cmdlet names should follow the _Verb-Noun_ format, where the verb is from the [list of approved PowerShell verbs](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/approved-verbs-for-windows-powershell-commands), and the noun is a specific noun describing a resource within your service. + +#### Noun Prefix + +For ARM cmdlets, the noun must be prefixed with `Az`. + +#### Pascal Case + +From the [_Strongly Encouraged Development Guidelines_](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#use-pascal-case-for-cmdlet-names-sd02): + +> _Use Pascal case for cmdlet names. In other words, capitalize the first letter of the verb and all terms used in the noun. For example, "Clear-ItemProperty"._ + +#### Specific Noun and Noun Singularity + +From the [_Strongly Encouraged Development Guidelines_](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#use-a-specific-noun-for-a-cmdlet-name-sd01): + +> _Nouns used in cmdlet naming need to be very specific so that the user can discover your cmdlets. Prefix generic nouns such as "server" with a shortened version of the product name. For example, if a noun refers to a server that is running an instance of Microsoft SQL Server, use a noun such as "SQLServer". The combination of specific nouns and the short list of approved verbs enable the user to quickly discover and anticipate functionality while avoiding duplication among cmdlet names._ +> +> _To enhance the user experience, the noun that you choose for a cmdlet name should be singular. For example, use the name `Get-Process` instead of `Get-Processes`. It is best to follow this rule for all cmdlet names, even when a cmdlet is likely to act upon more than one item._ + +#### Set vs. Update + +If your cmdlet is performing a **PATCH** operation (_i.e._, a partial replacement on the server), then the cmdlet should use the verb `Update`. + +If your cmdlet is performing a **PUT** operation (_i.e._, a full replacement on the server), the the cmdlet should use the verb `Set`. + +#### Cmdlet Alias + +If you there is a separate nomenclature for your service and/or resource, or if you would like to shorten the name of the cmdlet so it's easier to remember, you can add an alias attribute to your cmdlet to allow for this functionality. + +### Output Type + +Specified by the `OutputType` attribute, this piece of metadata lets the user know what the type of the object returned by the cmdlet is (found in the **Outputs** section of a cmdlet's help content). The type specified here should always be a single element and not an enumeration of elements (_e.g._, `PSVirtualMachine` instead of `List`). + +#### Valid Output Types + +If the cmdlet returns an object, the type of the object returned must be defined; the output type for a cmdlet should _never_ be `object`, `PSObject`, `PSCustomObject` or the like. Returning these types of objects makes it difficult for the user to anticipate what properties will be found on the object returned from the cmdlet, as well as makes it impossible for the breaking change analyzer to detect if a breaking change was introduced to the cmdlet as the type is not defined. + +In order to preserve proper piping scenarios, the output type for a cmdlet should _never_ be a `string`. If a cmdlet is expected to return a `string`, the suggestion is to introduce a new type that encapsulates the `string` information as a property and return that object. The PowerShell language revolves around objects and passing them around cmdlets; returning `string` objects can introduce inconsistencies in the piping experience for users. + +#### Returning Wrapped SDK Types + +In most cases, cmdlets will be returning an object corresponding to a resource that a user is performing an action on. Rather than returning the .NET SDK type for that resource (exposing .NET SDK types in PowerShell cmdlets is _strongly_ discouraged), we suggest creating a new class that wraps this .NET SDK type, allowing for breaking changes in the underlying type while avoiding breaking changes in the PowerShell type. + +For example, the `Get-AzVM` cmdlet uses the .NET SDK to retrieve objects of the `VirtualMachine` type, but a new class, `PSVirtualMachine`, was created to wrap the type from the .NET SDK, and is returned by the cmdlet. If, in the future, the `VirtualMachine` type in the .NET SDK has a property removed, that property can still be maintained in PowerShell by adding it to the `PSVirtualMachine` type and recreating the value, thus avoiding a breaking change in the corresponding cmdlet(s). + +#### Returning No Output + +In the case where your cmdlet doesn't return any output (_e.g._, deleting, starting, stopping a resource), the cmdlet should implement the `-PassThru` parameter and the `OutputType` should be set to `bool`. The `-PassThru` parameter is a `SwitchParameter` set by the user to signal that they would like to receive output from a cmdlet which does not return anything. If the `-PassThru` parameter is provided, you should return the value `true` so the user is made aware that the operation was successful. If the operation was unsuccessful, then the cmdlet should throw an exception. + +From the [_Strongly Encouraged Development Guidelines_](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#support-the-passthru-parameter): + +> _By default, many cmdlets that modify the system, such as the `Stop-Process` cmdlet, act as "sinks" for objects and do not return a result. These cmdlet should implement the `-PassThru` parameter to force the cmdlet to return an object._ + +The code below shows how this should look in a cmdlet: + +```cs +[Cmdlet(...), OutputType(typeof(bool))] +public class MySampleCmdlet : MyBaseCmdlet +{ + // other parameters omitted + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + // other code omitted + + if (this.PassThru.IsPresent) + { + WriteObject(true); + } + } +} +``` + +### `ShouldProcess` + +If a cmdlet makes any changes to an object on the server (_e.g._, create, delete, update, start, stop a resource), the cmdlet should implement `ShouldProcess`. This property adds the `-WhatIf` and `-Confirm` parameters to the cmdlet: + +- `-WhatIf` is a `SwitchParameter` that, when provided by the user, doesn't execute the part of the cmdlet responsible for making the changes to the object, but rather displays a message alerting the user of the action that is to be performed on the object +- `-Confirm` is a `SwitchParameter` that, when provided by the user, prompts the user for confirmation that they want to continue with the execution of the cmdlet. + +The code below shows how this should look in a cmdlet: + +```cs +[Cmdlet(..., SupportsShouldProcess = true), OutputType(typeof(...))] +public class MySampleCmdlet : MyBaseCmdlet +{ + // parameters omitted + + public override void ExecuteCmdlet() + { + // other code omitted + + if (ShouldProcess(targetResource, actionMessage)) + { + // make the change + } + } +} +``` + +More information about `ShouldProcess` can be found in the [_Should Process and Confirm Impact_](./should-process-confirm-impact.md) document. + +#### When to Add the Force Parameter + +The `-Force` parameter is reserved for special scenarios where additional confirmation from the user is required. From the above document on [_Should Process and Confirm Impact_](./should-process-confirm-impact.md) document: + +> _Some cmdlets require additional confirmation. For example, if a cmdlet would destroy existing resources in some circumstances, the cmdlet might detect that condition and prompt the user to verify before continuing. Overwriting an existing resource during resource creation, overwriting a file when downloading data, deleting a resource that is currently in use, or deleting a container that contains additional resources are all example of this pattern. To implement additional confirmation, and allow scripts to opt out of additional prompts, the above pattern is enhanced with calls to `ShouldContinue()` and the `-Force` parameter._ + +### `AsJob` + +All long running operations must implement the `-AsJob` parameter, which will allow the user to create jobs in the background. For more information about PowerShell jobs and the `-AsJob` parameter, read [this doc](https://docs.microsoft.com/en-us/powershell/azure/using-psjobs). + +To implement the `-AsJob` parameter, simply add the parameter to the end of the parameter list: + +````cs +[Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] +public SwitchParameter AsJob { get; set; } +```` + +Once you add the parameter, please manually test that the job is created and successfully completes when the parameter is specified. Additionally, please ensure that the help files are updated with this parameter. + +To ensure that `-AsJob` is not broken in future changes, please add a test for this parameter. To update tests to include this parameter, use the following pattern: + +````powershell +$job = Get-AzSubscription -AsJob +$job | Wait-Job +$subcriptions = $job | Receive-Job +```` + +To set a custom job name, please use [`SetBackgroupJobDescription`](https://github.com/Azure/azure-powershell-common/blob/master/src/Common/AzurePSCmdlet.cs#L810). The default job description is: "Long Running Operation for '{cmdlet name}' on resource '{resource name}'" + +### Required Parameter Sets + +In most Azure PowerShell cmdlets, there is a bare minimum of three parameter sets that need to be implemented. + +#### Interactive Parameter Set + +This parameter set should be implemented by _every_ cmdlet - in most cases, the user provides the name of the resource that they are acting upon (`-Name`) and the resource group in which they are acting in (`-ResourceGroupName`). + +The interactive parameter set **will always be the default parameter set** for a cmdlet (specified by the `DefaultParameterSetName` property in the `Cmdlet` attribute). This means that when PowerShell is unable to determine which parameter set a user is in, it will default to the interactive parameter set and prompt the user to provide values for the missing mandatory parameters. + +#### ResourceId Parameter Set + +This parameter set should be implemented by _every_ cmdlet - the user is able to provide a `-ResourceId` string or GUID from the Azure Portal, or from one of the generic resources cmdlets (more information about this scenario can be found in the [`piping-best-practices.md`](./piping-best-practices.md#using-the--resourceid-parameter) document), and act upon the given resource associated with the id. The typical `-Name` and `-ResourceGroupName` parameters are replaced by a single `-ResourceId` parameter of type string. + +#### InputObject Parameter Set + +This parameter should be implemented by _most_ cmdlets - the user is able to take the object returned from the `Get`, `New`, or `Set` cmdlets (or other cmdlets that return the common resource) and provide it to the `-InputObject` parameter for a cmdlet that acts upon the same resource (more information about this scenario can be found in the [`piping-best-practices.md`](./piping-best-practices.md#using-the--inputobject-parameter) document). The typical `-Name` and `-ResourceGroupName` parameters are retrieved from the `-InputObject` that the user is passing through. \ No newline at end of file diff --git a/documentation/development-docs/design-guidelines/module-best-practices.md b/documentation/development-docs/design-guidelines/module-best-practices.md new file mode 100644 index 000000000000..da91fd8778f0 --- /dev/null +++ b/documentation/development-docs/design-guidelines/module-best-practices.md @@ -0,0 +1,193 @@ +# Module Best Practices + +## Module Metadata + +### Module Naming + +Unless otherwise stated, the name of the module should be similar to that of provider called in the cmdlets. For example, if the cmdlets in a module called the `Microsoft.Compute` provider, then the module should be named `Az.Compute`. + +### Module Manifest + +The module manifest file, found in the format of `Az.MyService.psd1`, contains all necessary metadata information about a module, and can be initially generated using the `New-ModuleManifest` cmdlet. + +Below is sample `Az.MyService.psd1` file that can be used as a template for new `.psd1` files as well. Press the "Click to expand" text below to reveal the file: + +
Click to expand +

+ +``` +# +# Module manifest for module 'Az.MyService' +# +# Generated by: Microsoft Corporation +# +# Generated on: 3/11/2019 +# + +@{ + +# Script module or binary module file associated with this manifest. +# RootModule = '' + +# Version number of this module. +ModuleVersion = '0.1.0' + +# Supported PSEditions +CompatiblePSEditions = 'Core', 'Desktop' + +# ID used to uniquely identify this module +GUID = '{{ GENERATE A RANDOM GUID TO USE HERE }}' + +# Author of this module +Author = 'Microsoft Corporation' + +# Company or vendor of this module +CompanyName = 'Microsoft Corporation' + +# Copyright statement for this module +Copyright = 'Microsoft Corporation. All rights reserved.' + +# Description of the functionality provided by this module +Description = '' + +# Minimum version of the PowerShell engine required by this module +PowerShellVersion = '5.1' + +# Name of the PowerShell host required by this module +# PowerShellHostName = '' + +# Minimum version of the PowerShell host required by this module +# PowerShellHostVersion = '' + +# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +DotNetFrameworkVersion = '4.7.2' + +# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +# CLRVersion = '' + +# Processor architecture (None, X86, Amd64) required by this module +# ProcessorArchitecture = '' + +# Modules that must be imported into the global environment prior to importing this module +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) + +# Assemblies that must be loaded prior to importing this module +RequiredAssemblies = '.\Microsoft.Azure.Management.MyService.dll' + +# Script files (.ps1) that are run in the caller's environment prior to importing this module. +# ScriptsToProcess = @() + +# Type files (.ps1xml) to be loaded when importing this module +# TypesToProcess = @() + +# Format files (.ps1xml) to be loaded when importing this module +FormatsToProcess = '.\MyService.format.ps1xml' + +# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess +NestedModules = '.\Microsoft.Azure.PowerShell.Cmdlets.MyService.dll' + +# 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 = @() + +# 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 = 'Get-AzMyServiceResource', 'New-AzMyServiceResource', + 'Remove-AzMyServiceResource', 'Update-AzMyServiceResource' + +# Variables to export from this module +# VariablesToExport = @() + +# Aliases 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 aliases to export. +AliasesToExport = @() + +# DSC resources to export from this module +# DscResourcesToExport = @() + +# List of all modules packaged with this module +# ModuleList = @() + +# List of all files packaged with this module +# FileList = @() + +# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. +PrivateData = @{ + + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. + Tags = 'Azure','ResourceManager','ARM' + + # A URL to the license for this module. + LicenseUri = 'https://aka.ms/azps-license' + + # A URL to the main website for this project. + ProjectUri = 'https://github.com/Azure/azure-powershell' + + # A URL to an icon representing this module. + # IconUri = '' + + # ReleaseNotes of this module + ReleaseNotes = '' + + # Prerelease string of this module + # Prerelease = '' + + # Flag to indicate whether the module requires explicit user acceptance for install/update + # RequireLicenseAcceptance = $false + + # External dependent modules of this module + # ExternalModuleDependencies = @() + + } # End of PSData hashtable + + } # End of PrivateData hashtable + +# HelpInfo URI of this module +# HelpInfoURI = '' + +# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. +# DefaultCommandPrefix = '' + +} +``` + +

+
+ +Below is a table with some information about important fields of the module manifest file: + +| Field | Detail | +| -------------------- | ------ | +| `ModuleVersion` | This should not be touched unless otherwise specified to do so. Preview modules are noted by this version being `0.x.x`, or with the `preview` prefix specified in the `Prerelease` field at the bottom of the file. All other versions should signal that the module is stable. | +| `Description` | This should be updated to include information about the service, as well as a link to any corresponding service docs found on https://docs.microsoft.com. | +| `RequiredModules` | This should only contain a module dependency on the `Az.Accounts` module, unless otherwise noted. The version should be the latest version of `Az.Accounts` (found in the `Az.Accounts.psd1` file). | +| `RequiredAssemblies` | This should only contain assemblies that the module needs to run all of the cmdlets successfully. At a minimum, the service's SDK should be included in this list. Any other additional modules should be verified by the Azure PowerShell team. **No external service team SDK should be included in this field**. | +| `FormatsToProcess` | This should contain any formatting files that are used by the module to alter the display of cmdlets' output. | +| `NestedModules` | This should contain any assembly built with your project that contains cmdlet code. There is usually only one assembly found in this field unless the module contains multiple services. | +| `CmdletsToExport` | All cmdlets found in the module should be listed in this field. | +| `AliasesToExport` | All aliases found in the module should be listed in this field. | +| `Tags` | This should only include service-specific words or phrases to help users find the module in the PowerShell Gallery. **There should be no spaces in any of the tags added to this field; any tags with spaces will cause publishing to PowerShell Gallery to fail**. | +| `ReleaseNotes` | This should not be touched unless otherwise specified to do so. This field will be updated as a part of the release process for the module. | +| `Prerelease` | This should be set to `preview` if generating a preview version of a stable module. This will append a `-preview` string to the end of the module version. | + +## Module Dependencies + +### Common Assemblies + +Every module's `.csproj` file must import the [`Common.Netcore.Dependencies.targets`](../../../tools/Common.Netcore.Dependencies.targets) file to ensure that the correct version of each common assembly is referenced by the module. These assemblies are packaged with the `Az.Accounts` module and are loaded into a PowerShell session when `Az.Accounts` is imported (which is also done automatically when importing the service module). + +Some of the assemblies included in this `.targets` file: + +- `Microsoft.Azure.PowerShell.Clients.*` +- `Microsoft.Rest.ClientRuntime` +- `Microsoft.Rest.ClientRuntime.Azure` +- `Newtonsoft.Json` + +### SDK Assemblies + +A module should have a dependency on only its SDK and no other service's SDK; if a module takes a dependency on another service's SDK, this can introduce conflicting assembly versions between the version of the SDK referenced by the service team's module and the external service team's module, which will result in assembly loading issues for the user in PowerShell. + +If an external service's SDK is required by a module, the Azure PowerShell team must be consulted to resolve this issue. In most cases, the issue is resolved by grabbing a snapshot of the service's SDK and putting it in the [`azure-powershell-common`](https://github.com/Azure/azure-powershell-common) repository, which can then be referenced by any module. This allows the service team to continue shipping with their own SDK without worrying about external service teams from taking a dependency on the same SDK and introducing these potential assembly loading issues. + +### Other Assemblies + +All other assemblies referenced by a module should be verified by the Azure PowerShell team to ensure that they aren't introducing additional dependencies that will clash with packages already being shipped. \ No newline at end of file diff --git a/documentation/development-docs/design-guidelines/parameter-best-practices.md b/documentation/development-docs/design-guidelines/parameter-best-practices.md new file mode 100644 index 000000000000..16a3f558fdc0 --- /dev/null +++ b/documentation/development-docs/design-guidelines/parameter-best-practices.md @@ -0,0 +1,157 @@ +# Parameter Best Practices + +## Parameter Guidelines + +### Parameter Naming Conventions + +The following are naming conventions to keep in mind when coming up with a name for your parameters. + +In addition, a recommended list of parameter names can be found [here](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/standard-cmdlet-parameter-names-and-types). + +#### Standard Parameter Name + +From the [_Strongly Encouraged Development Guidelines_](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#use-standard-parameter-names): + +> _Your cmdlet should use standard parameter names so that the user can quickly determine what a particular parameter means. If a more specific name is required, use a standard parameter name, and then specify a more specific name as an alias. For example, the `Get-Service` cmdlet has a parameter that has a generic name (**Name**) and a more specific alias (**ServiceName**). Both terms can be used to specify the parameter._ + +#### Pascal Case + +Similar to cmdlets, parameters should follow pascal casing.From the [_Strongly Encouraged Development Guidelines_](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#use-pascal-case-for-parameter-names): + +> _Use Pascal case for parameter names. In other words, capitalize the first letter of each word in the parameter name, including the first letter of the name._ + +#### Singularity + +From the [_Strongly Encouraged Development Guidelines_](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#use-singular-parameter-names): + +> _Avoid using plural names for parameters whose value is a single element. This includes parameters that take arrays or lists because the user might supply an array or list with only one element._ +> +> _Plural parameter names should be used only in those cases where the value of the parameter is always a multiple-element value. In these cases, the cmdlet should verify that multiple elements are supplied, and the cmdlet should display a warning to the user if multiple elements are not supplied._ + +#### Parameter Alias + +If you there is a separate nomenclature for the parameter name, or if you would like to shorten the name of the parameter so it's easier to remember, you can add an alias attribute to your parameter to allow for this functionality. + +### Parameter Types + +#### Valid Parameter Types + +The type of parameters should always be defined; a parameter should never be of type `object`, `PSObject`, `PSCustomObject` or the like. Defining a parameter with any of these types can make it difficult for the user to know what value they should be providing to the parameter, as well as makes it difficult for the breaking change analyzer to detect any breaking changes made to the parameter since it has no knowledge about changes in the types' properties. + +#### Consistent Parameter Types + +From the [_Strongly Encouraged Development Guidelines_](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#use-consistent-parameter-types): + +> _When the same parameter is used by multiple cmdlets, always use the same parameter type. For example, if the **Process** parameter is an **Int16** type for one cmdlet, do not make the **Process** parameter for another cmdlet a **UInt16** type._ + +#### Array vs. Enumerable Types + +For parameters that require a collection of elements to be provided, use an array instead of any other enumerable type to represent this collection. + +From the [_Strongly Encouraged Development Guidelines_](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#support-arrays-for-parameters): + +> _Frequently, users must perform the same operation against multiple arguments. For these users, a cmdlet should accept an array as parameter input so that a user can pass the arguments into the parameter as a Windows PowerShell variable. For example, the `Get-Process` cmdlet uses an array for the strings that identify the names of the processes to retrieve._ + +#### Secret Parameters + +For parameters that represent a value that should be kept secret in some fashion (such as a password, secret, key, etc.), the type of the parameter should be `SecureString` to avoid any sensitive information about the parameter from leaking during cmdlet execution. + +#### Bool vs. SwitchParameter + +Parameters of type `bool` are _strongly_ discouraged in PowerShell. The `SwitchParameter` type of a parameter acts a flag that signals whether or not some action should be taken based on if the parameter was provided or not. + +The only case where a `bool` parameter should be used is for a `PATCH` operation wrapped by an `Update-*` cmdlet; in this case, the user will have the option to set the value to `true` or `false`, or not provide a value at all, which keeps the value the same on the server. For a `PUT` operation wrapped by a `Set-*` cmdlet, the normal `SwitchParameter` type should be used. + +### Argument Completers + +PowerShell uses Argument Completers to provide tab completion for users. Azure PowerShell has multiple specific argument completers that should be applied to relevant parameters, as well as a generic argument completer that can be used to tab complete with a given list of values. + +#### Resource Group Completer + +For any parameter that takes a resource group name, the `ResourceGroupCompleter` should be applied as an attribute. This will allow the user to tab through all resource groups in the current subscription. + +```cs +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +... +[Parameter(Mandatory = false, HelpMessage = "The resource group name")] +[ResourceGroupCompleter] +public string ResourceGroupName { get; set; } +``` + +#### Resource Name Completer + +For any parameter that takes a resource name, the `ResourceNameCompleter` should be applied as an attribute. This will allow the user to tab through all resource names for the ResourceType in the current subscription. This completer will filter based upon the current parent resources provided (for instance, if ResourceGroupName is provided, only the resources in that particular resource group will be returned). For this completer, please provide the ResourceType as the first argument, followed by the parameter name for all parent resources starting at the top level. + +```cs +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +... +[Parameter(Mandatory = false, HelpMessage = "The parent server name")] +[ResourceNameCompleter("Microsoft.Sql/servers", nameof(ResourceGroupName))] +public string ServerName { get; set; } + +[Parameter(Mandatory = false, HelpMessage = "The database name")] +[ResourceNameCompleter("Microsoft.Sql/servers/databases", nameof(ResourceGroupName), nameof(ServerName))] +public string Name { get; set; } +``` + +#### Location Completer + +For any parameter that takes a location, the `LocationCompleter` should be applied as an attribute. In order to use the `LocationCompleter`, you must input as an argument all of the Providers/ResourceTypes used by the cmdlet. The user will then be able to tab through locations that are valid for all of the Providers/ResourceTypes specified. + +```cs +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +... +[Parameter(Mandatory = false, HelpMessage = "The location of the resource")] +[LocationCompleter("Microsoft.Batch/operations")] +public string Location { get; set; } +``` + +#### Generic Argument Completer + +For any parameter which you would like the user to tab through a list of suggested values (but you do not want to limit the users to only these values), the generic argument completer should be added. + +```cs +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +... +[Parameter(Mandatory = false, HelpMessage = "The tiers of the plan")] +[PSArgumentCompleter("Basic", "Premium", "Elite")] +public string Tier { get; set; } +``` + +## Parameter Set Guidelines + +### Parameter Set Naming Conventions + +The following are naming conventions to keep in mind when coming up with a name for your parameter set. + +#### Pascal Case + +Similar to parameters (mentioned above), parameter set names should follow pascal casing. From the [_Strongly Encouraged Development Guidelines_](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/strongly-encouraged-development-guidelines#use-pascal-case-for-cmdlet-names-sd02): + +> _Use Pascal case for cmdlet names. In other words, capitalize the first letter of the verb and all terms used in the noun. For example, "Clear-ItemProperty"._ + +### Attribute Guidelines + +The following are guidelines that should be followed when working with the attributes of a parameter set. + +#### Mutually Exclusive Parameter Sets + +For PowerShell to determine which parameter set a user is intending to use with a set of provided parameters, the parameter sets need to be designed in such a way that they are mutually exclusive. From the remarks section of [_Parameter Attribute Declaration_](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/parameter-attribute-declaration#remarks): + +> _Each parameter set must have at least one unique parameter. Good cmdlet design indicates this unique parameter should also be mandatory if possible. If your cmdlet is designed to be run without parameters, the unique parameter cannot be mandatory._ + +#### Positional Parameters Limit + +It is possibile to call a PowerShell cmdlet without providing the parameter names, but just the values you would like to pass through. This is done by specifying the position at which the value of each parameter should be provided by using the `Position` property for a parameter. However, when there are too many positional parameters in a single parameter set, it can be difficult for the user to remember the exact ordering in which the parameter values should be provided. From the remarks section of [_Parameter Attribute Declaration_](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/parameter-attribute-declaration#remarks): + +> _When you specify positional parameters, limit the number of positional parameters in a parameter set to less than five. And, positional parameters do not have to be contiguous. Positions 5, 100, and 250 work the same as positions 0, 1, and 2._ + +In addition, there should be no two parameters with the same position in the same parameter set. From the remarks section of [_Parameter Attribute Declaration_](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/parameter-attribute-declaration#remarks): + +> _No parameter set should contain more than one positional parameter with the same position._ + +#### ValueFromPipeline Limit + +Allowing the user to pipe an object from one cmdlet to another is a major scenario in PowerShell, but allowing multiple parameters in the same parameter set to accept their value from the pipeline can cause issues. From the remarks section of [_Parameter Attribute Declaration_](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/parameter-attribute-declaration#remarks): + +> _Only one parameter in a parameter set should declare ValueFromPipeline = true. Multiple parameters can define ValueFromPipelineByPropertyName = true._ \ No newline at end of file diff --git a/documentation/development-docs/design-guidelines/piping-best-practices.md b/documentation/development-docs/design-guidelines/piping-best-practices.md new file mode 100644 index 000000000000..4efffc56d498 --- /dev/null +++ b/documentation/development-docs/design-guidelines/piping-best-practices.md @@ -0,0 +1,138 @@ +# Piping Best Practices + +_Note_: for the below examples, the string "TopLevelResource" would be replaced with the name of your top-level resource (_e.g._, "VirtualMachine", "VirtualNetwork", "SqlServer"), and the string "ChildResource" would be replaced with the name of your child resource (_e.g._, "VirtualMachineExtension", "VirtualNetworkPeering", "SqlDatabase") + +## Piping in PowerShell + +### Understanding Piping + +In PowerShell, cmdlets pipe objects between one another; cmdlets should return objects, not text (strings). + +For example, in Azure PowerShell, you can remove all of your current environments with the following pipeline scenairo: + +```powershell +Get-AzEnvironment | Remove-AzEnviornment +``` + +The cmdlet `Get-AzEnvironment` will return a set of `Environment` objects, and those objects will be individually piped to the `Remove-AzEnvironment` cmdlet, where they will be removed. + +When an object is being piped to a cmdlet, PowerShell will first check to see if it can bind the input object to a parameter with the same type and has the property `ValueFromPipeline = true`. If no parameters are bound at this point, PowerShell will do the same check for parameters with the `ValueFromPipeline = true` parameter, but it will see if it can convert the input object to the type of the parameter. If no parameters are bound at this point, PowerShell will then see if it can bind the properties of the input object with parameters that share the same name and have the property `ValueFromPipelineByPropertyName = true` that are all in the same parameter set. + +For more information on piping, see the article [_Understanding pipelines_](https://docs.microsoft.com/en-us/powershell/scripting/learn/understanding-the-powershell-pipeline). + +## Piping in Azure PowerShell + +There are two main scenarios that we wish to enable in cmdlets for Azure PowerShell: +- piping by value using an `-InputObject` parameter +- piping by property name using a `-ResourceId` parameter + +### Using the `-InputObject` Parameter + +#### Short explanation +For all resources, `-InputObject` should be implemented for at least the `Remove-*`, `Set-*` and `Update-*` cmdlets (and any other cmdlet where an existing resource is being operated on, such as `Start-*`, `Stop-*`, etc.). The implementation of this will be a new parameter set, like the following: + +``` +Remove-AzTopLevelResource -InputObject [...] [-PassThru] [-WhatIf] [-Confirm] +``` + +For all child resources, the same functionality should be added for the cmdlets above, but will also include an additional parameter set for the parent resource's object. The implementation of this will be two new parameter sets, like the following: + +``` +Remove-AzChildResource -InputObject [...] [-PassThru] [-WhatIf] [-Confirm] + +Remove-AzChildResource -TopLevelResourceObject -Name [...] [-PassThru] [-WhatIf] [-Confirm] +``` + +#### Long explanation +This scenario should be used when piping objects around within the same module. For example, if you have a set of `Get-AzTopLevelResource`, `Remove-AzTopLevelResource`, and `Set-AzTopLevelResource` cmdlets, the `Remove-AzTopLevelResource` and `Set-AzTopLevelResource` cmdlets should have a parameter set that takes the `-InputObject` parameter of type `PSTopLevelResource` so that a user can do the following: + +```powershell +# --- Piping scenario --- +# Setting and removing an individual object +Get-AzTopLevelResource -ResourceGroupName "MyResourceGroup" -Name "MyTopLevelResource" | Set-AzTopLevelResource @additionalParams +Get-AzTopLevelResource -ResourceGroupName "MyResourceGroup" -Name "MyTopLevelResource" | Remove-AzTopLevelResource + +# Setting and removing a collection of objects +Get-AzTopLevelResource | Set-AzTopLevelResource @additionalParams +Get-AzTopLevelResource | Remove-AzTopLevelResource + + +# --- Non-piping scenario --- +# Setting and removing an individual object +$resource = Get-AzTopLevelResource -ResourceGroupName "MyResourceGroup" -Name "MyTopLevelResource" +Set-AzTopLevelResource -InputObject $resource @additionalParams +Remove-AzTopLevelResource -InputObject $resource + +# Setting and removing a collection of objects +Get-AzTopLevelResource | ForEach-Object { Set-AzTopLevelResource -InputObject $_ @additionalParams } +Get-AzTopLevelResource | ForEach-Object { Remove-AzTopLevelResource -InputObject $_ } +``` + +Another time that this scenario applies is when you have cmdlets for child resources that need information about the parent (top-level) resource. For example you can pipe in the whole parent object to the `New-AzChildResource` and `Get-AzChildResource` cmdlets to get the child resources, and then pipe the child resource object to the `Remove-AzChildResource` and `Set-AzChildResource` cmdlets. + +```powershell +# --- Piping scenario --- +# Getting all of child resources from all of the parent resources and removing them +Get-AzTopLevelResource | Get-AzChildResource | Remove-AzChildResource + +# Getting all of the child resources from all of the parent resources in a resource group and removing them +Get-AzTopLevelResource -ResourceGroupName "MyResourceGroup" | Get-AzChildResource | Remove-AzChildResource + +# Getting all of the child resources from a specific parent resource and removing them +Get-AzTopLevelResource -ResourceGroupName "MyResourceGroup" -Name "MyTopLevelResource" | Get-AzChildResource | Remove-AzChildResource + + +# --- Non-piping scenario --- +# Getting all of the child resources from a specific parent resource and removing them +$resource = Get-AzTopLevelResource -ResourceGroupName "MyResourceGroup" -Name "MyTopLevelResource" +$childResource = Get-AzChildResource -InputObject $resource +Remove-AzChildResource -InputObject $childResource +``` + +### Using the `-ResourceId` Parameter + +#### Short explanation +For all resources, `-ResourceId` should be implemented for the `Get-*`, `Remove-*`, `Set-*` and `Update-*` cmdlets (and any other cmdlet where an existing resource is being operated on, such as `Start-*`, `Stop-*`, etc.). The implementation of this will be a new parameter set, like the following: + +``` +Remove-AzTopLevelResource -ResourceId [...] [-PassThru] [-WhatIf] [-Confirm] +``` + +#### Long explanation + +In this scenario, we are using the generic cmdlet, `Get-AzResource`, found in the `Az.Resources` module. This cmdlet returns a `PSResource` that has a `ResourceId` property, which is the unique identifier for the given resource. Since this identifier can parsed to get the name and resource group name for a top-level resource (as well as the child resource name), we can create a parameter set that has a `-ResourceId` parameter that accepts its value from the pipeline by property name, allowing us to accept piping from these generic cmdlets. + +```powershell +# --- Piping scenario --- +# Remove all TopLevelResource objects in the current subscription +Get-AzResource -ResourceType "Microsoft.SomeProvider/topLevelResource" | Remove-AzTopLevelResource + +# Remove all TopLevelResource objects in a given resource group +Get-AzResource -ResourceType "Microsoft.SomeProvider/topLevelResource" -ResourceGroupEquals "MyResourceGroup" | Remove-AzTopLevelResource + +# Remove a specific TopLevelResource object +Get-AzResource -ResourceType "Microsoft.SomeProvider/topLevelResource" -ResourceGroupEquals "MyResourceGroup" -Name "MyTopLevelResource" | Remove-AzTopLevelResource + + +# -- Non-piping scenario --- +# Removing all TopLevelResource objects in the current subscription +Get-AzResource -ResourceType "Microsoft.SomeProvider/topLevelResource" | ForEach-Object { Remove-AzTopLevelResource -ResourceId $_.ResourceId } + +# Remove all TopLevelResource objects in a given resource group +Get-AzResource -ResourceType "Microsoft.SomeProvider/topLevelResource" -ResourceGroupEquals "MyResourceGroup" | ForEach-Object { Remove-AzTopLevelResource -ResourceId $_.ResourceId } + +# Remove a specific TopLevelResource object +Get-AzResource -ResourceType "Microsoft.SomeProvider/topLevelResource" -ResourceGroupEquals "MyResourceGroup" -ResourceNameEquals "MyTopLevelResource" | ForEach-Object { Remove-AzTopLevelResource -ResourceId $_.ResourceId } +``` + +To implement this scenario, please see the [`ResourceIdentifier`](https://github.com/Azure/azure-powershell-common/blob/52fc157798d0fdd83f20755106e131aec1689ceb/src/ResourceManager/Version2016_09_01/Utilities/Models/ResourceIdentifier.cs) class in the `ResourceManager` project. This class will allow you to create a `ResourceIdentifier` object that accepts a `ResourceId` string in its constructor and has properties `ResourceName`, `ResourceGroupName`, and others. + +### Full examples + +The following cmdlet examples containing these piping scenarios can be found in [this folder](../examples): + +- [`Get-*` cmdlet](../examples/get-cmdlet-example.md) +- [`New-*` cmdlet](../examples/new-cmdlet-example.md) +- [`Remove-*` cmdlet](../examples/remove-cmdlet-example.md) +- [`Set-*` cmdlet](../examples/set-cmdlet-example.md) +- [`Update-*` cmdlet](../examples/update-cmdlet-example.md) \ No newline at end of file diff --git a/documentation/development-docs/should-process-confirm-impact.md b/documentation/development-docs/design-guidelines/should-process-confirm-impact.md similarity index 67% rename from documentation/development-docs/should-process-confirm-impact.md rename to documentation/development-docs/design-guidelines/should-process-confirm-impact.md index 0dc123fb61d4..1ad4559c3974 100644 --- a/documentation/development-docs/should-process-confirm-impact.md +++ b/documentation/development-docs/design-guidelines/should-process-confirm-impact.md @@ -1,10 +1,12 @@ ## ShouldProcess -From [Cmdlet Attribute Declaration](https://msdn.microsoft.com/en-us/library/system.management.automation.cmdletcommonmetadataattribute.supportsshouldprocess(v=vs.85).aspx): +From [_Cmdlet Attribute Declaration_](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/cmdlet-attribute-declaration): -> _All commands that change the system should include the **SupportsShouldProcess** keyword when declaring the attribute. If the ShouldProcess method returns true, the command should perform its action. If the ShouldProcess method returns false, the action should not be taken._ -> -> _If a command supports the ShouldProcess method, the **Confirm** and **WhatIf** parameters are added to the command by the Windows PowerShell runtime._ +> _All cmdlets that change resources outside of PowerShell should include the `SupportsShouldProcess` keyword when the `Cmdlet` attribute is declared, which allows the cmdlet to call the `ShouldProcess` method before the cmdlet performs its action. If the `ShouldProcess` call returns false, the action should not be taken._ +> +> _The `-Confirm` and `-WhatIf` cmdlet parameters are available only for cmdlets that support `ShouldProcess` calls._ + +Below is an example of the declaration of this property in the `Cmdlet` attribute and the subsequent call to `ShouldProcess` in the body of the cmdlet: ```cs [Cmdlet(VerbsCommon.Remove, "Foo", SupportsShouldProcess = true)] @@ -22,6 +24,8 @@ public class RemoveFoo } ``` +Please see the example cmdlets found in our [`examples`](../examples) folder for additional implementations of `ShouldProcess`. + By default, `ShouldProcess` interacts with the cmdlet `ConfirmImpact` and the user's `$ConfirmPreference` setting to decide whether to prompt the user before continuing cmdlet processing. The `$ConfirmPreference` determines the level at which confirmation automatically occurs, and no prompt is shown. If the `ConfirmImpact` specified in a cmdlet is at or below the level of `$ConfirmPreference`, then processing occurs automatically without displaying a prompt. Since both `ConfirmImpact` and `$ConfirmPreference` are set by default to `Medium`, this means that, by default, no confirmation prompt is shown and the cmdlet executes normally. PowerShell has several tools that allow users to explore and control what happens during execution of cmdlets, and this change in implementation allows them to use these tools. @@ -89,31 +93,17 @@ void ConfirmAction(bool force, string continueMessage, string processMessage, st ## ConfirmImpact -From [Cmdlet Attribute Declaration](https://msdn.microsoft.com/en-us/library/system.management.automation.confirmimpact(v=vs.85).aspx): +From [_Cmdlet Attribute Declaration_](https://docs.microsoft.com/en-us/powershell/developer/cmdlet/cmdlet-attribute-declaration): -> _Defines the impact level of the action performed by the cmdlet. For example, cmdlets may have a high, medium, or low risk of losing data._ +> _Specifies when the action of the cmdlet should be confirmed by a call to the `ShouldProcess` method. `ShouldProcess` will only be called when the `ConfirmImpact` value of the cmdlet (by default, Medium) is equal to or greater than the value of the `$ConfirmPreference` variable. This parameter should be specified only when the `SupportsShouldProcess` parameter is specified._ -Below are the possible `ConfirmImpact` values +Below are the possible `ConfirmImpact` values: -| Member name | Description | -|----------------------|----------------------------------------------------------------------------------------------------------------| -| High | This action is potentially highly "destructive" and should be confirmed by default unless otherwise specified. | -| Low | This action only needs to be confirmed when the user has requested the low-impact changes must be confirmed. | -| Medium | This action should be confirmed in most scenarios where confirmation is requested. | -| None | There is never any need to confirm this action. | - -```cs -[Cmdlet(VerbsCommon.Remove, "Foo", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)] -public class RemoveFoo -{ - ... +| Member name | Description | +|-------------|----------------------------------------------------------------------------------------------------------------| +| High | This action is potentially highly "destructive" and should be confirmed by default unless otherwise specified. | +| Low | This action only needs to be confirmed when the user has requested the low-impact changes must be confirmed. | +| Medium | This action should be confirmed in most scenarios where confirmation is requested. | +| None | There is never any need to confirm this action. | - public override void ExecuteCmdlet() - { - if (ShouldProcess(target, actionMessage)) - { - // make changes - } - } -} -``` \ No newline at end of file +_Note:_ the `ConfirmImpact` property in the `Cmdlet` attribute should never be set; ignoring this property will set the value to `Medium`, which is expected and advised. \ No newline at end of file diff --git a/documentation/development-docs/examples/README.md b/documentation/development-docs/examples/README.md new file mode 100644 index 000000000000..f38b8f8889b2 --- /dev/null +++ b/documentation/development-docs/examples/README.md @@ -0,0 +1,21 @@ +## Examples of standard Azure PowerShell cmdlets + +In this folder, you will find patterns and examples for standard Azure PowerShell cmdlets that should be implemented for a service. Both top-level and child resource scenarios are covered in each of the documents. + +### Table of contents + +- [`Get-*` cmdlet](.\get-cmdlet-example.md) + - [Top-level resource](.\get-cmdlet-example.md#top-level-resource) + - [Child resource](.\get-cmdlet-example.md#child-resource) +- [`New-*` cmdlet](.\new-cmdlet-example.md) + - [Top-level resource](.\new-cmdlet-example.md#top-level-resource) + - [Child resource](.\new-cmdlet-example.md#child-resource) +- [`Remove-*` cmdlet](.\remove-cmdlet-example.md) + - [Top-level resource](.\remove-cmdlet-example.md#top-level-resource) + - [Child resource](.\remove-cmdlet-example.md#child-resource) +- [`Set-*` cmdlet](.\set-cmdlet-example.md) + - [Top-level resource](.\set-cmdlet-example.md#top-level-resource) + - [Child resource](.\set-cmdlet-example.md#child-resource) +- [`Update-*` cmdlet](.\update-cmdlet-example.md) + - [Top-level resource](.\update-cmdlet-example.md#top-level-resource) + - [Child resource](.\update-cmdlet-example.md#child-resource) \ No newline at end of file diff --git a/documentation/development-docs/examples/get-cmdlet-example.md b/documentation/development-docs/examples/get-cmdlet-example.md new file mode 100644 index 000000000000..2a68b2aeab6c --- /dev/null +++ b/documentation/development-docs/examples/get-cmdlet-example.md @@ -0,0 +1,159 @@ +## `Get-*` cmdlet example + +_Note_: for the below examples, the string "TopLevelResource" would be replaced with the name of your top-level resource (_e.g._, "VirtualMachine", "VirtualNetwork", "SqlServer"), and the string "ChildResource" would be replaced with the name of your child resource (_e.g._, "VirtualMachineExtension", "VirtualNetworkPeering", "SqlDatabase") + +### Top-level resource + +All top-level resources should have a `Get-*` cmdlet that allows users to list the resources in their subscription or a resource group, as well as get a specific resource. In addition, users should be able to provide the resource id of the resource they want to get, and the cmdlet will parse the string to get the necessary identity information. + +#### Parameter sets + +To enable the scenarios mentioned previously, the cmdlet will need three parameter sets: + +``` +Get-AzTopLevelResource [-ResourceGroupName ] + +Get-AzTopLevelResource -ResourceGroupName -Name + +Get-AzTopLevelResource -ResourceId +``` + +The first parameter set has an optional `-ResourceGroupName` parameter, which allows the user to list all resources in a subscription or in a resource group. The second parameter set has required `-ResourceGroupName` and `-Name` parameters, which allows the user to get a specific resource. The third parameter set has a required `-ResourceId` parameter, which allows the user to get a specific resource by resource id. + +#### C# example + +```cs +namespace Microsoft.Azure.Commands.Service +{ + [Cmdlet(VerbsCommon.Get, "AzTopLevelResource", DefaultParameterSetName = ListParameterSet), OutputType(typeof(PSTopLevelResource))] + public class GetTopLevelResourceCommand : ServiceBaseCmdlet + { + private const string ListParameterSet = "ListParameterSet"; + private const string GetByNameParameterSet = "GetByNameParameterSet";" + private const string GetByResourceIdParameterSet = "GetByResourceIdParameterSet"; + + [Parameter(Mandatory = false, ParameterSetName = ListParameterSet)] + [Parameter(Mandatory = true, ParameterSetName = GetByNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = GetByNameParameterSet)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = GetByResourceIdParameterSet )] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.ResourceId)) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.Name = resourceIdentifier.ResourceName; + } + + if (!string.IsNullOrEmpty(this.Name)) + { + var result = new PSTopLevelResource(this.MySDKClient.TopLevelResource.Get(this.ResourceGroupName, this.Name)); + WriteObject(result); + } + else if (!string.IsNullOrEmpty(this.ResourceGroupName)) + { + var result = this.MySDKClient.TopLevelResource.ListByResourceGroup(this.ResourceGroupName).Select(r => new PSTopLevelResource(r)); + WriteObject(result, true); + } + else + { + var result = this.MySDKClient.TopLevelResource.List().Select(r => new PSTopLevelResource(r)); + WriteObject(result, true); + } + } + } +} +``` + +### Child resource + +All child resources should have a `Get-*` cmdlet that allows users to list the child resources under a parent resource, as well as get a specific resource. In addition, users should be able to provide the resource id of the resource they want to get, and the cmdlet will parse the string to get the necessary identity information. + +#### Parameter sets + +To enable the scenarios mentioned previously, the cmdlet will need three parameter sets: + +``` +Get-AzChildResource -ResourceGroupName -TopLevelResourceName [-Name ] + +Get-AzChildResource -TopLevelResourceObject [-Name ] + +Get-AzChildResource -ResourceId +``` + +The first parameter set has mandatory `-ResourceGroupName` and `-TopLevelResourceName` parameters to get the identity information about the parent resource, and then an optional `-Name` parameter to allow the user to either list all child resources contained in the given parent or get the specific child resource. The second parameter set has required `-TopLevelResourceObject` parameter, which can be piped from the parent `Get-*` or `Set/Update-*` cmdlet, and an optional `-Name` parameter. The third parameter set has a required `-ResourceId` parameter, which allows the user to get a specific child resource by resource id. + +#### C# example + +```cs +namespace Microsoft.Azure.Commands.Service +{ + [Cmdlet(VerbsCommon.Get, "AzChildResource", DefaultParameterSetName = GetByNameParameterSet), OutputType(typeof(PSChildResource))] + public class GetChildResourceCommand : ServiceBaseCmdlet + { + private const string GetByNameParameterSet = "GetByNameParameterSet"; + private const string GetByParentObjectParameterSet = "GetByParentObjectParameterSet"; + private const string GetByResourceIdParameterSet = "GetByResourceIdParameterSet"; + + [Parameter(Mandatory = true, ParameterSetName = GetByNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = GetByNameParameterSet)] + [ValidateNotNullOrEmpty] + public string TopLevelResourceName { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = GetByNameParameterSet)] + [Parameter(Mandatory = false, ParameterSetName = GetByParentObjectParameterSet)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = GetByParentObjectParameterSet)] + [ValidateNotNull] + public PSTopLevelResource TopLevelResourceObject { get; set; } + + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = GetByResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.ResourceId)) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.TopLevelResourceName = resourceIdentifier.ParentResource + this.Name = resourceIdentifier.ResourceName; + } + + if (this.IsParameterBound(c => c.TopLevelResourceObject)) + { + this.ResourceGroupName = this.TopLevelResourceObject.ResourceGroupName; + this.TopLevelResourceName = this.TopLevelResourceObject.Name; + } + + if (!string.IsNullOrEmpty(this.Name)) + { + var result = new PSChildResource(this.MySDKClient.ChildResource.Get(this.ResourceGroupName, this.TopLevelResourceName, this.Name)); + WriteObject(result); + } + else + { + var result = this.MySDKClient.ChildResource.List(this.ResourceGroupName, this.TopLevelResourceName).Select(r => new PSChildResource(r)); + WriteObject(result, true); + } + } + } +} +``` \ No newline at end of file diff --git a/documentation/development-docs/examples/new-cmdlet-example.md b/documentation/development-docs/examples/new-cmdlet-example.md new file mode 100644 index 000000000000..dad8d79a8302 --- /dev/null +++ b/documentation/development-docs/examples/new-cmdlet-example.md @@ -0,0 +1,180 @@ +## `New-*` cmdlet example + +_Note_: for the below examples, the string "TopLevelResource" would be replaced with the name of your top-level resource (_e.g._, "VirtualMachine", "VirtualNetwork", "SqlServer"), and the string "ChildResource" would be replaced with the name of your child resource (_e.g._, "VirtualMachineExtension", "VirtualNetworkPeering", "SqlDatabase") + +### Top-level resource + +All top-level resources should have a `New-*` cmdlet that allows users to create a resource with given properties. Properties that are required by the API should be mandatory parameters, and in the case where different combinations of properties are needed depending on a provided value (_e.g._, Windows and Linux VMs have different properties), multiple parameter sets should be used. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the resource actually being created. + +_Note_: for long-running operations (~15s or longer), it is advised to add the [`-AsJob`](../design-guidelines/cmdlet-best-practices.md#asjob) to your cmdlet. + + +#### Parameter sets + +To enable the above scenario, only one parameter set is needed: + +``` +New-AzTopLevelResource -ResourceGroupName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] +``` + +This parameter set has required `-ResourceGroupName` and `-Name` parameters to satisfy the identity properties of the resource, as well as a few optional `-PropertyX` parameters that allows the user to set values for properties. The parameter set also has optional `-WhatIf` and `-Confirm` parameters that are automatically included from the implementation of `SupportsShouldProcess`. + +#### C# example + +```cs +namespace Microsoft.Azure.Commands.Service +{ + [Cmdlet(VerbsCommon.New, "AzTopLevelResource", DefaultParameterSetName = CreateParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSTopLevelResource))] + public class NewTopLevelResourceCommand : ServiceBaseCmdlet + { + private const string CreateParameterSet = "CreateParameterSet"; + + [Parameter(Mandatory = true, ParameterSetName = CreateParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = CreateParameterSet)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = CreateParameterSet)] + public Type1 Property1 { get; set; } + + [Parameter(Mandatory = false, ParameterSetName = CreateParameterSet)] + public Type2 Property2 { get; set; } + + // Excluding other property parameters + + public override void ExecuteCmdlet() + { + TopLevelResource existingResource = null; + try + { + existingResource = this.MySDKClient.TopLevelResource.Get(this.ResourceGroupName, this.Name); + } + catch + { + existingResource = null; + } + + if (existingResource != null) + { + throw new Exception(string.Format("A TopLevelResource with name '{0}' in resource group '{1}' already exists. Please use Set/Update-AzTopLevelResource to update an existing TopLevelResource.", this.Name, this.ResourceGroupName)); + } + + existingResource = new TopLevelResource() + { + Name = this.Name, + ResourceGroupName = this.ResourceGroupName, + Property1 = this.Property1, + Property2 = this.Property2, + ... + } + + if (this.ShouldProcess(this.Name, string.Format("Creating a new TopLevelResource in resource group '{0}' with name '{1}'.", this.ResourceGroupName, this.Name)) + { + var result = new PSTopLevelResource(this.MySDKClient.TopLevelResource.CreateOrUpdate(existingResource)); + WriteObject(result); + } + } + } +} +``` + +### Child resource + +All child resources should have a `New-*` cmdlet that allows users to create a child resource with given properties. Properties that are required by the API should be mandatory parameters, and in the case where different combinations of properties are needed depending on a provided value (_e.g._, Windows and Linux VMs have different properties), multiple parameter sets should be used. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the resource actually being created. + +_Note_: for long-running operations (~15s or longer), it is advised to add the [`-AsJob`](../design-guidelines/cmdlet-best-practices.md#asjob) to your cmdlet. + +#### Parameter sets + +To enable the above scenario, the cmdlet will need two parameter sets: + +``` +New-AzChildResource -ResourceGroupName -TopLevelResourceName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] + +New-AzChildResource -TopLevelResourceObject -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] +``` + +The first parameter set has required `-ResourceGroupName`, `-TopLevelResource` and `-Name` parameters to satisfy the identity properties of the child resource, as well as a few optional `-PropertyX` parameters that allows the user to set values for the properties. The second parameter set has a required `-TopLevelResourceObject` parameter that can be piped from the parent resource's `Get-*` and `Set/Update-*` cmdlets. + +#### C# example + +```cs +namespace Microsoft.Azure.Commands.Service +{ + [Cmdlet(VerbsCommon.New, "AzChildResource", DefaultParameterSetName = CreateByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSChildResource))] + public class NewChildResourceCommand : ServiceBaseCmdlet + { + private const string CreateByNameParameterSet = "CreateByNameParameterSet"; + private const string CreateByParentObjectParameterSet = "CreateByParentObjectParameterSet"; + + [Parameter(Mandatory = true, ParameterSetName = CreateByNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = CreateByNameParameterSet)] + [ValidateNotNullOrEmpty] + public string TopLevelResourceName { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = CreateByParentObjectParameterSet)] + [ValidateNotNull] + public PSTopLevelResource TopLevelResourceObject { get; set; } + + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = false)] + public Type1 Property1 { get; set; } + + [Parameter(Mandatory = false)] + public Type2 Property2 { get; set; } + + // Excluding other property parameters + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.TopLevelResourceObject)) + { + this.ResourceGroupName = this.TopLevelResourceObject.ResourceGroupName; + this.TopLevelResourceName = this.TopLevelResourceObject.Name; + } + + ChildResource existingChildResource = null; + try + { + existingChildResource = this.MySDKClient.ChildResource.Get(this.ResourceGroupName, this.TopLevelResourceName, this.Name); + } + catch + { + existingChildResource = null; + } + + if (existingChildResource != null) + { + throw new Exception(string.Format("A ChildResource with name '{0}' in resource group '{1}' under parent TopLevelResource '{2}' already exists. Please use Set/Update-AzChildResource to update an existing ChildResource.", this.Name, this.ResourceGroupName, this.TopLevelResourceName)); + } + + existingChildResource = new ChildResource() + { + Name = this.Name, + TopLevelResourceName = this.TopLevelResourceName, + ResourceGroupName = this.ResourceGroupName, + Property1 = this.Property1, + Property2 = this.Property2, + ... + } + + if (this.ShouldProcess(this.Name, string.Format("Creating a new ChildResource in resource group '{0}' under parent TopLevelResource '{1}' with name '{2}'.", this.ResourceGroupName, this.TopLevelResourceName, this.Name)) + { + var result = new PSChildResource(this.MySDKClient.ChildResource.CreateOrUpdate(existingChildResource)); + WriteObject(result); + } + } + } +} +``` \ No newline at end of file diff --git a/documentation/development-docs/examples/remove-cmdlet-example.md b/documentation/development-docs/examples/remove-cmdlet-example.md new file mode 100644 index 000000000000..3d35884e5c6e --- /dev/null +++ b/documentation/development-docs/examples/remove-cmdlet-example.md @@ -0,0 +1,179 @@ +## `Remove-*` cmdlet example + +_Note_: for the below examples, the string "TopLevelResource" would be replaced with the name of your top-level resource (_e.g._, "VirtualMachine", "VirtualNetwork", "SqlServer"), and the string "ChildResource" would be replaced with the name of your child resource (_e.g._, "VirtualMachineExtension", "VirtualNetworkPeering", "SqlDatabase") + +### Top-level resource + +All top-level resources should have a `Remove-*` cmdlet that allows users to delete a specific resource. The user can delete a resource by providing all identity properties, the resource id, or the object representation of the resource. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the resource actually being deleted. This cmdlet should also implement the [`-PassThru`](../design-guidelines/cmdlet-best-practices.md#returning-no-output) parameter, which allows the user to receive output when no output would normally be provided. + +#### Parameter sets + +To enable the scenarios mentioned previously, the cmdlet will need three parameter sets: + +``` +Remove-AzTopLevelResource -ResourceGroupName -Name [-PassThru] [-WhatIf] [-Confirm] + +Remove-AzTopLevelResource -InputObject [-PassThru] [-WhatIf] [-Confirm] + +Remove-AzTopLevelResource -ResourceId [-PassThru] [-WhatIf] [-Confirm] +``` + +The first parameter set has required `-ResourceGroupName` and `-Name` parameters, which allows the user to explicitly provide the identity properties of the resource that they want to delete. The second parameter has a required `-InputObject` parameter, which allows the user to pipe the result of the `Get-*` and `Set/Update-*` cmdlets to this cmdlet and delete the corresponding resource. The third parameter has a required `-ResourceId` parameter, which allows the user to delete a specific resource by resource id. + +#### C# example + +```cs +namespace Microsoft.Azure.Commands.Service +{ + [Cmdlet(VerbsCommon.Remove, "AzTopLevelResource", DefaultParameterSetName = DeleteByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] + public class RemoveTopLevelResourceCommand : ServiceBaseCmdlet + { + private const string DeleteByNameParameterSet = "DeleteByNameParameterSet"; + private const string DeleteByInputObjectParameterSet = "DeleteByInputObjectParameterSet"; + private const string DeleteByResourceIdParameterSet = "DeleteByResourceIdParameterSet"; + + [Parameter(Mandatory = true, ParameterSetName = DeleteByNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = DeleteByNameParameterSet)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = DeleteByInputObjectParameterSet)] + [ValidateNotNull] + public PSTopLevelResource InputObject { get; set; } + + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = DeleteByResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.InputObject)) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.Name = this.InputObject.Name; + } + + if (this.IsParameterBound(c => c.ResourceId)) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.Name = resourceIdentifier.ResourceName; + } + + if (this.ShouldProcess(this.Name, string.Format("Deleting TopLevelResource '{0}' in resource group {0}", this.Name, this.ResourceGroupName))) + { + this.MySDKClient.TopLevelResource.Delete(this.ResourceGroupName, this.Name); + if (this.PassThru.IsPresent) + { + WriteObject(true); + } + } + } + } +} +``` + +### Child resource + +All child resources should have a `Remove-*` cmdlet that allows users to delete a specific child resource. The user can delete a child resource by providing all identity properties, the resource id of the child resource, or the object representation of the child resource. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the child resource actually being deleted. This cmdlet should also implement the [`-PassThru`](../design-guidelines/cmdlet-best-practices.md#returning-no-output) parameter, which allows the user to receive the output when no output would normally be provided. + +#### Parameter sets + +To enable the scenarios mentioned previously, the cmdlet will need four parameter sets: + +``` +Remove-AzChildResource -ResourceGroupName -TopLevelResourceName -Name [-PassThru] [-WhatIf] [-Confirm] + +Remove-AzChildResource -TopLeveResourceObject -Name [-PassThru] [-WhatIf] [-Confirm] + +Remove-AzChildResource -InputObject [-PassThru] [-WhatIf] [-Confirm] + +Remove-AzChildResource -ResourceId [-PassThru] [-WhatIf] [-Confirm] +``` + +The first parameter set has required `-ResourceGroupName`, `-TopLevelResourceName` and `-Name` parameters, which allows the user to explicitly provide the identity properties of the child resource that they want to delete. The second parameter has a required `-TopLeveResourceObject` parameter, which allows the user to pipe the result of the parent resource's `Get-*` and `Set/Update-*` cmdlets to this cmdlet, as well as a required `-Name` parameter. The third parameter has a required `-InputObject` parameter, which allows the user to pipe the result of the `Get-*` and `Set/Update-*` cmdlets to this cmdlet and delete the corresponding child resource. The fourth parameter has a required `-ResourceId` parameter, which allows the user to delete the specific child resource by resource id. + +#### C# example + +```cs +namespace Microsoft.Azure.Commands.Service +{ + [Cmdlet(VerbsCommon.Remove, "AzChildResource", DefaultParameterSetName = DeleteByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] + public class RemoveChildResourceCommand : ServiceBaseCmdlet + { + private const string DeleteByNameParameterSet = "DeleteByNameParameterSet"; + private const string DeleteByParentObjectParameterSet = "DeleteByParentObjectParameterSet"; + private const string DeleteByInputObjectParameterSet = "DeleteByInputObjectParameterSet"; + private const string DeleteByResourceIdParameterSet = "DeleteByResourceIdParameterSet"; + + [Parameter(Mandatory = true, ParameterSetName = DeleteByNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = DeleteByNameParameterSet)] + [ValidateNotNullOrEmpty] + public string TopLevelResourceName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = DeleteByNameParameterSet)] + [Parameter(Mandatory = true, ParameterSetName = DeleteByParentObjectParameterSet)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = DeleteByParentObjectParameterSet)] + [ValidateNotNull] + public PSTopLevelResource TopLeveResourceObject { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = DeleteByInputObjectParameterSet)] + [ValidateNotNull] + public PSChildResource InputObject { get; set; } + + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = DeleteByResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.TopLeveResourceObject)) + { + this.ResourceGroupName = this.TopLeveResourceObject.ResourceGroupName; + this.TopLevelResourceName = this.TopLeveResourceObject.Name; + } + + if (this.IsParameterBound(c => c.InputObject)) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.TopLevelResourceName = this.InputObject.TopLevelResourceName; + this.Name = this.InputObject.Name; + } + + if (this.IsParameterBound(c => c.ResourceId)) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.TopLevelResourceName = resourceIdentifier.ParentResource; + this.Name = resourceIdentifier.ResourceName; + } + + if (this.ShouldProcess(this.Name, string.Format("Deleting ChildResource '{0}' in resource group '{1}' under parent TopLevelResource '{2}'.", this.Name, this.ResourceGroupName, this.TopLevelResourceName))) + { + this.MySDKClient.ChildResource.Delete(this.ResourceGroupName, this.TopLevelResourceName, this.Name); + if (this.IsPassThru.IsPresent) + { + WriteObject(true); + } + } + } + } +} +``` \ No newline at end of file diff --git a/documentation/development-docs/examples/set-cmdlet-example.md b/documentation/development-docs/examples/set-cmdlet-example.md new file mode 100644 index 000000000000..18354359d606 --- /dev/null +++ b/documentation/development-docs/examples/set-cmdlet-example.md @@ -0,0 +1,237 @@ +## `Set-*` cmdlet example + +_Note_: for the below examples, the string "TopLevelResource" would be replaced with the name of your top-level resource (_e.g._, "VirtualMachine", "VirtualNetwork", "SqlServer"), and the string "ChildResource" would be replaced with the name of your child resource (_e.g._, "VirtualMachineExtension", "VirtualNetworkPeering", "SqlDatabase") + +### Top-level resource + +All top-level resources should have a `Set-*` cmdlet that allows users to update an existing resource _if the API follows `PUT` semantics_. If the API supports `PATCH` semantics, then the cmdlet should be `Update-*` (see below). The user can update an existing resource by providing all identity properties, the resource id, or the object representation of the resource. Similar to the `New-*` cmdlet, properties that are required by the API should be mandatory parameters, and in the case where different combinations of properties are needed depending on a provided value (_e.g._, Windows and Linux VMs have different properties), multiple parameter sets should be used. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the resource actually being updated. + +#### Parameter Sets + +To enable the scenarios mentioned previously, the cmdlet will need three parameter sets: + +``` +Set-AzTopLevelResource -ResourceGroupName -Name -Property1 -Property2 ... [-WhatIf] [-Confirm] + +Set-AzTopLevelResource -InputObject [-Property1 ] -[Property2 ] ... [-WhatIf] [-Confirm] + +Set-AzTopLevelResource -ResourceId -Property1 -Property2 ... [-WhatIf] [-Confirm] +``` + +The first parameter set has required `-ResourceGroupName` and `-Name` parameters, as well as required property parameters to set their values on the resource. The second parameter has a required `-InputObject` parameter, as well as optional property parameters that override the value of the property on the given object if provided. The third parameter has a required `-ResourceId` parameter, as well as required property parameters to set their values on the resource. + +#### C# example + +```cs +namespace Microsoft.Azure.Commands.Service +{ + [Cmdlet(VerbsCommon.Set, "AzTopLevelResource", DefaultParameterSet = SetByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSTopLevelResource))] + public class SetTopLevelResourceCommand : ServiceBaseCmdlet + { + private const string SetByNameParameterSet = "SetByNameParameterSet"; + private const string SetByInputObjectParameterSet = "SetByInputObjectParameterSet"; + private const string SetByResourceIdParameterSet = "SetByResourceIdParameterSet"; + + [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = SetByInputObjectParameterSet)] + [ValidateNotNull] + public PSTopLevelResource InputObject { get; set; } + + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = SetByResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] + [Parameter(Mandatory = true, ParameterSetName = SetByResourceIdParameterSet)] + [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet)] + public Type1 Property1 { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] + [Parameter(Mandatory = true, ParameterSetName = SetByResourceIdParameterSet)] + [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet)] + public Type2 Property2 { get; set; } + + // Excluding other property parameters + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.InputObject)) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.Name = this.InputObject.Name; + this.Property1 = this.IsParameterBound(c => c.Property1) ? this.Property1 : this.InputObject.Property1; + this.Property2 = this.IsParameterBound(c => c.Property2) ? this.Property2 : this.InputObject.Property2; + ... + } + + if (this.IsParameterBound(c => c.ResourceId)) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.Name = resourceIdentifier.ResourceName; + } + + TopLevelResource existingResource = null; + try + { + existingResource = this.MySDKClient.TopLevelResource.Get(this.ResourceGroupName, this.Name); + } + catch + { + existingResource = null; + } + + if (existingResource == null) + { + throw new Exception(string.Format("A TopLevelResource with name '{0}' in resource group '{1}' does not exist. Please use New-AzTopLevelResource to create a TopLevelResource with these properties.", this.Name, this.ResourceGroupName)); + } + + existingResource.Property1 = this.Property1; + existingResource.Property2 = this.Property2; + ... + + if (this.ShouldProcess(this.Name, string.Format("Updating TopLevelResource '{0}' in resource group '{1}'.", this.Name, this.ResourceGroupName))) + { + var result = new PSTopLevelResource(this.MySDKClient.TopLevelResource.CreateOrUpdate(this.ResourceGroupName, this.Name, existingResource)); + WriteObject(result); + } + } + } +} +``` + +### Child resource + +All child resources should have a `Set-*` cmdlet that allows users to update an existing child resource _if the API follows `PUT` semantics_. If the API supports `PATCH` semantics, then the cmdlet should be `Update-*` (see below). The user can update an existing child resource by providing all identity properties, the resource id, or the object representation of the child resource. Similar to the `New-*` cmdlet, properties that are required by the API should be mandatory parameters, and in the case where different combinations of properties are needed depending on a provided value (_e.g._, Windows and Linux VMs have different properties), multiple parameter sets should be used. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the resource actually being updated. + +#### Parameter sets + +To enable the scenarios mentioned previously, the cmdlet will need four parameter sets: + +``` +Set-AzChildResource -ResourceGroupName -TopLevelResourceName -Name -Property1 -Property2 ... [-WhatIf] [-Confirm] + +Set-AzChildResource -TopLevelResourceObject -Name -Property1 -Property2 ... [-WhatIf] [-Confirm] + +Set-AzChildResource -InputObject [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] + +Set-AzChildResource -ResourceId -Property1 -Property2 ... [-WhatIf] [-Confirm] +``` + +The first parameter set has required `-ResourceGroupName`, `-TopLevelResourceName` and `-Name` parameters, as well as required property parameters to set their values on the child resource. The second parameter set has a required `-TopLevelResourceObject` parameter, which allows the user to pipe the result of the parent resource's `Get-*` and `Set/Update-*` cmdlets to this cmdlet, as well as required property parameters. The third parameter set has a required `-InputObject` parameter, as well as optional property parameters that override the value of the property on the given object if provided. The fourth parameter set has a required `-ResourceId` parameter, as well as required property parameters to set their values on the child resource. + +#### C# example + +```cs +namespace Microsoft.Azure.Commands.Service +{ + [Cmdlet(VerbsCommon.Set, "AzChildResource", DefaultParameterSet = SetByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSChildResource))] + public class SetChildResourceCommand : ServiceBaseCmdlet + { + private const string SetByNameParameterSet = "SetByNameParameterSet"; + private const string SetByParentObjectParameterSet = "SetByParentObjectParameterSet"; + private const string SetByInputObjectParameterSet = "SetByInputObjectParameterSet"; + private const string SetByResourceIdParameterSet = "SetByResourceIdParameterSet"; + + [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet) + [ValidateNotNullOrEmpty] + public string TopLevelResourceName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] + [Parameter(Mandatory = true, ParameterSetName = SetByParentObjectParameterSet)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = SetByParentObjectParameterSet)] + [ValidateNotNull] + public PSTopLevelResource TopLevelResourceObject { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = SetByInputObjectParameterSet)] + [ValidateNotNull] + public PSChildResource InputObject { get; set; } + + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = SetByResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] + [Parameter(Mandatory = true, ParameterSetName = SetByParentObjectParameterSet)] + [Parameter(Mandatory = true, ParameterSetName = SetByResourceIdParameterSet)] + [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet)] + public Type1 Property1 { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] + [Parameter(Mandatory = true, ParameterSetName = SetByParentObjectParameterSet)] + [Parameter(Mandatory = true, ParameterSetName = SetByResourceIdParameterSet)] + [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet)] + public Type2 Property2 { get; set; } + + // Excluding other property parameters + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.TopLevelResourceObject)) + { + this.ResourceGroupName = this.TopLevelResourceObject.ResourceGroupName; + this.TopLevelResourceName = this.TopLevelResourceObject.Name; + } + + if (this.IsParameterBound(c => c.InputObject)) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.TopLevelResourceName = this.InputObject.TopLevelResourceName; + this.Name = this.InputObject.Name; + this.Property1 = this.IsParameterBound(c => c.Property1) ? this.Property1 : this.InputObject.Property1; + this.Property2 = this.IsParameterBound(c => c.Property2) ? this.Property2 : this.InputObject.Property2; + ... + } + + if (this.IsParameterBound(c => c.ResourceId)) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.TopLevelResourceName = resourceIdentifier.ParentResource; + this.Name = resourceIdentifier.ResourceName; + } + + ChildResource childResource = null; + try + { + childResource = this.MySDKClient.ChildResource.Get(this.ResourceGroupName, this.TopLevelResourceName, this.Name); + } + catch + { + childResource = null; + } + + if (childResource == null) + { + throw new Exception(string.Format("A ChildResource with name '{0}' in resource group '{1}' under parent TopLevelResource '{2}' does not exist. Please use New-AzChildResource to create a ChildResource with these properties.", this.Name, this.ResourceGroupName, this.TopLevelResourceName)); + } + + childResource.Property1 = this.Property1; + childResource.Property2 = this.Property2; + ... + + if (this.ShouldProcess(this.Name, string.Format("Updating ChildResource '{0}' in resource group '{1}' under parent TopLevelResource '{2}'.", this.Name, this.ResourceGroupName, this.TopLevelResourceName))) + { + var result = new PSChildResource(this.MySDKClient.ChildResource.CreateOrUpdate(this.ResourceGroupName, this.TopLevelResourceName, this.Name, childResource)); + WriteObject(result); + } + } + } +} +``` \ No newline at end of file diff --git a/documentation/development-docs/examples/update-cmdlet-example.md b/documentation/development-docs/examples/update-cmdlet-example.md new file mode 100644 index 000000000000..c36ce3f92bf0 --- /dev/null +++ b/documentation/development-docs/examples/update-cmdlet-example.md @@ -0,0 +1,223 @@ +## `Update-*` cmdlet example + +_Note_: for the below examples, the string "TopLevelResource" would be replaced with the name of your top-level resource (_e.g._, "VirtualMachine", "VirtualNetwork", "SqlServer"), and the string "ChildResource" would be replaced with the name of your child resource (_e.g._, "VirtualMachineExtension", "VirtualNetworkPeering", "SqlDatabase") + +### Top-level resource + +All top-level resources should have an `Update-*` cmdlet that allows users to update an existing resource _if the API follows `PATCH` semantics_. If the API supports `PUT` semantics, then the cmdlet should be `Set-*` (see above). The user can update an existing resource by providing all identity properties, the resource id, or the object representation of the resource. Similar to the `New-*` cmdlet, properties that are required by the API should be mandatory parameters, and in the case where different combinations of properties are needed depending on a provided value (_e.g._, Windows and Linux VMs have different properties), multiple parameter sets should be used. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the resource actually being updated. + +_Note_: if the only property that a user is able to update through the `PATCH` API is tags, then this cmdlet should not be implemented. + +#### Parameter Sets + +To enable the scenarios mentioned previously, the cmdlet will need three parameter sets: + +``` +Update-AzTopLevelResource -ResourceGroupName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] + +Update-AzTopLevelResource -InputObject [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] + +Update-AzTopLevelResource -ResourceId [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] +``` + +The first parameter set has required `-ResourceGroupName` and `-Name` parameters, the second parameter set has a required `-InputObject` parameter, and the third parameter set has a required `-ResourceId` parameter. All three parameter sets have optional property parameters that can be used to override the value of the property set on the retrieved/provided resource. + +#### C# example + +```cs +namespace Microsoft.Azure.Commands.Service +{ + [Cmdlet(VerbsData.Update, "AzTopLevelResource", DefaultParameterSet = UpdateByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSTopLevelResource))] + public class UpdateTopLevelResourceCommand : ServiceBaseCmdlet + { + private const string UpdateByNameParameterSet = "UpdateByNameParameterSet"; + private const string UpdateByInputObjectParameterSet = "UpdateByInputObjectParameterSet"; + private const string UpdateByResourceIdParameterSet = "UpdateByResourceIdParameterSet"; + + [Parameter(Mandatory = true, ParameterSetName = UpdateByNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = UpdateByNameParameterSet)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = UpdateByInputObjectParameterSet)] + [ValidateNotNull] + public PSTopLevelResource InputObject { get; set; } + + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = UpdateByResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = false)] + public Type1 Property1 { get; set; } + + [Parameter(Mandatory = false)] + public Type2 Property2 { get; set; } + + // Excluding other property parameters + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.InputObject)) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.Name = this.InputObject.Name; + } + + if (this.IsParameterBound(c => c.ResourceId)) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.Name = resourceIdentifier.ResourceName; + } + + TopLevelResource existingResource = null; + try + { + existingResource = this.MySDKClient.TopLevelResource.Get(this.ResourceGroupName, this.Name); + } + catch + { + existingResource = null; + } + + if (existingResource == null) + { + throw new Exception(string.Format("A TopLevelResource with name '{0}' in resource group '{1}' does not exist. Please use New-AzTopLevelResource to create a TopLevelResource with these properties.", this.Name, this.ResourceGroupName)); + } + + existingResource.Property1 = this.IsParameterBound(c => c.Property1) ? this.Property1 : existingResource.Property1; + existingResource.Property2 = this.IsParameterBound(c => c.Property2) ? this.Property2 : existingResource.Property2; + ... + + if (this.ShouldProcess(this.Name, string.Format("Updating TopLevelResource '{0}' in resource group '{1}'.", this.Name, this.ResourceGroupName))) + { + var result = new PSTopLevelResource(this.MySDKClient.TopLevelResource.Update(this.ResourceGroupName, this.Name, existingResource)); + WriteObject(result); + } + } + } +} +``` + +### Child resource + +All child resources should have an `Update-*` cmdlet that allows users to update an existing child resource _if the API follows `PATCH` semantics_. If the API supports `PUT` semantics, then the cmdlet should be `Set-*` (See above). The user can update an existing child resource by providing all identity properties, the resource id, or the object representation of the child resource. Similar to the `New-*` cmdlet, properties that are required by the API should be mandatory parameters, and in the case where different combinations of properties are needed depending on a provided value (_e.g._, Windows and Linux VMs have different properties), multiple parameter sets should be used. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the resource actually being updated. + +#### Parameter sets + +To enable the scenarios mentioned previously, the cmdlet will need four parameter sets: + +``` +Update-AzChildResource -ResourceGroupName -TopLevelResourceName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] + +Update-AzChildResource -TopLevelResourceObject -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] + +Update-AzChildResource -InputObject [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] + +Update-AzChildResource -ResourceId [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] +``` + +The first parameter set has required `-ResourceGroupName`, `-TopLevelResourceName` and `-Name` parameters, the second parameter set has required `-TopLevelResourceObject` and `-Name` parameters, the third parameter set has a required `-InputObject` parameter, and the fourth parameter set has a required `-ResourceId` parameter. All four parameter sets have optional property parameters that can be used to override the value of the property set on the retrieved/provided resource. + +#### C# example + +```cs +namespace Microsoft.Azure.Commands.Service +{ + [Cmdlet(VerbsData.Update, "AzChildResource", DefaultParameterSet = UpdateByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSChildResource))] + public class UpdateChildResourceCommand : ServiceBaseCmdlet + { + private const string UpdateByNameParameterSet = "UpdateByNameParameterSet"; + private const string UpdateByParentObjectParameterSet = "UpdateByParentObjectParameterSet"; + private const string UpdateByInputObjectParameterSet = "UpdateByInputObjectParameterSet"; + private const string UpdateByResourceIdParameterSet = "UpdateByResourceIdParameterSet"; + + [Parameter(Mandatory = true, ParameterSetName = UpdateByNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = UpdateByNameParameterSet)] + [ValidateNotNullOrEmpty] + public string TopLevelResourceName { get; set; } + + [Parameter(Mandatory = true, ParameterSetName = UpdateByNameParameterSet)] + [Parameter(Mandatory = true, ParameterSetName = UpdateByParentObjectParameterSet)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = UpdateByParentObjectParameterSet)] + [ValidateNotNull] + public PSTopLevelResource TopLevelResourceObject { get; set; } + + [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = UpdateByInputObjectParameterSet)] + [ValidateNotNull] + public PSTopLevelResource InputObject { get; set; } + + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = UpdateByResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(Mandatory = false)] + public Type1 Property1 { get; set; } + + [Parameter(Mandatory = false)] + public Type2 Property2 { get; set; } + + // Excluding other property parameters + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.TopLevelResourceObject)) + { + this.ResourceGroupName = this.TopLevelResourceObject.ResourceGroupName; + this.TopLevelResourceName = this.TopLevelResourceObject.Name; + } + + if (this.IsParameterBound(c => c.InputObject)) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.TopLevelResourceName = this.InputObject.TopLevelResourceName; + this.Name = this.InputObject.Name; + } + + if (this.IsParameterBound(c => c.ResourceId)) + { + var resourceIdentifier = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.TopLevelResourceName = resourceIdentifer.ParentResource; + this.Name = resourceIdentifier.ResourceName; + } + + ChildResource childResource = null; + try + { + childResource = this.MySDKClient.ChildResource.Get(this.ResourceGroupName, this.TopLevelResourceName, this.Name); + } + catch + { + childResource = null; + } + + if (childResource == null) + { + throw new Exception(string.Format("A ChildResource with name '{0}' in resource group '{1}' under parent TopLevelResource '{2}' does not exist. Please use New-AzChildResource to create a ChildResource with these properties.", this.Name, this.ResourceGroupName, this.TopLevelResourceName)); + } + + childResource.Property1 = this.IsParameterBound(c => c.Property1) ? this.Property1 : childResource.Property1; + childResource.Property2 = this.IsParameterBound(c => c.Property2) ? this.Property2 : childResource.Property2; + ... + + if (this.ShouldProcess(this.Name, string.Format("Updating ChildResource '{0}' in resource group '{1}' under parent TopLevelResource '{2}'.", this.Name, this.ResourceGroupName, this.TopLevelResourceName))) + { + var result = new PSChildResource(this.MySDKClient.ChildResource.Update(this.ResourceGroupName, this.TopLevelResourceName, this.Name, childResource)); + WriteObject(result); + } + } + } +} +``` \ No newline at end of file diff --git a/documentation/development-docs/generate-format.ps1xml-file.md b/documentation/development-docs/generate-format.ps1xml-file.md index fb84c877fc9a..b34d70a89647 100644 --- a/documentation/development-docs/generate-format.ps1xml-file.md +++ b/documentation/development-docs/generate-format.ps1xml-file.md @@ -115,7 +115,7 @@ To provide a better PowerShell Azure cmdlets output experience we worked out a m 2. Run the New-FormatPs1Xml cmdlet to generate the format.ps1xml file. --- - We presume that for the [output type](https://github.com/Azure/azure-powershell/blob/master/documentation/development-docs/azure-powershell-design-guidelines.md#output-type) you created a new class that, for example, wraps a returning .NET SDK type, rather than PSObject. + We presume that for the [output type](./design-guidelines/cmdlet-best-practices.md#output-type) you created a new class that, for example, wraps a returning .NET SDK type, rather than PSObject. --- diff --git a/documentation/development-docs/patterns-for-standard-cmdlets.md b/documentation/development-docs/patterns-for-standard-cmdlets.md deleted file mode 100644 index c31fc399532d..000000000000 --- a/documentation/development-docs/patterns-for-standard-cmdlets.md +++ /dev/null @@ -1,1042 +0,0 @@ -# Expected Patterns for Standard Cmdlets - -## Table of Contents - -- [Top-level Resources](#top---level-resources) - - [`Get-*` cmdlet](#get--cmdlet) - - [`New-*` cmdlet](#new--cmdlet) - - [`Remove-*` cmdlet](#remove--cmdlet) - - [`Set-*` cmdlet](#set--cmdlet) - - [`Update-*` cmdlet](#update--cmdlet) -- [Child Resources](#child-resources) - - [`Get-*` cmdlet](#get--cmdlet-1) - - [`New-*` cmdlet](#new--cmdlet-1) - - [`Remove-*` cmdlet](#remove--cmdlet-1) - - [`Set-*` cmdlet](#set--cmdlet-1) - - [`Update-*` cmdlet](#update--cmdlet-1) - -## Top-level Resources - -### `Get-*` cmdlet - -All top-level resources should have a `Get-*` cmdlet that allows users to list the resources in their subscription or a resource group, as well as get a specific resource. In addition, users should be able to provide the resource id of the resource they want to get, and the cmdlet will parse the string to get the necessary identity information. - -#### Parameter sets - -To enable the scenarios mentioned previously, the cmdlet will need three parameter sets: - -``` -Get-AzFoo [-ResourceGroupName ] - -Get-AzFoo -ResourceGroupName -Name - -Get-AzFoo -ResourceId -``` - -The first parameter set has an optional `-ResourceGroupName` parameter, which allows the user to list all resources in a subscription or in a resource group. The second parameter set has required `-ResourceGroupName` and `-Name` parameters, which allows the user to get a specific resource. The third parameter set has a required `-ResourceId` parameter, which allows the user to get a specific resource by resource id. - -#### C# example - -
Click to expand example -

- -```cs -namespace Microsoft.Azure.Commands.Foo -{ - [Cmdlet(VerbsCommon.Get, "AzFoo", DefaultParameterSetName = ListParameterSet), OutputType(typeof(PSFoo))] - public class GetFooCommand : FooBaseCmdlet - { - private const string ListParameterSet = "ListParameterSet"; - private const string GetByNameParameterSet = "GetByNameParameterSet";" - private const string GetByResourceIdParameterSet = "GetByResourceIdParameterSet"; - - [Parameter(Mandatory = false, ParameterSetName = ListParameterSet)] - [Parameter(Mandatory = true, ParameterSetName = GetByNameParameterSet)] - [ResourceGroupCompleter] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = GetByNameParameterSet)] - [ValidateNotNullOrEmpty] - public string Name { get; set; } - - [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = GetByResourceIdParameterSet )] - [ValidateNotNullOrEmpty] - public string ResourceId { get; set; } - - public override void ExecuteCmdlet() - { - if (this.IsParameterBound(c => c.ResourceId)) - { - var resourceIdentifier = new ResourceIdentifier(this.ResourceId); - this.ResourceGroupName = resourceIdentifier.ResourceGroupName; - this.Name = resourceIdentifier.ResourceName; - } - - if (!string.IsNullOrEmpty(this.Name)) - { - var result = new PSFoo(this.MySDKClient.Foo.Get(this.ResourceGroupName, this.Name)); - WriteObject(result); - } - else if (!string.IsNullOrEmpty(this.ResourceGroupName)) - { - var result = this.MySDKClient.Foo.ListByResourceGroup(this.ResourceGroupName).Select(f => new PSFoo(f)); - WriteObject(result, true); - } - else - { - var result = this.MySDKClient.Foo.List().Select(f => new PSFoo(f)); - WriteObject(result, true); - } - } - } -} -``` - -

-
- -### `New-*` cmdlet - -All top-level resources should have a `New-*` cmdlet that allows users to create a resource with given properties. Properties that are required by the API should be mandatory parameters, and in the case where different combinations of properties are needed depending on a provided value (_e.g._, Windows and Linux VMs have different properties), multiple parameter sets should be used. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the resource actually being created. - -_Note_: for long-running operations (~15s or longer), it is advised to add the [`-AsJob`](.\azure-powershell-design-guidelines#asjob-parameter) to your cmdlet. - -#### Parameter sets - -To enable the above scenario, only one parameter set is needed: - -``` -New-AzFoo -ResourceGroupName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] -``` - -This parameter set has required `-ResourceGroupName` and `-Name` parameters to satisfy the identity properties of the resource, as well as a few optional `-PropertyX` parameters that allows the user to set values for properties. The parameter set also has optional `-WhatIf` and `-Confirm` parameters that are automatically included from the implementation of `SupportsShouldProcess`. - -#### C# example - -
Click to expand example -

- -```cs -namespace Microsoft.Azure.Commands.Foo -{ - [Cmdlet(VerbsCommon.New, "AzFoo", DefaultParameterSetName = CreateParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSFoo))] - public class NewFooCommand : FooBaseCmdlet - { - private const string CreateParameterSet = "CreateParameterSet"; - - [Parameter(Mandatory = true, ParameterSetName = CreateParameterSet)] - [ResourceGroupCompleter] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = CreateParameterSet)] - [ValidateNotNullOrEmpty] - public string Name { get; set; } - - [Parameter(Mandatory = false, ParameterSetName = CreateParameterSet)] - public Type1 Property1 { get; set; } - - [Parameter(Mandatory = false, ParameterSetName = CreateParameterSet)] - public Type2 Property2 { get; set; } - - // Excluding other property parameters - - public override void ExecuteCmdlet() - { - Foo existingFoo = null; - try - { - existingFoo = this.MySDKClient.Foo.Get(this.ResourceGroupName, this.Name); - } - catch - { - existingFoo = null; - } - - if (existingFoo != null) - { - throw new Exception(string.Format("A Foo with name '{0}' in resource group '{1}' already exists. Please use Set/Update-AzFoo to update an existing Foo.", this.Name, this.ResourceGroupName)); - } - - existingFoo = new Foo() - { - Name = this.Name, - ResourceGroupName = this.ResourceGroupName, - Property1 = this.Property1, - Property2 = this.Property2, - ... - } - - if (this.ShouldProcess(this.Name, string.Format("Creating a new Foo in resource group '{0}' with name '{1}'.", this.ResourceGroupName, this.Name)) - { - var result = new PSFoo(this.MySDKClient.Foo.CreateOrUpdate(existingFoo)); - WriteObject(result); - } - } - } -} -``` - -

-
- -### `Remove-*` cmdlet - -All top-level resources should have a `Remove-*` cmdlet that allows users to delete a specific resource. The user can delete a resource by providing all identity properties, the resource id, or the object representation of the resource. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the resource actually being deleted. This cmdlet should also implement the [`-PassThru`](.\azure-powershell-design-guidelines.md#returning-no-output) parameter, which allows the user to receive output when no output would normally be provided. - -#### Parameter sets - -To enable the scenarios mentioned previously, the cmdlet will need three parameter sets: - -``` -Remove-AzFoo -ResourceGroupName -Name [-PassThru] [-WhatIf] [-Confirm] - -Remove-AzFoo -InputObject [-PassThru] [-WhatIf] [-Confirm] - -Remove-AzFoo -ResourceId [-PassThru] [-WhatIf] [-Confirm] -``` - -The first parameter set has required `-ResourceGroupName` and `-Name` parameters, which allows the user to explicitly provide the identity properties of the resource that they want to delete. The second parameter has a required `-InputObject` parameter, which allows the user to pipe the result of the `Get-*` and `Set/Update-*` cmdlets to this cmdlet and delete the corresponding resource. The third parameter has a required `-ResourceId` parameter, which allows the user to delete a specific resource by resource id. - -#### C# example - -
Click to expand example -

- -```cs -namespace Microsoft.Azure.Commands.Foo -{ - [Cmdlet(VerbsCommon.Remove, "AzFoo", DefaultParameterSetName = DeleteByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] - public class RemoveFooCommand : FooBaseCmdlet - { - private const string DeleteByNameParameterSet = "DeleteByNameParameterSet"; - private const string DeleteByInputObjectParameterSet = "DeleteByInputObjectParameterSet"; - private const string DeleteByResourceIdParameterSet = "DeleteByResourceIdParameterSet"; - - [Parameter(Mandatory = true, ParameterSetName = DeleteByNameParameterSet)] - [ResourceGroupCompleter] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = DeleteByNameParameterSet)] - [ValidateNotNullOrEmpty] - public string Name { get; set; } - - [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = DeleteByInputObjectParameterSet)] - [ValidateNotNull] - public PSFoo InputObject { get; set; } - - [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = DeleteByResourceIdParameterSet)] - [ValidateNotNullOrEmpty] - public string ResourceId { get; set; } - - [Parameter(Mandatory = false)] - public SwitchParameter PassThru { get; set; } - - public override void ExecuteCmdlet() - { - if (this.IsParameterBound(c => c.InputObject)) - { - this.ResourceGroupName = this.InputObject.ResourceGroupName; - this.Name = this.InputObject.Name; - } - - if (this.IsParameterBound(c => c.ResourceId)) - { - var resourceIdentifier = new ResourceIdentifier(this.ResourceId); - this.ResourceGroupName = resourceIdentifier.ResourceGroupName; - this.Name = resourceIdentifier.ResourceName; - } - - if (this.ShouldProcess(this.Name, string.Format("Deleting Foo '{0}' in resource group {0}", this.Name, this.ResourceGroupName))) - { - this.MySDKClient.Foo.Delete(this.ResourceGroupName, this.Name); - if (this.IsPassThru.IsPresent) - { - WriteObject(true); - } - } - } - } -} -``` - -

-
- -### `Set-*` cmdlet - -All top-level resources should have a `Set-*` cmdlet that allows users to update an existing resource _if the API follows `PUT` semantics_. If the API supports `PATCH` semantics, then the cmdlet should be `Update-*` (see below). The user can update an existing resource by providing all identity properties, the resource id, or the object representation of the resource. Similar to the `New-*` cmdlet, properties that are required by the API should be mandatory parameters, and in the case where different combinations of properties are needed depending on a provided value (_e.g._, Windows and Linux VMs have different properties), multiple parameter sets should be used. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the resource actually being updated. - -#### Parameter Sets - -To enable the scenarios mentioned previously, the cmdlet will need three parameter sets: - -``` -Set-AzFoo -ResourceGroupName -Name -Property1 -Property2 ... [-WhatIf] [-Confirm] - -Set-AzFoo -InputObject [-Property1 ] -[Property2 ] ... [-WhatIf] [-Confirm] - -Set-AzFoo -ResourceId -Property1 -Property2 ... [-WhatIf] [-Confirm] -``` - -The first parameter set has required `-ResourceGroupName` and `-Name` parameters, as well as required property parameters to set their values on the resource. The second parameter has a required `-InputObject` parameter, as well as optional property parameters that override the value of the property on the given object if provided. The third parameter has a required `-ResourceId` parameter, as well as required property parameters to set their values on the resource. - -#### C# example - -
Click to expand example -

- -```cs -namespace Microsoft.Azure.Commands.Foo -{ - [Cmdlet(VerbsCommon.Set, "AzFoo", DefaultParameterSet = SetByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSFoo))] - public class SetFooCommand : FooBaseCmdlet - { - private const string SetByNameParameterSet = "SetByNameParameterSet"; - private const string SetByInputObjectParameterSet = "SetByInputObjectParameterSet"; - private const string SetByResourceIdParameterSet = "SetByResourceIdParameterSet"; - - [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] - [ResourceGroupCompleter] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] - [ValidateNotNullOrEmpty] - public string Name { get; set; } - - [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = SetByInputObjectParameterSet)] - [ValidateNotNull] - public PSFoo InputObject { get; set; } - - [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = SetByResourceIdParameterSet)] - [ValidateNotNullOrEmpty] - public string ResourceId { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] - [Parameter(Mandatory = true, ParameterSetName = SetByResourceIdParameterSet)] - [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet)] - public Type1 Property1 { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] - [Parameter(Mandatory = true, ParameterSetName = SetByResourceIdParameterSet)] - [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet)] - public Type2 Property2 { get; set; } - - // Excluding other property parameters - - public override void ExecuteCmdlet() - { - if (this.IsParameterBound(c => c.InputObject)) - { - this.ResourceGroupName = this.InputObject.ResourceGroupName; - this.Name = this.InputObject.Name; - this.Property1 = this.IsParameterBound(c => c.Property1) ? this.Property1 : this.InputObject.Property1; - this.Property2 = this.IsParameterBound(c => c.Property2) ? this.Property2 : this.InputObject.Property2; - ... - } - - if (this.IsParameterBound(c => c.ResourceId)) - { - var resourceIdentifier = new ResourceIdentifier(this.ResourceId); - this.ResourceGroupName = resourceIdentifier.ResourceGroupName; - this.Name = resourceIdentifier.ResourceName; - } - - Foo foo = null; - try - { - foo = this.MySDKClient.Foo.Get(this.ResourceGroupName, this.Name); - } - catch - { - foo = null; - } - - if (foo == null) - { - throw new Exception(string.Format("A Foo with name '{0}' in resource group '{1}' does not exist. Please use New-AzFoo to create a Foo with these properties.", this.Name, this.ResourceGroupName)); - } - - foo.Property1 = this.Property1; - foo.Property2 = this.Property2; - ... - - if (this.ShouldProcess(this.Name, string.Format("Updating Foo '{0}' in resource group '{1}'.", this.Name, this.ResourceGroupName))) - { - var result = new PSFoo(this.MySDKClient.Foo.Update(this.ResourceGroupName, this.Name, foo) - WriteObject(result); - } - } - } -} -``` - -

-
- -### `Update-*` cmdlet - -All top-level resources should have an `Update-*` cmdlet that allows users to update an existing resource _if the API follows `PATCH` semantics_. If the API supports `PUT` semantics, then the cmdlet should be `Set-*` (see above). The user can update an existing resource by providing all identity properties, the resource id, or the object representation of the resource. Similar to the `New-*` cmdlet, properties that are required by the API should be mandatory parameters, and in the case where different combinations of properties are needed depending on a provided value (_e.g._, Windows and Linux VMs have different properties), multiple parameter sets should be used. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the resource actually being updated. - -_Note_: if the only property that a user is able to update through the `PATCH` API is tags, then this cmdlet should not be implemented. - -#### Parameter Sets - -To enable the scenarios mentioned previously, the cmdlet will need three parameter sets: - -``` -Update-AzFoo -ResourceGroupName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] - -Update-AzFoo -InputObject [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] - -Update-AzFoo -ResourceId [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] -``` - -The first parameter set has required `-ResourceGroupName` and `-Name` parameters, the second parameter set has a required `-InputObject` parameter, and the third parameter set has a required `-ResourceId` parameter. All three parameter sets have optional property parameters that can be used to override the value of the property set on the retrieved/provided resource. - -#### C# example - -
Click to expand example -

- -```cs -namespace Microsoft.Azure.Commands.Foo -{ - [Cmdlet(VerbsData.Update, "AzFoo", DefaultParameterSet = UpdateByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSFoo))] - public class UpdateFooCommand : FooBaseCmdlet - { - private const string UpdateByNameParameterSet = "UpdateByNameParameterSet"; - private const string UpdateByInputObjectParameterSet = "UpdateByInputObjectParameterSet"; - private const string UpdateByResourceIdParameterSet = "UpdateByResourceIdParameterSet"; - - [Parameter(Mandatory = true, ParameterSetName = UpdateByNameParameterSet)] - [ResourceGroupCompleter] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = UpdateByNameParameterSet)] - [ValidateNotNullOrEmpty] - public string Name { get; set; } - - [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = UpdateByInputObjectParameterSet)] - [ValidateNotNull] - public PSFoo InputObject { get; set; } - - [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = UpdateByResourceIdParameterSet)] - [ValidateNotNullOrEmpty] - public string ResourceId { get; set; } - - [Parameter(Mandatory = false)] - public Type1 Property1 { get; set; } - - [Parameter(Mandatory = false)] - public Type2 Property2 { get; set; } - - // Excluding other property parameters - - public override void ExecuteCmdlet() - { - if (this.IsParameterBound(c => c.InputObject)) - { - this.ResourceGroupName = this.InputObject.ResourceGroupName; - this.Name = this.InputObject.Name; - } - - if (this.IsParameterBound(c => c.ResourceId)) - { - var resourceIdentifier = new ResourceIdentifier(this.ResourceId); - this.ResourceGroupName = resourceIdentifier.ResourceGroupName; - this.Name = resourceIdentifier.ResourceName; - } - - Foo foo = null; - try - { - foo = this.MySDKClient.Foo.Get(this.ResourceGroupName, this.Name); - } - catch - { - foo = null; - } - - if (foo == null) - { - throw new Exception(string.Format("A Foo with name '{0}' in resource group '{1}' does not exist. Please use New-AzFoo to create a Foo with these properties.", this.Name, this.ResourceGroupName)); - } - - foo.Property1 = this.IsParameterBound(c => c.Property1) ? this.Property1 : foo.Property1; - foo.Property2 = this.IsParameterBound(c => c.Property2) ? this.Property2 : foo.Property2; - ... - - if (this.ShouldProcess(this.Name, string.Format("Updating Foo '{0}' in resource group '{1}'.", this.Name, this.ResourceGroupName))) - { - var result = new PSFoo(this.MySDKClient.Foo.Update(this.ResourceGroupName, this.Name, foo) - WriteObject(result); - } - } - } -} -``` - -

-
- -## Child Resources - -### `Get-*` cmdlet - -All child resources should have a `Get-*` cmdlet that allows users to list the child resources under a parent resource, as well as get a specific resource. In addition, users should be able to provide the resource id of the resource they want to get, and the cmdlet will parse the string to get the necessary identity information. - -#### Parameter sets - -To enable the scenarios mentioned previously, the cmdlet will need three parameter sets: - -``` -Get-AzChildFoo -ResourceGroupName -FooName [-Name ] - -Get-AzChildFoo -FooObject [-Name ] - -Get-AzChildFoo -ResourceId -``` - -The first parameter set has mandatory `-ResourceGroupName` and `-FooName` parameters to get the identity information about the parent resource, and then an optional `-Name` parameter to allow the user to either list all child resources contained in the given parent or get the specific child resource. The second parameter set has required `-FooObject` parameter, which can be piped from the parent `Get-*` or `Set/Update-*` cmdlet, and an optional `-Name` parameter. The third parameter set has a required `-ResourceId` parameter, which allows the user to get a specific child resource by resource id. - -#### C# example - -
Click to expand example -

- -```cs -namespace Microsoft.Azure.Commands.Foo -{ - [Cmdlet(VerbsCommon.Get, "AzChildFoo", DefaultParameterSetName = GetByNameParameterSet), OutputType(typeof(PSChildFoo))] - public class GetChildFooCommand : FooBaseCmdlet - { - private const string GetByNameParameterSet = "GetByNameParameterSet"; - private const string GetByParentObjectParameterSet = "GetByParentObjectParameterSet"; - private const string GetByResourceIdParameterSet = "GetByResourceIdParameterSet"; - - [Parameter(Mandatory = true, ParameterSetName = GetByNameParameterSet)] - [ResourceGroupCompleter] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = GetByNameParameterSet)] - [ValidateNotNullOrEmpty] - public string FooName { get; set; } - - [Parameter(Mandatory = false, ParameterSetName = GetByNameParameterSet)] - [Parameter(Mandatory = false, ParameterSetName = GetByParentObjectParameterSet)] - [ValidateNotNullOrEmpty] - public string Name { get; set; } - - [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = GetByParentObjectParameterSet)] - [ValidateNotNull] - public PSFoo FooObject { get; set; } - - [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = GetByResourceIdParameterSet)] - [ValidateNotNullOrEmpty] - public string ResourceId { get; set; } - - public override void ExecuteCmdlet() - { - if (this.IsParameterBound(c => c.ResourceId)) - { - var resourceIdentifier = new ResourceIdentifier(this.ResourceId); - this.ResourceGroupName = resourceIdentifier.ResourceGroupName; - this.FooName = resourceIdentifier.ParentResource - this.Name = resourceIdentifier.ResourceName; - } - - if (this.IsParameterBound(c => c.FooObject)) - { - this.ResourceGroupName = this.FooObject.ResourceGroupName; - this.FooName = this.FooObject.Name; - } - - if (!string.IsNullOrEmpty(this.Name)) - { - var result = new PSChildFoo(this.MySDKClient.ChildFoo.Get(this.ResourceGroupName, this.FooName, this.Name)); - WriteObject(result); - } - else - { - var result = this.MySDKClient.ChildFoo.ListByFoo(this.ResourceGroupName, this.FooName).Select(f => new PSChildFoo(f)); - WriteObject(result, true); - } - } - } -} -``` - -

-
- -### `New-*` cmdlet - -All child resources should have a `New-*` cmdlet that allows users to create a child resource with given properties. Properties that are required by the API should be mandatory parameters, and in the case where different combinations of properties are needed depending on a provided value (_e.g._, Windows and Linux VMs have different properties), multiple parameter sets should be used. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the resource actually being created. - -_Note_: for long-running operations (~15s or longer), it is advised to add the [`-AsJob`](.\azure-powershell-design-guidelines#asjob-parameter) to your cmdlet. - -#### Parameter sets - -To enable the above scenario, the cmdlet will need two parameter sets: - -``` -New-AzChildFoo -ResourceGroupName -FooName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] - -New-AzChildFoo -FooObject -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] -``` - -The first parameter set has required `-ResourceGroupName`, `-FooName` and `-Name` parameters to satisfy the identity properties of the child resource, as well as a few optional `-PropertyX` parameters that allows the user to set values for the properties. The second parameter set has a required `-FooObject` parameter that can be piped from the parent resource's `Get-*` and `Set/Update-*` cmdlets. - -#### C# example - -
Click to expand example -

- -```cs -namespace Microsoft.Azure.Commands.Foo -{ - [Cmdlet(VerbsCommon.New, "AzChildFoo", DefaultParameterSetName = CreateByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSChildFoo))] - public class NewChildFooCommand : FooBaseCmdlet - { - private const string CreateByNameParameterSet = "CreateByNameParameterSet"; - private const string CreateByParentObjectParameterSet = "CreateByParentObjectParameterSet"; - - [Parameter(Mandatory = true, ParameterSetName = CreateByNameParameterSet)] - [ResourceGroupCompleter] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = CreateByNameParameterSet)] - [ValidateNotNullOrEmpty] - public string FooName { get; set; } - - [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = CreateByParentObjectParameterSet)] - [ValidateNotNull] - public PSFoo FooObject { get; set; } - - [Parameter(Mandatory = true)] - [ValidateNotNullOrEmpty] - public string Name { get; set; } - - [Parameter(Mandatory = false)] - public Type1 Property1 { get; set; } - - [Parameter(Mandatory = false)] - public Type2 Property2 { get; set; } - - // Excluding other property parameters - - public override void ExecuteCmdlet() - { - if (this.IsParameterBound(c => c.FooObject)) - { - this.ResourceGroupName = this.FooObject.ResourceGroupName; - this.FooName = this.FooObject.FooName; - } - - ChildFoo existingFoo = null; - try - { - existingChildFoo = this.MySDKClient.ChildFoo.Get(this.ResourceGroupName, this.FooName, this.Name); - } - catch - { - existingChildFoo = null; - } - - if (existingChildFoo != null) - { - throw new Exception(string.Format("A ChildFoo with name '{0}' in resource group '{1}' under parent Foo '{2}' already exists. Please use Set/Update-AzChildFoo to update an existing ChildFoo.", this.Name, this.ResourceGroupName, this.FooName)); - } - - existingChildFoo = new ChildFoo() - { - Name = this.Name, - FooName = this.FooName, - ResourceGroupName = this.ResourceGroupName, - Property1 = this.Property1, - Property2 = this.Property2, - ... - } - - if (this.ShouldProcess(this.Name, string.Format("Creating a new ChildFoo in resource group '{0}' under parent Foo '{1}' with name '{2}'.", this.ResourceGroupName, this.FooName, this.Name)) - { - var result = new PSChildFoo(this.MySDKClient.ChildFoo.CreateOrUpdate(existingChildFoo)); - WriteObject(result); - } - } - } -} -``` - -

-
- -### `Remove-*` cmdlet - -All child resources should have a `Remove-*` cmdlet that allows users to delete a specific child resource. The user can delete a child resource by providing all identity properties, the resource id of the child resource, or the object representation of the child resource. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the child resource actually being deleted. This cmdlet should also implement the [`-PassThru`](.\azure-powershell-design-guidelines.md#returning-no-output) parameter, which allows the user to receive the output when no output would normally be provided. - -#### Parameter sets - -To enable the scenarios mentioned previously, the cmdlet will need four parameter sets: - -``` -Remove-AzChildFoo -ResourceGroupName -FooName -Name [-PassThru] [-WhatIf] [-Confirm] - -Remove-AzChildFoo -FooObject -Name [-PassThru] [-WhatIf] [-Confirm] - -Remove-AzChildFoo -InputObject [-PassThru] [-WhatIf] [-Confirm] - -Remove-AzChildFoo -ResourceId [-PassThru] [-WhatIf] [-Confirm] -``` - -The first parameter set has required `-ResourceGroupName`, `-FooName` and `-Name` parameters, which allows the user to explicitly provide the identity properties of the child resource that they want to delete. The second parameter has a required `-FooObject` parameter, which allows the user to pipe the result of the parent resource's `Get-*` and `Set/Update-*` cmdlets to this cmdlet, as well as a required `-Name` parameter. The third parameter has a required `-InputObject` parameter, which allows the user to pipe the result of the `Get-*` and `Set/Update-*` cmdlets to this cmdlet and delete the corresponding child resource. The fourth parameter has a required `-ResourceId` parameter, which allows the user to delete the specific child resource by resource id. - -#### C# example - -
Click to expand example -

- -```cs -namespace Microsoft.Azure.Commands.Foo -{ - [Cmdlet(VerbsCommon.Remove, "AzChildFoo", DefaultParameterSetName = DeleteByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] - public class RemoveChildFooCommand : FooBaseCmdlet - { - private const string DeleteByNameParameterSet = "DeleteByNameParameterSet"; - private const string DeleteByParentObjectParameterSet = "DeleteByParentObjectParameterSet"; - private const string DeleteByInputObjectParameterSet = "DeleteByInputObjectParameterSet"; - private const string DeleteByResourceIdParameterSet = "DeleteByResourceIdParameterSet"; - - [Parameter(Mandatory = true, ParameterSetName = DeleteByNameParameterSet)] - [ResourceGroupCompleter] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = DeleteByNameParameterSet)] - [ValidateNotNullOrEmpty] - public string FooName { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = DeleteByNameParameterSet)] - [Parameter(Mandatory = true, ParameterSetName = DeleteByParentObjectParameterSet)] - [ValidateNotNullOrEmpty] - public string Name { get; set; } - - [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = DeleteByParentObjectParameterSet)] - [ValidateNotNull] - public PSFoo FooObject { get; set; } - - [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = DeleteByInputObjectParameterSet)] - [ValidateNotNull] - public PSChildFoo InputObject { get; set; } - - [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = DeleteByResourceIdParameterSet)] - [ValidateNotNullOrEmpty] - public string ResourceId { get; set; } - - [Parameter(Mandatory = false)] - public SwitchParameter PassThru { get; set; } - - public override void ExecuteCmdlet() - { - if (this.IsParameterBound(c => c.FooObject)) - { - this.ResourceGroupName = this.FooObject.ResourceGroupName; - this.FooName = this.FooObject.Name; - } - - if (this.IsParameterBound(c => c.InputObject)) - { - this.ResourceGroupName = this.InputObject.ResourceGroupName; - this.FooName = this.InputObject.FooName; - this.Name = this.InputObject.Name; - } - - if (this.IsParameterBound(c => c.ResourceId)) - { - var resourceIdentifier = new ResourceIdentifier(this.ResourceId); - this.ResourceGroupName = resourceIdentifier.ResourceGroupName; - this.FooName = resourceIdentifier.ParentResource; - this.Name = resourceIdentifier.ResourceName; - } - - if (this.ShouldProcess(this.Name, string.Format("Deleting ChildFoo '{0}' in resource group '{1}' under parent Foo '{2}'.", this.Name, this.ResourceGroupName, this.FooName))) - { - this.MySDKClient.ChildFoo.Delete(this.ResourceGroupName, this.FooName, this.Name); - if (this.IsPassThru.IsPresent) - { - WriteObject(true); - } - } - } - } -} -``` - -

-
- -### `Set-*` cmdlet - -All child resources should have a `Set-*` cmdlet that allows users to update an existing child resource _if the API follows `PUT` semantics_. If the API supports `PATCH` semantics, then the cmdlet should be `Update-*` (see below). The user can update an existing child resource by providing all identity properties, the resource id, or the object representation of the child resource. Similar to the `New-*` cmdlet, properties that are required by the API should be mandatory parameters, and in the case where different combinations of properties are needed depending on a provided value (_e.g._, Windows and Linux VMs have different properties), multiple parameter sets should be used. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the resource actually being updated. - -#### Parameter sets - -To enable the scenarios mentioned previously, the cmdlet will need four parameter sets: - -``` -Set-AzChildFoo -ResourceGroupName -FooName -Name -Property1 -Property2 ... [-WhatIf] [-Confirm] - -Set-AzChildFoo -FooObject -Name -Property1 -Property2 ... [-WhatIf] [-Confirm] - -Set-AzChildFoo -InputObject [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] - -Set-AzChildFoo -ResourceId -Property1 -Property2 ... [-WhatIf] [-Confirm] -``` - -The first parameter set has required `-ResourceGroupName`, `-FooName` and `-Name` parameters, as well as required property parameters to set their values on the child resource. The second parameter set has a required `-FooObject` parameter, which allows the user to pipe the result of the parent resource's `Get-*` and `Set/Update-*` cmdlets to this cmdlet, as well as required property parameters. The third parameter set has a required `-InputObject` parameter, as well as optional property parameters that override the value of the property on the given object if provided. The fourth parameter set has a required `-ResourceIid` parameter, as well as required property parameters to set their values on the child resource. - -#### C# example - -
Click to expand example -

- -```cs -namespace Microsoft.Azure.Commands.Foo -{ - [Cmdlet(VerbsCommon.Set, "AzChildFoo", DefaultParameterSet = SetByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSChildFoo))] - public class SetChildFooCommand : FooBaseCmdlet - { - private const string SetByNameParameterSet = "SetByNameParameterSet"; - private const string SetByParentObjectParameterSet = "SetByParentObjectParameterSet"; - private const string SetByInputObjectParameterSet = "SetByInputObjectParameterSet"; - private const string SetByResourceIdParameterSet = "SetByResourceIdParameterSet"; - - [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] - [ResourceGroupCompleter] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet) - [ValidateNotNullOrEmpty] - public string FooName { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] - [Parameter(Mandatory = true, ParameterSetName = SetByParentObjectParameterSet)] - [ValidateNotNullOrEmpty] - public string Name { get; set; } - - [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = SetByParentObjectParameterSet)] - [ValidateNotNull] - public PSFoo FooObject { get; set; } - - [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = SetByInputObjectParameterSet)] - [ValidateNotNull] - public PSChildFoo InputObject { get; set; } - - [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = SetByResourceIdParameterSet)] - [ValidateNotNullOrEmpty] - public string ResourceId { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] - [Parameter(Mandatory = true, ParameterSetName = SetByParentObjectParameterSet)] - [Parameter(Mandatory = true, ParameterSetName = SetByResourceIdParameterSet)] - [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet)] - public Type1 Property1 { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = SetByNameParameterSet)] - [Parameter(Mandatory = true, ParameterSetName = SetByParentObjectParameterSet)] - [Parameter(Mandatory = true, ParameterSetName = SetByResourceIdParameterSet)] - [Parameter(Mandatory = false, ParameterSetName = SetByInputObjectParameterSet)] - public Type2 Property2 { get; set; } - - // Excluding other property parameters - - public override void ExecuteCmdlet() - { - if (this.IsParameterBound(c => c.FooObject)) - { - this.ResourceGroupName = this.FooObject.ResourceGroupName; - this.FooName = this.FooObject.Name; - } - - if (this.IsParameterBound(c => c.InputObject)) - { - this.ResourceGroupName = this.InputObject.ResourceGroupName; - this.FooName = this.InputObject.FooName; - this.Name = this.InputObject.Name; - this.Property1 = this.IsParameterBound(c => c.Property1) ? this.Property1 : this.InputObject.Property1; - this.Property2 = this.IsParameterBound(c => c.Property2) ? this.Property2 : this.InputObject.Property2; - ... - } - - if (this.IsParameterBound(c => c.ResourceId)) - { - var resourceIdentifier = new ResourceIdentifier(this.ResourceId); - this.ResourceGroupName = resourceIdentifier.ResourceGroupName; - this.FooName = resourceIdentifier.ParentResource; - this.Name = resourceIdentifier.ResourceName; - } - - ChildFoo childFoo = null; - try - { - childFoo = this.MySDKClient.ChildFoo.Get(this.ResourceGroupName, this.FooName, this.Name); - } - catch - { - childFoo = null; - } - - if (childFoo == null) - { - throw new Exception(string.Format("A ChildFoo with name '{0}' in resource group '{1}' under parent Foo '{2}' does not exist. Please use New-AzChildFoo to create a ChildFoo with these properties.", this.Name, this.ResourceGroupName, this.FooName)); - } - - childFoo.Property1 = this.Property1; - childFoo.Property2 = this.Property2; - ... - - if (this.ShouldProcess(this.Name, string.Format("Updating Foo '{0}' in resource group '{1}' under parent Foo '{2}'.", this.Name, this.ResourceGroupName, this.FooName))) - { - var result = new PSChildFoo(this.MySDKClient.ChildFoo.Update(this.ResourceGroupName, this.FooName, this.Name, childFoo) - WriteObject(result); - } - } - } -} -``` - -

-
- -### `Update-*` cmdlet - -All child resources should have an `Update-*` cmdlet that allows users to update an existing child resource _if the API follows `PATCH` semantics_. If the API supports `PUT` semantics, then the cmdlet should be `Set-*` (See above). The user can update an existing child resource by providing all identity properties, the resource id, or the object representation of the child resource. Similar to the `New-*` cmdlet, properties that are required by the API should be mandatory parameters, and in the case where different combinations of properties are needed depending on a provided value (_e.g._, Windows and Linux VMs have different properties), multiple parameter sets should be used. This cmdlet should implement `SupportsShouldProcess` to allow users to provide the `-WhatIf` parameter and see what the result of executing the cmdlet is without the resource actually being updated. - -#### Parameter sets - -To enable the scenarios mentioned previously, the cmdlet will need four parameter sets: - -``` -Update-AzChildFoo -ResourceGroupName -FooName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] - -Update-AzChildFoo -FooObject -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] - -Update-AzChildFoo -InputObject [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] - -Update-AzChildFoo -ResourceId [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] -``` - -The first parameter set has required `-ResourceGroupName`, `-FooName` and `-Name` parameters, the second parameter set has required `-FooObject` and `-Name` parameters, the third parameter set has a required `-InputObject` parameter, and the fourth parameter set has a required `-ResourceId` parameter. All four parameter sets have optional property parameters that can be used to override the value of the property set on the retrieved/provided resource. - -#### C# example - -
Click to expand example -

- -```cs -namespace Microsoft.Azure.Commands.Foo -{ - [Cmdlet(VerbsData.Update, "AzChildFoo", DefaultParameterSet = UpdateByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSChildFoo))] - public class UpdateChildFooCommand : FooBaseCmdlet - { - private const string UpdateByNameParameterSet = "UpdateByNameParameterSet"; - private const string UpdateByParentObjectParameterSet = "UpdateByParentObjectParameterSet"; - private const string UpdateByInputObjectParameterSet = "UpdateByInputObjectParameterSet"; - private const string UpdateByResourceIdParameterSet = "UpdateByResourceIdParameterSet"; - - [Parameter(Mandatory = true, ParameterSetName = UpdateByNameParameterSet)] - [ResourceGroupCompleter] - [ValidateNotNullOrEmpty] - public string ResourceGroupName { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = UpdateByNameParameterSet)] - [ValidateNotNullOrEmpty] - public string FooName { get; set; } - - [Parameter(Mandatory = true, ParameterSetName = UpdateByNameParameterSet)] - [Parameter(Mandatory = true, ParameterSetName = UpdateByParentObjectParameterSet)] - [ValidateNotNullOrEmpty] - public string Name { get; set; } - - [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = UpdateByParentObjectParameterSet)] - [ValidateNotNull] - public PSFoo FooObject { get; set; } - - [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = UpdateByInputObjectParameterSet)] - [ValidateNotNull] - public PSFoo InputObject { get; set; } - - [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = UpdateByResourceIdParameterSet)] - [ValidateNotNullOrEmpty] - public string ResourceId { get; set; } - - [Parameter(Mandatory = false)] - public Type1 Property1 { get; set; } - - [Parameter(Mandatory = false)] - public Type2 Property2 { get; set; } - - // Excluding other property parameters - - public override void ExecuteCmdlet() - { - if (this.IsParameterBound(c => c.FooObject)) - { - this.ResourceGroupName = this.FooObject.ResourceGroupName; - this.FooName = this.FooObject.Name; - } - - if (this.IsParameterBound(c => c.InputObject)) - { - this.ResourceGroupName = this.InputObject.ResourceGroupName; - this.FooName = this.InputObject.FooName; - this.Name = this.InputObject.Name; - } - - if (this.IsParameterBound(c => c.ResourceId)) - { - var resourceIdentifier = new ResourceIdentifier(this.ResourceId); - this.ResourceGroupName = resourceIdentifier.ResourceGroupName; - this.FooName = resourceIdentifer.ParentResource; - this.Name = resourceIdentifier.ResourceName; - } - - ChildFoo childFoo = null; - try - { - childFoo = this.MySDKClient.ChildFoo.Get(this.ResourceGroupName, this.FooName, this.Name); - } - catch - { - childFoo = null; - } - - if (childFoo == null) - { - throw new Exception(string.Format("A ChildFoo with name '{0}' in resource group '{1}' under parent Foo '{2}' does not exist. Please use New-AzChildFoo to create a ChildFoo with these properties.", this.Name, this.ResourceGroupName, this.FooName)); - } - - childFoo.Property1 = this.IsParameterBound(c => c.Property1) ? this.Property1 : childFoo.Property1; - childFoo.Property2 = this.IsParameterBound(c => c.Property2) ? this.Property2 : childFoo.Property2; - ... - - if (this.ShouldProcess(this.Name, string.Format("Updating Foo '{0}' in resource group '{1}' under parent Foo '{2}'.", this.Name, this.ResourceGroupName, this.FooName))) - { - var result = new PSChildFoo(this.MySDKClient.ChildFoo.Update(this.ResourceGroupName, this.FooName, this.Name, childFoo) - WriteObject(result); - } - } - } -} -``` - -

-
\ No newline at end of file diff --git a/documentation/development-docs/piping-in-powershell.md b/documentation/development-docs/piping-in-powershell.md deleted file mode 100644 index d1a1ab8a6fe5..000000000000 --- a/documentation/development-docs/piping-in-powershell.md +++ /dev/null @@ -1,246 +0,0 @@ -# Azure PowerShell Piping Scenarios - -There are two main scenarios that we wish to enable in cmdlets for Azure PowerShell: -- piping by value using an `InputObject` parameter -- piping by property name using a `ResourceId` parameter - -## Using the `InputObject` parameter - -### Short explanation -For all resources, `InputObject` should be implemented for the Remove/Set/Update cmdlets (and any other cmdlet where an existing resource is being operated on). The implementation of this will be a new parameter set: - -```powershell -Remove/Set/Update-Az -InputObject -``` - -For all child resources, `InputObject` should also be implemented for the Get/New cmdlets. The implementation of this will be a new parameter set: - -```powershell -Get/New-Az -ParentObject -``` - -### Long explanation -This scenario should be used when piping objects around within the same module. For example, if you have a set of `Get-AzFoo`, `Remove-AzFoo`, and `Set-AzFoo` cmdlets, the `Remove-AzFoo` and `Set-AzFoo` cmdlets should have a parameter set that takes the `InputObject` parameter of type `PSFoo` so that a user can do the following: - -```powershell -# --- Piping scenario --- -# Setting and removing an individual object -Get-AzFoo -Name "FooName" -ResourceGroupName "RG" | Set-AzFoo -Get-AzFoo -Name "FooName" -ResourceGroupName "RG" | Remove-AzFoo - -# Setting and removing a collection of objects -Get-AzFoo | Set-AzFoo -Get-AzFoo | Remove-AzFoo - - -# --- Non-piping scenario --- -# Setting and removing an individual object -$foo = Get-AzFoo -Name "FooName" -ResourceGroupName "RG" -Set-AzFoo -InputObject $foo -Remove-AzFoo -InputObject $foo - -# Setting and removing a collection of objects -Get-AzFoo | ForEach-Object { Set-AzFoo -InputObject $_ } -Get-AzFoo | ForEach-Object { Remove-AzFoo -InputObject $_ } -``` - -Another time that this scenario applies is when you have cmdlets for child resources that need information about the parent (top-level) resource. For example you can pipe in the whole parent object to the `New-AzFooBar` and `Get-AzFooBar` cmdlets to get the child resources, and then pipe the child resource object to the `Remove-AzFooBar` and `Set-AzFooBar` cmdlets. - -```powershell -# --- Piping scenario --- -# Getting all of child resources from all of the parent resources and removing them -Get-AzFoo | Get-AzFooBar | Remove-AzFooBar - -# Getting all of the child resources from all of the parent resources in a resource group and removing them -Get-AzFoo -ResourceGroupName "RG" | Get-AzFooBar | Remove-AzFooBar - -# Getting all of the child resources from a specific parent resource and removing them -Get-AzFoo -ResourceGroupName "RG" -Name "FooName" | Get-AzFooBar | Remove-AzFooBar - - -# --- Non-piping scenario --- -# Getting all of the child resources from a specific parent resource and removing them -$foo = Get-AzFoo -ResourceGroupName "RG" -Name "FooName" -$fooBar = Get-AzFooBar -InputObject $foo -Remove-AzFooBar -InputObject $fooBar -``` - -## Using the `ResourceId` parameter - -### Short explanation -For all resources, `ResourceId` should be implemented for the Remove/Set/Update cmdlets (and any other cmdlet where an existing resource is being operated on). The implementation of this will be a new parameter set: - -```powershell -Remove/Set/Update-Az -ResourceId -``` - -For all child resources, `ResourceId` should also be implemented for the Get/New cmdlets. The implementation of this will be a new parameter set: - -```powershell -Get/New-Az -ParentResourceId -``` - -### Long explanation - -In this scenario, we are using the generic cmdlets found in the `Az.Resources` module. These cmdlets, `Find-AzResource` and `Get-AzResource`, return a `PSCustomObject` that has a `ResourceId` property, which is the unique identifier for the given resource. Since this identifier can parsed to get the name and resource group name for a top-level resource, we can create a parameter set that has a `ResourceId` parameter that accepts its value from the pipeline by property name, allowing us to accept piping from these generic cmdlets. - -```powershell -# --- Piping scenario --- -# Remove all Foo objects in the current subscription -Find-AzResource -ResourceType Microsoft.Foo/foo | Remove-AzFoo - -# Remove all Foo objects in a given resource group -Find-AzResource -ResourceType Microsoft.Foo/foo -ResourceGroupEquals "RG" | Remove-AzFoo - -# Remove a specific Foo object -Find-AzResource -ResourceGroupEquals "RG" -ResourceNameEquals "FooName" | Remove-AzFoo - - -# -- Non-piping scenario --- -# Removing all Foo objects in the current subscription -Find-AzResource -ResourceType Microsoft.Foo/foo | ForEach-Object { Remove-AzFoo -ResourceId $_.ResourceId } - -# Remove all Foo objects in a given resource group -Find-AzResource -ResourceType Microsoft.Foo/foo -ResourceGroupEquals "RG" | ForEach-Object { Remove-AzFoo -ResourceId $_.ResourceId } - -# Remove a specific Foo object -Find-AzResource -ResourceGroupEquals "RG" -ResourceNameEquals "FooName" | ForEach-Object { Remove-AzFoo -ResourceId $_.ResourceId } -``` - -To implement this scenario, please see the [`ResourceIdentifier`](https://github.com/Azure/azure-powershell-common/blob/master/src/ResourceManager/Version2016_09_01/Utilities/Models/ResourceIdentifier.cs) class in the `ResourceManager` project. This class will allow you to create a `ResourceIdentifier` object that accepts a `ResourceId` string in its constructor and has properties `ResourceName`, `ResourceGroupName`, and others. - -## Summary -For all Remove/Set/Update cmdlets (and any other cmdlet where an existing resource is being operated on), you will have three parameter sets (and potentially a multiple of three if you have initially have multiple parameter sets): -```powershell -Remove/Set/Update-Az -Remove/Set/Update-Az -InputObject -Remove/Set/Update-Az -ResourceId -``` -For example, for child resource "Widget" with parent "Foo", there will be these three parameter sets for Remove: -```powershell -Remove-AzWidget -ResourceGroupName -FooName -Name -Remove-AzWidget -InputObject -Remove-AzWidget -ResourceId -``` -For all child resources, Get/New cmdlets will also have these three parameter sets: -```powershell -Get/New-Az -Get-Az -InputObject -Get/New-Az -ResourceId -``` -For example, for child resource "Widget" with parent "Foo", there will be these three parameter sets for New: -```powershell -New-AzWidget -ResourceGroupName -FooName -Name -New-AzWidget -WidgetObject -Name -New-AzWidget -WidgetResourceId -Name -``` - -# Piping in PowerShell (additional information) - -## Understanding Piping - -In PowerShell, cmdlets pipe objects between one another; cmdlets should return objects, not text (strings). - -For example, in Azure PowerShell, you can remove all of your current environments with the following pipeline scenairo: - -```powershell -Get-AzEnvironment | Remove-AzEnviornment -``` - -The cmdlet `Get-AzEnvironment` will return a set of `Environment` objects, and those objects will be individually piped to the `Remove-AzEnvironment` cmdlet, where they will be removed. - -When an object is being piped to a cmdlet, PowerShell will first check to see if it can bind that object to a parameter with the same type and has the property `ValueFromPipeline = true`. If this cannot be done, PowerShell will then see if it can bind the properties of the object with parameters that share the same name and have the property `ValueFromPipelineByPropertyName = true`. - -### ValueFromPipeline - -In this scenario, the object piped to the cmdlet will be bound to a parameter with the same type that has the property `ValueFromPipeline = true`. - -For example, you have a `Remove-AzFoo` cmdlet with the following parameter: - -```cs -[Parameter(ParameterSetName = "ByInputObject", ValueFromPipeline = true)] -public PSFoo InputObject { get; set; } -``` - -If there is a corresponding `Get-AzFoo` cmdlet that returns a `PSFoo` object, the following scenario is enabled: - -```powershell -# --- Piping scenario --- -# Remove an individual PSFoo object -Get-AzFoo -Name "FooName" -ResourceGroupName "RG" | Remove-AzFoo - -# Remove all PSFoo objects -Get-AzFoo | Remove-AzFoo - - -# --- Non-piping scenarios --- -# Remove an individual PSFoo object -$foo = Get-AzFoo -Name "FooName" -ResourceGroupName "RG" -Remove-AzFoo -InputObject $foo - -# Remove all PSFoo objects -Get-AzFoo | ForEach-Object { Remove-AzFoo -InputObject $_ } -``` - -The `PSFoo` object(s) that is returned by the `Get-AzFoo` call will be piped to the `Remove-AzFoo` cmdlet, and becuase that cmdlet has a parameter that accepts a `PSFoo` object by value, PowerShell will bind the object being sent through the pipeline to this `InputObject` parameter. - -### ValueFromPipelineByPropertyName - -In this scenario, the properties of the object being piped to the cmdlet will be bound to parameters with the same name that have the property `ValueFromPipelineByPropertyName = true`. - -For example, you have a `Remove-AzFoo` cmdlet with the following parameters: - -```cs -[Parameter(ParameterSetName = "ByPropertyName", ValueFromPipelineByPropertyName = true)] -public string ResourceId { get; set; } -``` - -If there is a corresponding `Get-AzFoo` cmdlet that returns a `PSFoo` object (that has properties `Name` and `ResourceGroupName`), the following scenario is enabled: - -```powershell -# --- Piping scenario --- -# Remove an individual PSFoo object -Get-AzResource -ResourceId | Remove-AzFoo - -# Remove all PSFoo objects -Get-AzResource -ResourceType Foo | Remove-AzFoo - - -# --- Non-piping scenario --- -# Remove an individual PSFoo object -$foo = Get-AzResource -ResourceId -Remove-AzFoo -ResourceId - -# Remove all PSFoo objects -Get-AzFoo | ForEach-Object { Remove-AzFoo -ResourceId } -``` - -The `PSFoo` object(s) that is returned by the `Get-AzFoo` call will be piped to the `Remove-AzFoo` cmdlet, and because that cmdlet has parameters that accept their value from the pipeline by property name, PowerShell will check each of these parameters and see if it can find a corresponding property in the `PSFoo` object that it shares a name with, and bind the value. - -### Writing to the Pipeline - -To write to the pipeline, use the `WriteObject` method from the `AzurePSCmdlet` class in the `Commands.Common` project. If you are writing **only one** object to the pipeline, then you should use the overload `WriteObject(object sendToPipeline)`, but if you are writing **more than one** objects to the pipeline, you should use the overload `WriteObject(object sendToPipeline, bool enumerateCollection)`. - -If you use the `WriteObject(object sendToPipeline)` overload when writing a collection of objects to the pipeline, this will cause errors in the piping scenario, specifically, it will pipe a collection to the next cmdlet, rather than the individual objects. - -```cs -public override void ExecuteCmdlet() -{ - if (!string.IsNullOrEmpty(this.Name)) - { - // If the Name is not empty, write a single object to the pipeline - var result = client.Foo.List(this.Name); - WriteObject(result); - } - else - { - // If the Name is empty, write a collection of objects to the pipeline - var result = client.Foo.List(); - WriteObject(result, true); - } -} -``` - -## More Information - -For more information on piping, see the article ["Understanding the Windows PowerShell Pipeline"](https://msdn.microsoft.com/en-us/powershell/scripting/getting-started/fundamental/understanding-the-windows-powershell-pipeline). diff --git a/documentation/MicrosoftAzure-32px.png b/documentation/images/MicrosoftAzure-32px.png similarity index 100% rename from documentation/MicrosoftAzure-32px.png rename to documentation/images/MicrosoftAzure-32px.png diff --git a/documentation/MicrosoftPowerShellCore-32px.png b/documentation/images/MicrosoftPowerShellCore-32px.png similarity index 100% rename from documentation/MicrosoftPowerShellCore-32px.png rename to documentation/images/MicrosoftPowerShellCore-32px.png diff --git a/documentation/installing-az-modules.md b/documentation/installing-az-modules.md new file mode 100644 index 000000000000..cbad18673bfc --- /dev/null +++ b/documentation/installing-az-modules.md @@ -0,0 +1,79 @@ +# Installing `Az` Modules + +## Overview + +By default, modules are installed from the [PowerShell Gallery](https://www.powershellgallery.com/), which is the central repository for accessing published PowerShell modules (equivalent to NuGet for .NET, npm for JavaScript, etc.). With the [`Install-Module`](https://docs.microsoft.com/en-us/powershell/module/powershellget/install-module) cmdlet, users can specify which modules they want to install; in addition, users can provide the `-Repository` parameter to specify which repository they want to install modules from (if this parameter isn't provided, then the cmdlet defaults to using PowerShell Gallery). + +## Removing Modules + +In some cases, existing `Az` modules will need to be removed before a new version can be installed. Since the `Uninstall-Module` cmdlet does not currently remove modules and their dependencies, users will need to manually delete the folders where the modules were installed to. + +To figure out if you have any `Az` modules currently installed, as well as the location they are found, use the following command: + +``` +Get-Module -Name Az* -ListAvailable +``` + +This command will list all modules installed on your machine that are found in your `$env:PSModulePath`. Deleting the corresponding `Az.*` folders in the file explorer will remove these modules from your machine. + +## Registering Repositories + +In some cases, users will need to install modules from a different repository than the PowerShell Gallery -- this can be a new endpoint, or even a local folder containing `.nupkg` files. In either case, the [`Register-PSRepository`](https://docs.microsoft.com/en-us/powershell/module/powershellget/register-psrepository) cmdlet should be used to create a new local repository that can be used to install modules from. + +Below is an example of registering a new repository from a local folder containing `.nupkg` files: + +``` +Register-PSRepository -Name "{{repository_name}}" -SourceLocation "{{folder_with_nupkg_files}}" -PackageManagementProvider NuGet -InstallationPolicy Trusted +``` + +### Registering the Test Gallery + +Before a module is published to the PowerShell Gallery, it must first be published to the [Test Gallery](https://www.poshtestgallery.com/) to ensure there are no problems during the publishing and installation process. If you ever need to use this gallery for testing an installation, first register it by running the following command: + +``` +Register-PSRepository -Name TestGallery -SourceLocation https://poshtestgallery.com/api/v2 -PackageManagementProvider NuGet -InstallationPolicy +``` + +Modules can then be installed from this gallery by providing "TestGallery" to the `-Repository` parameter for the `Install-Module` cmdlet. + +## Installing Modules + +To install a module from the PowerShell Gallery, run the following command: + +``` +Install-Module -Name "{{module_name}}" +``` + +To install a module from a specific repository, run the following command: + +``` +Install-Module -Name "{{module_name}}" -Repository "{{repository_name}}" +``` + +### Installing `Az` Modules + +To install the latest stable `Az` modules from the PowerShell Gallery, run the following command: + +``` +Install-Module -Name Az +``` + +To install a specific `Az` module from the PowerShell Gallery, run the following command: + +``` +Install-Module -Name Az.{{service}} +``` + +To install a preview version of a specific `Az` module, run the following command: + +``` +Install-Module -Name Az.{{service}} -RequiredVersion {{version}} -AllowPrelease +``` + +_Note_: to install preview versions of modules, version 1.6.0 or greater of the `PowerShellGet` module will be needed. Users can run the following command to get the latest version of this module: + +``` +Install-Module -Name PowerShellGet -Force +``` + +Full documentation around installing the `Az` module can be found in the [_Install the Azure PowerShell module_](https://docs.microsoft.com/en-us/powershell/azure/install-az-ps) article. \ No newline at end of file diff --git a/src/Accounts/Accounts.Test/UninstallAzureRmTests.cs b/src/Accounts/Accounts.Test/UninstallAzureRmTests.cs index 4acaabb819fb..c5fa65921240 100644 --- a/src/Accounts/Accounts.Test/UninstallAzureRmTests.cs +++ b/src/Accounts/Accounts.Test/UninstallAzureRmTests.cs @@ -68,7 +68,8 @@ public void TestUninstallAzureRmMultiplePaths() Assert.True(dataStore.DirectoryExists(Path.Combine("testmodulepath2", "AzureRM.Profile"))); var cmdlet = new UninstallAzureRmCommand(); - Environment.SetEnvironmentVariable("PSModulePath", "testmodulepath;testmodulepath2;pathdoesntexist"); + Environment.SetEnvironmentVariable("PSModulePath", + "testmodulepath" + Path.PathSeparator + "testmodulepath2" + Path.PathSeparator + "pathdoesntexist"); cmdlet.ExecuteCmdlet(); Assert.False(dataStore.DirectoryExists(Path.Combine("testmodulepath", "AzureRM.ApiManagement"))); Assert.False(dataStore.DirectoryExists(Path.Combine("testmodulepath2", "AzureRM.Profile"))); diff --git a/src/Accounts/Accounts/Az.Accounts.psd1 b/src/Accounts/Accounts/Az.Accounts.psd1 index 81fcc315073f..e4c654e8824f 100644 --- a/src/Accounts/Accounts/Az.Accounts.psd1 +++ b/src/Accounts/Accounts/Az.Accounts.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/6/2019 +# Generated on: 4/4/2019 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.4.0' +ModuleVersion = '1.5.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -56,27 +56,27 @@ DotNetFrameworkVersion = '4.7.2' # RequiredModules = @() # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.PowerShell.Authentication.Abstractions.dll', - '.\Microsoft.Azure.PowerShell.Authentication.dll', - '.\Microsoft.Azure.PowerShell.Authentication.ResourceManager.dll', - '.\Microsoft.Azure.PowerShell.Clients.Authorization.dll', - '.\Microsoft.Azure.PowerShell.Clients.Compute.dll', - '.\Microsoft.Azure.PowerShell.Clients.Graph.Rbac.dll', - '.\Microsoft.Azure.PowerShell.Clients.Network.dll', - '.\Microsoft.Azure.PowerShell.Clients.ResourceManager.dll', - '.\Microsoft.Azure.PowerShell.Common.dll', - '.\Microsoft.Azure.PowerShell.Storage.dll', - '.\Microsoft.Azure.PowerShell.Clients.Storage.Management.dll', - '.\Microsoft.Azure.PowerShell.Clients.KeyVault.dll', - '.\Microsoft.Azure.PowerShell.Clients.Websites.dll', - '.\Hyak.Common.dll', '.\Microsoft.ApplicationInsights.dll', - '.\Microsoft.Azure.Common.dll', - '.\Microsoft.Rest.ClientRuntime.dll', - '.\Microsoft.Rest.ClientRuntime.Azure.dll', - '.\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll', - '.\Microsoft.WindowsAzure.Storage.dll', - '.\Microsoft.WindowsAzure.Storage.DataMovement.dll', - '.\Microsoft.Azure.PowerShell.Clients.Aks.dll', +RequiredAssemblies = '.\Microsoft.Azure.PowerShell.Authentication.Abstractions.dll', + '.\Microsoft.Azure.PowerShell.Authentication.dll', + '.\Microsoft.Azure.PowerShell.Authentication.ResourceManager.dll', + '.\Microsoft.Azure.PowerShell.Clients.Authorization.dll', + '.\Microsoft.Azure.PowerShell.Clients.Compute.dll', + '.\Microsoft.Azure.PowerShell.Clients.Graph.Rbac.dll', + '.\Microsoft.Azure.PowerShell.Clients.Network.dll', + '.\Microsoft.Azure.PowerShell.Clients.ResourceManager.dll', + '.\Microsoft.Azure.PowerShell.Common.dll', + '.\Microsoft.Azure.PowerShell.Storage.dll', + '.\Microsoft.Azure.PowerShell.Clients.Storage.Management.dll', + '.\Microsoft.Azure.PowerShell.Clients.KeyVault.dll', + '.\Microsoft.Azure.PowerShell.Clients.Websites.dll', + '.\Hyak.Common.dll', '.\Microsoft.ApplicationInsights.dll', + '.\Microsoft.Azure.Common.dll', + '.\Microsoft.Rest.ClientRuntime.dll', + '.\Microsoft.Rest.ClientRuntime.Azure.dll', + '.\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll', + '.\Microsoft.WindowsAzure.Storage.dll', + '.\Microsoft.WindowsAzure.Storage.DataMovement.dll', + '.\Microsoft.Azure.PowerShell.Clients.Aks.dll', '.\Microsoft.Azure.PowerShell.Strategies.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. @@ -95,24 +95,24 @@ NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll') FunctionsToExport = @() # 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 = 'Disable-AzDataCollection', 'Disable-AzContextAutosave', - 'Enable-AzDataCollection', 'Enable-AzContextAutosave', - 'Remove-AzEnvironment', 'Get-AzEnvironment', 'Set-AzEnvironment', - 'Add-AzEnvironment', 'Get-AzSubscription', 'Connect-AzAccount', - 'Get-AzContext', 'Set-AzContext', 'Import-AzContext', 'Save-AzContext', - 'Get-AzTenant', 'Send-Feedback', 'Resolve-AzError', 'Select-AzContext', - 'Rename-AzContext', 'Remove-AzContext', 'Clear-AzContext', - 'Disconnect-AzAccount', 'Get-AzContextAutosaveSetting', - 'Set-AzDefault', 'Get-AzDefault', 'Clear-AzDefault', - 'Register-AzModule', 'Enable-AzureRmAlias', 'Disable-AzureRmAlias', +CmdletsToExport = 'Disable-AzDataCollection', 'Disable-AzContextAutosave', + 'Enable-AzDataCollection', 'Enable-AzContextAutosave', + 'Remove-AzEnvironment', 'Get-AzEnvironment', 'Set-AzEnvironment', + 'Add-AzEnvironment', 'Get-AzSubscription', 'Connect-AzAccount', + 'Get-AzContext', 'Set-AzContext', 'Import-AzContext', 'Save-AzContext', + 'Get-AzTenant', 'Send-Feedback', 'Resolve-AzError', 'Select-AzContext', + 'Rename-AzContext', 'Remove-AzContext', 'Clear-AzContext', + 'Disconnect-AzAccount', 'Get-AzContextAutosaveSetting', + 'Set-AzDefault', 'Get-AzDefault', 'Clear-AzDefault', + 'Register-AzModule', 'Enable-AzureRmAlias', 'Disable-AzureRmAlias', 'Uninstall-AzureRm' # Variables to export from this module # VariablesToExport = @() # Aliases 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 aliases to export. -AliasesToExport = 'Add-AzAccount', 'Login-AzAccount', 'Remove-AzAccount', - 'Logout-AzAccount', 'Select-AzSubscription', 'Resolve-Error', +AliasesToExport = 'Add-AzAccount', 'Login-AzAccount', 'Remove-AzAccount', + 'Logout-AzAccount', 'Select-AzSubscription', 'Resolve-Error', 'Save-AzProfile', 'Get-AzDomain' # DSC resources to export from this module @@ -142,8 +142,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add ''Register-AzModule'' command to support AutoRest generated cmdlets -* Update examples for Connect-AzAccount' + ReleaseNotes = '* Updated Add-AzEnvironment and Set-AzEnvironment to accept parameter AzureAnalysisServicesEndpointResourceId' # Prerelease string of this module # Prerelease = '' diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md index 064c353daaa1..e7a44763b95c 100644 --- a/src/Accounts/Accounts/ChangeLog.md +++ b/src/Accounts/Accounts/ChangeLog.md @@ -18,7 +18,10 @@ - Additional information about change #1 --> ## Upcoming Release -* Bug fix for azure automation update management dynamic group +* Update Uninstall-AzureRm to correctly delete modules in Mac + +## Version 1.5.0 +* Updated Add-AzEnvironment and Set-AzEnvironment to accept parameter AzureAnalysisServicesEndpointResourceId ## Version 1.4.0 * Add 'Register-AzModule' command to support AutoRest generated cmdlets diff --git a/src/Accounts/Accounts/Environment/AddAzureRMEnvironment.cs b/src/Accounts/Accounts/Environment/AddAzureRMEnvironment.cs index 601ff35b790f..3633b968993e 100644 --- a/src/Accounts/Accounts/Environment/AddAzureRMEnvironment.cs +++ b/src/Accounts/Accounts/Environment/AddAzureRMEnvironment.cs @@ -163,6 +163,10 @@ public string DataLakeAudience HelpMessage = "The endpoint to use when communicating with the Azure Log Analytics API.")] public string AzureAnalysisServicesEndpointSuffix { get; set; } + [Parameter(Mandatory = false, + HelpMessage = "The resource identifier of the Azure Analysis Services resource.")] + public string AzureAnalysisServicesEndpointResourceId { get; set; } + protected override void BeginProcessing() { // do not call begin processing there is no context needed for this cmdlet @@ -310,6 +314,8 @@ public override void ExecuteCmdlet() nameof(AzureOperationalInsightsEndpoint)); SetEndpointIfBound(newEnvironment, AzureEnvironment.ExtendedEndpoint.AnalysisServicesEndpointSuffix, nameof(AzureAnalysisServicesEndpointSuffix)); + SetEndpointIfBound(newEnvironment, AzureEnvironment.ExtendedEndpoint.AnalysisServicesEndpointResourceId, + nameof(AzureAnalysisServicesEndpointResourceId)); WriteObject(new PSAzureEnvironment(profileClient.AddOrSetEnvironment(newEnvironment))); } }); diff --git a/src/Accounts/Accounts/Environment/SetAzureRMEnvironment.cs b/src/Accounts/Accounts/Environment/SetAzureRMEnvironment.cs index 14f373b794fa..842913d1a179 100644 --- a/src/Accounts/Accounts/Environment/SetAzureRMEnvironment.cs +++ b/src/Accounts/Accounts/Environment/SetAzureRMEnvironment.cs @@ -164,6 +164,10 @@ public string DataLakeAudience HelpMessage = "The endpoint to use when communicating with the Azure Log Analytics API.")] public string AzureAnalysisServicesEndpointSuffix { get; set; } + [Parameter(Mandatory = false, + HelpMessage = "The resource identifier of the Azure Analysis Services resource.")] + public string AzureAnalysisServicesEndpointResourceId { get; set; } + protected override void BeginProcessing() { // do not call begin processing there is no context needed for this cmdlet @@ -311,6 +315,8 @@ public override void ExecuteCmdlet() nameof(AzureOperationalInsightsEndpoint)); SetEndpointIfBound(newEnvironment, AzureEnvironment.ExtendedEndpoint.AnalysisServicesEndpointSuffix, nameof(AzureAnalysisServicesEndpointSuffix)); + SetEndpointIfBound(newEnvironment, AzureEnvironment.ExtendedEndpoint.AnalysisServicesEndpointResourceId, + nameof(AzureAnalysisServicesEndpointResourceId)); WriteObject(new PSAzureEnvironment(profileClient.AddOrSetEnvironment(newEnvironment))); } }); diff --git a/src/Accounts/Accounts/Properties/AssemblyInfo.cs b/src/Accounts/Accounts/Properties/AssemblyInfo.cs index 48bd5d3cbfa1..4666e25e414c 100644 --- a/src/Accounts/Accounts/Properties/AssemblyInfo.cs +++ b/src/Accounts/Accounts/Properties/AssemblyInfo.cs @@ -43,8 +43,8 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.4.0")] -[assembly: AssemblyFileVersion("1.4.0")] +[assembly: AssemblyVersion("1.5.0")] +[assembly: AssemblyFileVersion("1.5.0")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Accounts.Test")] #endif diff --git a/src/Accounts/Accounts/UninstallAzureRm/UninstallAzureRm.cs b/src/Accounts/Accounts/UninstallAzureRm/UninstallAzureRm.cs index 21193065b32f..675f73aae23e 100644 --- a/src/Accounts/Accounts/UninstallAzureRm/UninstallAzureRm.cs +++ b/src/Accounts/Accounts/UninstallAzureRm/UninstallAzureRm.cs @@ -39,7 +39,7 @@ public override void ExecuteCmdlet() var version = (this.SessionState.PSVariable.Get("PSVersionTable").Value as Hashtable)["PSVersion"]; if (Convert.ToInt64(version.ToString().Substring(0, 1)) >= 6) { - WriteWarning("Running this cmdlet in PowerShell Core will not remove the modules from PowerShell 5.1. " + + WriteWarning("Running this cmdlet in PowerShell Core will only remove the modules from PowerShell Core. " + "Please rerun this cmdlet in a PowerShell 5.1 session to remove the modules from PowerShell 5.1."); } } @@ -59,7 +59,7 @@ public override void ExecuteCmdlet() "AzureRM.Websites", "AzureRM.Websites.Experiments"}; IDataStore dataStore = AzureSession.Instance.DataStore; - var paths = Environment.GetEnvironmentVariable("PSModulePath").Split(';'); + var paths = Environment.GetEnvironmentVariable("PSModulePath").Split(Path.PathSeparator); foreach (var path in paths) { if (dataStore.DirectoryExists(path)) diff --git a/src/Accounts/Accounts/help/Add-AzEnvironment.md b/src/Accounts/Accounts/help/Add-AzEnvironment.md index 6b7c2169f2a5..27127f8039d7 100644 --- a/src/Accounts/Accounts/help/Add-AzEnvironment.md +++ b/src/Accounts/Accounts/help/Add-AzEnvironment.md @@ -25,8 +25,8 @@ Add-AzEnvironment [-Name] [[-PublishSettingsFileUrl] ] [[-Servi [[-AdTenant] ] [[-GraphAudience] ] [[-DataLakeAudience] ] [[-BatchEndpointResourceId] ] [[-AzureOperationalInsightsEndpointResourceId] ] [[-AzureOperationalInsightsEndpoint] ] [-AzureAnalysisServicesEndpointSuffix ] - [-Scope ] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-AzureAnalysisServicesEndpointResourceId ] [-Scope ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ARMEndpoint @@ -35,8 +35,9 @@ Add-AzEnvironment [-Name] [[-StorageEndpoint] ] [-ARMEndpoint] [[-AzureKeyVaultDnsSuffix] ] [[-AzureKeyVaultServiceEndpointResourceId] ] [[-DataLakeAudience] ] [[-BatchEndpointResourceId] ] [[-AzureOperationalInsightsEndpointResourceId] ] [[-AzureOperationalInsightsEndpoint] ] - [-AzureAnalysisServicesEndpointSuffix ] [-Scope ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-AzureAnalysisServicesEndpointSuffix ] [-AzureAnalysisServicesEndpointResourceId ] + [-Scope ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -155,6 +156,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -AzureAnalysisServicesEndpointResourceId +The resource identifier of the Azure Analysis Services resource. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -AzureAnalysisServicesEndpointSuffix The endpoint to use when communicating with the Azure Log Analytics API. diff --git a/src/Accounts/Accounts/help/Connect-AzAccount.md b/src/Accounts/Accounts/help/Connect-AzAccount.md index aa02079cf184..c1484540596a 100644 --- a/src/Accounts/Accounts/help/Connect-AzAccount.md +++ b/src/Accounts/Accounts/help/Connect-AzAccount.md @@ -111,7 +111,7 @@ The first command gets the service principal credentials (application id and ser The second command connect to Azure using the service principal credentials stored in $Credential for the specified Tenant. The ServicePrincipal switch parameter indicates that the account authenticates as a service principal. -### Example 3: Use an interactive login to connect to an account for a specific tenant and subscription +### Example 4: Use an interactive login to connect to an account for a specific tenant and subscription ```powershell PS C:\> Connect-AzAccount -Tenant "xxxx-xxxx-xxxx-xxxx" -SubscriptionId "yyyy-yyyy-yyyy-yyyy" @@ -122,7 +122,7 @@ azureuser@contoso.com Subscription1 xxxx-xxxx-xxxx-xxxx AzureCloud This command connects to an Azure account and configured AzureRM PowerShell to run cmdlets for the specified tenant and subscription by default. -### Example 4: Add an Account Using Managed Service Identity Login +### Example 5: Add an Account Using Managed Service Identity Login ```powershell PS C:\> Connect-AzAccount -Identity @@ -134,7 +134,7 @@ MSI@50342 Subscription1 xxxx-xxxx-xxxx-xxxx AzureCloud This command connects using the managed service identity of the host environment (for example, if executed on a VirtualMachine with an assigned Managed Service Identity, this will allow the code to login using that assigned identity) -### Example 5: Add an Account Using Managed Service Identity Login and ClientId +### Example 6: Add an Account Using Managed Service Identity Login and ClientId ```powershell PS C:\> $identity = Get-AzUserAssignedIdentity -ResourceGroupName "myResourceGroup" -Name "myUserAssignedIdentity" PS C:\> Get-AzVM -ResourceGroupName contoso -Name testvm | Update-AzVM -IdentityType UserAssigned -IdentityId $identity.Id @@ -148,7 +148,7 @@ yyyy-yyyy-yyyy-yyyy Subscription1 xxxx-xxxx-xxxx-xxxx AzureCloud This command connects using the managed service identity of "myUserAssignedIdentity" by adding the User Assigned Identity to the Virtual Machine, then connecting using the ClientId of the User Assigned Identity. More information about configuring Managed Identities can be found here: https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/qs-configure-powershell-windows-vm. -### Example 6: Add an Account Using Managed Service Identity Login and ClientId +### Example 7: Add an Account Using Managed Service Identity Login and ClientId ```powershell PS C:\> $identity = Get-AzUserAssignedIdentity -ResourceGroupName "myResourceGroup" -Name "myUserAssignedIdentity" PS C:\> Get-AzVM -ResourceGroupName contoso -Name testvm | Update-AzVM -IdentityType UserAssigned -IdentityId $identity.Id @@ -162,7 +162,7 @@ yyyy-yyyy-yyyy-yyyy Subscription1 xxxx-xxxx-xxxx-xxxx AzureCloud This command connects using the managed service identity of "myUserAssignedIdentity" by adding the User Assigned Identity to the Virtual Machine, then connecting using the Id of the User Assigned Identity. More information about configuring Managed Identities can be found here: https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/qs-configure-powershell-windows-vm. -### Example 7: Add an account using certificates +### Example 8: Add an account using certificates ```powershell # For more information on creating a self-signed certificate # and giving it proper permissions, please see the following: @@ -185,7 +185,7 @@ Environment : AzureCloud This command connects to an Azure account using certificate-based service principal authentication. The service principal used for authentication should have been created with the given certificate. -### Example 8: Add an account using AccessToken authentication +### Example 9: Add an account using AccessToken authentication ```powershell PS C:\> $url = "https://login.windows.net//oauth2/token" PS C:\> $body = "grant_type=refresh_token&refresh_token=" # Refresh token obtained from ~/.azure/TokenCache.dat diff --git a/src/Accounts/Accounts/help/Set-AzEnvironment.md b/src/Accounts/Accounts/help/Set-AzEnvironment.md index 9c285e9235ca..7ca8a3bea84b 100644 --- a/src/Accounts/Accounts/help/Set-AzEnvironment.md +++ b/src/Accounts/Accounts/help/Set-AzEnvironment.md @@ -25,8 +25,8 @@ Set-AzEnvironment [-Name] [[-PublishSettingsFileUrl] ] [[-Servi [[-AdTenant] ] [[-GraphAudience] ] [[-DataLakeAudience] ] [[-BatchEndpointResourceId] ] [[-AzureOperationalInsightsEndpointResourceId] ] [[-AzureOperationalInsightsEndpoint] ] [-AzureAnalysisServicesEndpointSuffix ] - [-Scope ] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-AzureAnalysisServicesEndpointResourceId ] [-Scope ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ARMEndpoint @@ -35,8 +35,9 @@ Set-AzEnvironment [-Name] [[-StorageEndpoint] ] [-ARMEndpoint] [[-AzureKeyVaultDnsSuffix] ] [[-AzureKeyVaultServiceEndpointResourceId] ] [[-DataLakeAudience] ] [[-BatchEndpointResourceId] ] [[-AzureOperationalInsightsEndpointResourceId] ] [[-AzureOperationalInsightsEndpoint] ] - [-AzureAnalysisServicesEndpointSuffix ] [-Scope ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-AzureAnalysisServicesEndpointSuffix ] [-AzureAnalysisServicesEndpointResourceId ] + [-Scope ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -149,6 +150,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -AzureAnalysisServicesEndpointResourceId +The resource identifier of the Azure Analysis Services resource. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -AzureAnalysisServicesEndpointSuffix The endpoint to use when communicating with the Azure Log Analytics API. diff --git a/src/Advisor/Advisor/Az.Advisor.psd1 b/src/Advisor/Advisor/Az.Advisor.psd1 index 0987795ff84a..3b2b51664461 100644 --- a/src/Advisor/Advisor/Az.Advisor.psd1 +++ b/src/Advisor/Advisor/Az.Advisor.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Advisor.dll' diff --git a/src/Aks/Aks/Az.Aks.psd1 b/src/Aks/Aks/Az.Aks.psd1 index 317d300fa972..c38b1d4cc1c7 100644 --- a/src/Aks/Aks/Az.Aks.psd1 +++ b/src/Aks/Aks/Az.Aks.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\YamlDotNet.dll', '.\AutoMapper.dll' diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Commands/AddAzureASAccount.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Commands/AddAzureASAccount.cs index 19e74d159f15..e879ca941f4e 100644 --- a/src/AnalysisServices/AnalysisServices.Dataplane/Commands/AddAzureASAccount.cs +++ b/src/AnalysisServices/AnalysisServices.Dataplane/Commands/AddAzureASAccount.cs @@ -12,18 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Commands.Common.Authentication; -using Microsoft.Azure.Commands.Common.Authentication.Models; -using System.IO; using System.Management.Automation; -using System.Reflection; -using System.Security; using Microsoft.Azure.Commands.AnalysisServices.Dataplane.Properties; -using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.Azure.Commands.Common.Authentication.Abstractions; -using Microsoft.WindowsAzure.Commands.Common; -using System; using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; +using Microsoft.WindowsAzure.Commands.Utilities.Common; namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane { @@ -40,6 +33,7 @@ public class AddAzureASAccountCommand : AzurePSCmdlet private const string ServicePrincipalWithPasswordParameterSet = "ServicePrincipalWithPasswordParameterSetName"; private const string ServicePrincipalWithCertificateParameterSet = "ServicePrincipalWithCertificateParameterSetName"; + // This is ignored since we only support public cloud [Parameter(ParameterSetName = UserParameterSet, Mandatory = false, HelpMessage = "Name of the Azure Analysis Services environment to which to logon to", Position = 0)] [Parameter(ParameterSetName = ServicePrincipalWithPasswordParameterSet, @@ -77,8 +71,6 @@ public class AddAzureASAccountCommand : AzurePSCmdlet [ValidateNotNullOrEmpty] public string CertificateThumbprint { get; set; } - protected AsAzureEnvironment AsEnvironment; - protected override IAzureContext DefaultContext { get @@ -96,106 +88,42 @@ protected override string DataCollectionWarning } } - protected override void BeginProcessing() + public override void ExecuteCmdlet() { - this._dataCollectionProfile = new AzurePSDataCollectionProfile(false); + System.Management.Automation.PowerShell ps = System.Management.Automation.PowerShell.Create(); + ps.AddCommand("Connect-AzAccount"); - if (string.IsNullOrEmpty(RolloutEnvironment)) + if (MyInvocation.BoundParameters.ContainsKey(nameof(Credential))) { - RolloutEnvironment = AsAzureClientSession.GetDefaultEnvironmentName(); + ps.AddParameter("Credential", Credential); } - if (AsAzureClientSession.Instance.Profile.Environments.ContainsKey(RolloutEnvironment)) + if (MyInvocation.BoundParameters.ContainsKey(nameof(ServicePrincipal))) { - AsEnvironment = (AsAzureEnvironment)AsAzureClientSession.Instance.Profile.Environments[RolloutEnvironment]; + ps.AddParameter("ServicePrincipal", ServicePrincipal); } - else - { - AsEnvironment = AsAzureClientSession.Instance.Profile.CreateEnvironment(RolloutEnvironment); - } - base.BeginProcessing(); - } - - protected override void InitializeQosEvent() - { - // nothing to do here. - } - - protected override void SetupDebuggingTraces() - { - // nothing to do here. - } - - protected override void TearDownDebuggingTraces() - { - // nothing to do here. - } - - protected override void SetupHttpClientPipeline() - { - // nothing to do here. - } - - protected override void TearDownHttpClientPipeline() - { - // nothing to do here. - } - - public override void ExecuteCmdlet() - { - var azureAccount = new AsAzureAccount - { - Type = ServicePrincipal ? AsAzureAccount.AccountType.ServicePrincipal : AsAzureAccount.AccountType.User - }; - SecureString password = null; - if (Credential != null) + if (MyInvocation.BoundParameters.ContainsKey(nameof(TenantId))) { - azureAccount.Id = Credential.UserName; - password = Credential.Password; + ps.AddParameter("Tenant", TenantId); } - if (ServicePrincipal) + if (MyInvocation.BoundParameters.ContainsKey(nameof(ApplicationId))) { - azureAccount.Tenant = TenantId; - - if (!string.IsNullOrEmpty(ApplicationId)) - { - azureAccount.Id = ApplicationId; - } - if (!string.IsNullOrEmpty(CertificateThumbprint)) - { - azureAccount.CertificateThumbprint = CertificateThumbprint; - } + ps.AddParameter("ApplicationId", ApplicationId); } - if (ShouldProcess(string.Format(Resources.LoginTarget, AsEnvironment.Name), "log in")) + if (MyInvocation.BoundParameters.ContainsKey(nameof(CertificateThumbprint))) { - var currentProfile = AsAzureClientSession.Instance.Profile; - var currentContext = currentProfile.Context; - - // If there is no current context create one. If there is one already then - // if the current credentials (userid) match the one that is already in context then use it. - // if either the userid that is logging in or the environment to which login is happening is - // different than the one in the context then clear the current context and proceed to login. - // At any given point in time, we should only have one context i.e. one user logged in to one - // environment. - if (currentContext == null || Credential == null || - string.IsNullOrEmpty(currentContext.Account.Id) || - !currentContext.Account.Id.Equals(Credential.UserName) || - !RolloutEnvironment.Equals(currentContext.Environment.Name)) - { - AsAzureClientSession.Instance.SetCurrentContext(azureAccount, AsEnvironment); - } -// TODO: Remove IfDef -#if NETSTANDARD - var asAzureProfile = AsAzureClientSession.Instance.Login(currentProfile.Context, password, WriteWarning); -#else - var asAzureProfile = AsAzureClientSession.Instance.Login(currentProfile.Context, password); -#endif - - WriteObject(asAzureProfile); + ps.AddParameter("CertificateThumbprint", CertificateThumbprint); } + + ps.Invoke(); + } + + protected override void InitializeQosEvent() + { + // No data collection for this cmdlet } } } diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Commands/Export-AzureAsInstanceLog.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Commands/Export-AzureAsInstanceLog.cs index 3366cb2385aa..54edeb0868ff 100644 --- a/src/AnalysisServices/AnalysisServices.Dataplane/Commands/Export-AzureAsInstanceLog.cs +++ b/src/AnalysisServices/AnalysisServices.Dataplane/Commands/Export-AzureAsInstanceLog.cs @@ -12,34 +12,23 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; using System.Globalization; using System.Management.Automation; -using System.Net.Http; -using System.Net.Http.Headers; using Microsoft.Azure.Commands.Common.Authentication; using Microsoft.Azure.Commands.AnalysisServices.Dataplane.Models; using Microsoft.Azure.Commands.AnalysisServices.Dataplane.Properties; -using Microsoft.Azure.Commands.Common.Authentication.Abstractions; using Microsoft.WindowsAzure.Commands.Utilities.Common; -using Newtonsoft.Json.Linq; namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane { /// - /// Cmdlet to export an Analysis Services server log to file + /// Cmdlet to export an Analysis Services server log to file. /// - [Cmdlet("Export", ResourceManager.Common.AzureRMConstants.AzurePrefix + "AnalysisServicesInstanceLog", SupportsShouldProcess=true)] + [Cmdlet("Export", ResourceManager.Common.AzureRMConstants.AzurePrefix + "AnalysisServicesInstanceLog", SupportsShouldProcess = true)] [Alias("Export-AzureAsInstanceLog", "Export-AzAsInstanceLog")] [OutputType(typeof(void))] - public class ExportAzureAnalysisServerLog : AzurePSCmdlet + public class ExportAzureAnalysisServerLog : AsAzureDataplaneCmdletBase { - private string _serverName; - - [Parameter(Mandatory = true, HelpMessage = "Name of the Azure Analysis Services which log will be fetched")] - [ValidateNotNullOrEmpty] - public string Instance { get; set; } - [Parameter(Mandatory = true, HelpMessage = "Path to file to write Azure Analysis Services log")] [ValidateNotNullOrEmpty] public string OutputPath { get; set; } @@ -48,143 +37,26 @@ public class ExportAzureAnalysisServerLog : AzurePSCmdlet [ValidateNotNullOrEmpty] public SwitchParameter Force { get; set; } - public IAsAzureHttpClient AsAzureHttpClient { get; private set; } - - public ITokenCacheItemProvider TokenCacheItemProvider { get; private set; } - - public ExportAzureAnalysisServerLog() - { - AsAzureHttpClient = new AsAzureHttpClient(() => new HttpClient()); - TokenCacheItemProvider = new TokenCacheItemProvider(); - } - - public ExportAzureAnalysisServerLog(IAsAzureHttpClient asAzureHttpClient, ITokenCacheItemProvider tokenCacheItemProvider) - { - AsAzureHttpClient = asAzureHttpClient; - TokenCacheItemProvider = tokenCacheItemProvider; - } - - protected override IAzureContext DefaultContext - { - get - { - // Nothing to do with Azure Resource Management context - return null; - } - } - - protected override string DataCollectionWarning - { - get - { - return Resources.ARMDataCollectionMessage; - } - } - - protected override void BeginProcessing() + /// + public override void ExecuteCmdlet() { - base.BeginProcessing(); - - if (AsAzureClientSession.Instance.Profile.Environments.Count == 0) + if (!ShouldProcess(Instance, Resources.ExportingLogFromAnalysisServicesServer)) { - throw new PSInvalidOperationException(string.Format(Resources.NotLoggedInMessage, "")); + return; } - _serverName = Instance; - Uri uriResult; + var logfileEndpoint = string.Format(AsAzureEndpoints.LogfileEndpointPathFormat, ServerName); - // if the user specifies the FQN of the server, then extract the server name out of that. - // and set the current context - if (Uri.TryCreate(Instance, UriKind.Absolute, out uriResult) && uriResult.Scheme == "asazure") + AsAzureDataplaneClient.ResetHttpClient(); + using (var message = AsAzureDataplaneClient.CallGetAsync(logfileEndpoint).ConfigureAwait(false).GetAwaiter().GetResult()) { - _serverName = uriResult.PathAndQuery.Trim('/'); - if (string.Compare(AsAzureClientSession.Instance.Profile.Context.Environment.Name, uriResult.DnsSafeHost, StringComparison.InvariantCultureIgnoreCase) != 0) - { - AsAzureClientSession.Instance.SetCurrentContext( - new AsAzureAccount(), - AsAzureClientSession.Instance.Profile.CreateEnvironment(uriResult.DnsSafeHost)); - } - } - else - { - var currentContext = AsAzureClientSession.Instance.Profile.Context; - if (currentContext != null - && AsAzureClientSession.AsAzureRolloutEnvironmentMapping.ContainsKey(currentContext.Environment.Name)) - { - throw new PSInvalidOperationException(string.Format(Resources.InvalidServerName, _serverName)); - } - } - - if (AsAzureHttpClient == null) - { - AsAzureHttpClient = new AsAzureHttpClient(() => new HttpClient()); - } - - if (TokenCacheItemProvider == null) - { - TokenCacheItemProvider = new TokenCacheItemProvider(); - } - } - - protected override void InitializeQosEvent() - { - // nothing to do here. - } - - public override void ExecuteCmdlet() - { - if (ShouldProcess(Instance, Resources.ExportingLogFromAnalysisServicesServer)) - { - var context = AsAzureClientSession.Instance.Profile.Context; - AsAzureClientSession.Instance.Login(context, null); - - var accessToken = TokenCacheItemProvider.GetTokenFromTokenCache( - AsAzureClientSession.TokenCache, context.Account.UniqueId); - - var logfileBaseUri = new Uri($"{Uri.UriSchemeHttps}{Uri.SchemeDelimiter}{context.Environment.Name}"); - - var resolvedUriBuilder = new UriBuilder(logfileBaseUri) - { - Host = ClusterResolve(logfileBaseUri, accessToken, _serverName) - }; - - var logfileEndpoint = string.Format( - (string) context.Environment.Endpoints[AsAzureEnvironment.AsRolloutEndpoints.LogfileEndpointFormat], - _serverName); - - AsAzureHttpClient.resetHttpClient(); - using (var message = AsAzureHttpClient.CallGetAsync( - resolvedUriBuilder.Uri, - logfileEndpoint, - accessToken).ConfigureAwait(false).GetAwaiter().GetResult()) + message.EnsureSuccessStatusCode(); + var actionWarning = string.Format(CultureInfo.CurrentCulture, Resources.ExportingLogOverwriteWarning, OutputPath); + if (AzureSession.Instance.DataStore.FileExists(OutputPath) && !Force.IsPresent && !ShouldContinue(actionWarning, Resources.Confirm)) { - message.EnsureSuccessStatusCode(); - var actionWarning = string.Format(CultureInfo.CurrentCulture, Resources.ExportingLogOverwriteWarning, OutputPath); - if (AzureSession.Instance.DataStore.FileExists(OutputPath) && !Force.IsPresent && !ShouldContinue(actionWarning, Resources.Confirm)) - { - return; - } - AzureSession.Instance.DataStore.WriteFile(OutputPath, message.Content.ReadAsStringAsync().Result); + return; } - } - } - - private string ClusterResolve(Uri clusterUri, string accessToken, string serverName) - { - const string resolveEndpoint = "/webapi/clusterResolve"; - var content = new StringContent($"ServerName={serverName}"); - content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/x-www-form-urlencoded"); - - using (var message = AsAzureHttpClient.CallPostAsync( - clusterUri, - resolveEndpoint, - accessToken, - content).Result) - { - message.EnsureSuccessStatusCode(); - var rawResult = message.Content.ReadAsStringAsync().Result; - var jsonResult = JObject.Parse(rawResult); - return jsonResult["clusterFQDN"].ToString(); + AzureSession.Instance.DataStore.WriteFile(OutputPath, message.Content.ReadAsStringAsync().Result); } } } diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Commands/Restart-AzureAsInstance.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Commands/Restart-AzureAsInstance.cs index 42173b9a7df4..c3a1d251f631 100644 --- a/src/AnalysisServices/AnalysisServices.Dataplane/Commands/Restart-AzureAsInstance.cs +++ b/src/AnalysisServices/AnalysisServices.Dataplane/Commands/Restart-AzureAsInstance.cs @@ -12,140 +12,37 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; using System.Management.Automation; -using System.Net.Http; using Microsoft.Azure.Commands.AnalysisServices.Dataplane.Models; using Microsoft.Azure.Commands.AnalysisServices.Dataplane.Properties; using Microsoft.WindowsAzure.Commands.Utilities.Common; -using Microsoft.Azure.Commands.Common.Authentication.Abstractions; namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane { /// - /// Cmdlet to log into an Analysis Services environment + /// Cmdlet to restart an Analysis Services server instance. /// - [Cmdlet("Restart", ResourceManager.Common.AzureRMConstants.AzurePrefix + "AnalysisServicesInstance", SupportsShouldProcess=true)] + [Cmdlet("Restart", ResourceManager.Common.AzureRMConstants.AzurePrefix + "AnalysisServicesInstance", SupportsShouldProcess = true)] [Alias("Restart-AzureAsInstance", "Restart-AzAsInstance")] [OutputType(typeof(bool))] - public class RestartAzureAnalysisServer : AzurePSCmdlet + public class RestartAzureAnalysisServer : AsAzureDataplaneCmdletBase { - private string _serverName; - - [Parameter(Mandatory = true, HelpMessage = "Name of the Azure Analysis Services server to restart")] - [ValidateNotNullOrEmpty] - public string Instance { get; set; } - - [Parameter(Mandatory = false)] - public SwitchParameter PassThru { get; set; } - - public IAsAzureHttpClient AsAzureHttpClient { get; private set; } - - public ITokenCacheItemProvider TokenCacheItemProvider { get; private set; } - - public RestartAzureAnalysisServer() - { - AsAzureHttpClient = new AsAzureHttpClient(() => new HttpClient()); - TokenCacheItemProvider = new TokenCacheItemProvider(); - - } - - public RestartAzureAnalysisServer(IAsAzureHttpClient asAzureHttpClient, ITokenCacheItemProvider tokenCacheItemProvider) - { - AsAzureHttpClient = asAzureHttpClient; - TokenCacheItemProvider = tokenCacheItemProvider; - } - - protected override IAzureContext DefaultContext - { - get - { - // Nothing to do with Azure Resource Management context - return null; - } - } - - protected override string DataCollectionWarning - { - get - { - return Resources.ARMDataCollectionMessage; - } - } - - protected override void BeginProcessing() + /// + public override void ExecuteCmdlet() { - base.BeginProcessing(); - - if (AsAzureClientSession.Instance.Profile.Environments.Count == 0) + if (!ShouldProcess(Instance, Resources.RestartingAnalysisServicesServer)) { - throw new PSInvalidOperationException(string.Format(Resources.NotLoggedInMessage, "")); + return; } - _serverName = Instance; - Uri uriResult; + var restartEndpoint = string.Format(AsAzureEndpoints.RestartEndpointPathFormat, ServerName); - // if the user specifies the FQN of the server, then extract the server name out of that. - // and set the current context - if (Uri.TryCreate(Instance, UriKind.Absolute, out uriResult) && uriResult.Scheme == "asazure") + using (var message = AsAzureDataplaneClient.CallPostAsync(restartEndpoint).Result) { - _serverName = uriResult.PathAndQuery.Trim('/'); - if (string.Compare(AsAzureClientSession.Instance.Profile.Context.Environment.Name, uriResult.DnsSafeHost, StringComparison.InvariantCultureIgnoreCase) != 0) - { - AsAzureClientSession.Instance.SetCurrentContext( - new AsAzureAccount(), - AsAzureClientSession.Instance.Profile.CreateEnvironment(uriResult.DnsSafeHost)); - } - } - else - { - var currentContext = AsAzureClientSession.Instance.Profile.Context; - if (currentContext != null - && AsAzureClientSession.AsAzureRolloutEnvironmentMapping.ContainsKey(currentContext.Environment.Name)) - { - throw new PSInvalidOperationException(string.Format(Resources.InvalidServerName, _serverName)); - } - } - - if (AsAzureHttpClient == null) - { - AsAzureHttpClient = new AsAzureHttpClient(() => new HttpClient()); - } - - if (TokenCacheItemProvider == null) - { - TokenCacheItemProvider = new TokenCacheItemProvider(); - } - } - - protected override void InitializeQosEvent() - { - // nothing to do here. - } - - public override void ExecuteCmdlet() - { - if (ShouldProcess(Instance, Resources.RestartingAnalysisServicesServer)) - { - var context = AsAzureClientSession.Instance.Profile.Context; - AsAzureClientSession.Instance.Login(context, null); - - var accessToken = TokenCacheItemProvider.GetTokenFromTokenCache(AsAzureClientSession.TokenCache, context.Account.UniqueId); - - var restartBaseUri = new Uri($"{Uri.UriSchemeHttps}{Uri.SchemeDelimiter}{context.Environment.Name}"); - - var restartEndpoint = string.Format((string)context.Environment.Endpoints[AsAzureEnvironment.AsRolloutEndpoints.RestartEndpointFormat], _serverName); - - using (var message = AsAzureHttpClient.CallPostAsync( - restartBaseUri, - restartEndpoint, - accessToken).Result) + message.EnsureSuccessStatusCode(); + if (PassThru.IsPresent) { - message.EnsureSuccessStatusCode(); - if (PassThru.IsPresent) - { - WriteObject(true); - } + WriteObject(true); } } } diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Commands/Synchronize-AzureASInstance.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Commands/Synchronize-AzureASInstance.cs index 3ffc0911a8ba..1aaf2247a64d 100644 --- a/src/AnalysisServices/AnalysisServices.Dataplane/Commands/Synchronize-AzureASInstance.cs +++ b/src/AnalysisServices/AnalysisServices.Dataplane/Commands/Synchronize-AzureASInstance.cs @@ -13,59 +13,34 @@ // ---------------------------------------------------------------------------------- using System; -using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Management.Automation; using System.Net; using System.Net.Http; using System.Net.Http.Headers; -using System.Text; using System.Threading.Tasks; using Microsoft.Azure.Commands.AnalysisServices.Dataplane.Models; using Microsoft.Azure.Commands.AnalysisServices.Dataplane.Properties; using Microsoft.Azure.Commands.Common.Authentication.Abstractions; -using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Newtonsoft.Json; -using Newtonsoft.Json.Linq; namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane { /// - /// Cmdlet to log into an Analysis Services environment + /// Cmdlet to sync Analysis Services server databases. /// [Cmdlet("Sync", ResourceManager.Common.AzureRMConstants.AzurePrefix + "AnalysisServicesInstance", SupportsShouldProcess = true)] [Alias("Sync-AzureAsInstance", "Sync-AzAsInstance")] [OutputType(typeof(ScaleOutServerDatabaseSyncDetails))] - public class SynchronizeAzureAzureAnalysisServer : AzurePSCmdlet + public class SynchronizeAzureAzureAnalysisServer : AsAzureDataplaneCmdletBase { - private static TimeSpan DefaultPollingInterval = TimeSpan.FromSeconds(30); - + /// + /// Default time interval to wait between polls for sync status. + /// public static TimeSpan DefaultRetryIntervalForPolling = TimeSpan.FromSeconds(10); - private static string RootActivityIdHeaderName = "x-ms-root-activity-id"; - - private static string CurrentUtcDateHeaderName = "x-ms-current-utc-date"; - - private string serverName; - - private ClusterResolutionResult clusterResolveResult; - - private Guid correlationId; - - private string syncRequestRootActivityId; - - private string syncRequestTimeStamp; - - [Parameter( - Mandatory = true, - HelpMessage = "Name of the Azure Analysis Services server to synchronize. E.x. asazure://westus.asazure.windows.net/contososerver:rw", - Position = 0, - ValueFromPipeline = true)] - [ValidateNotNullOrEmpty] - public string Instance { get; set; } - [Parameter( Mandatory = true, HelpMessage = "Identity of the database need to be synchronized", @@ -74,261 +49,161 @@ public class SynchronizeAzureAzureAnalysisServer : AzurePSCmdlet [ValidateNotNullOrEmpty] public string Database { get; set; } - [Parameter(Mandatory = false)] - public SwitchParameter PassThru { get; set; } - - protected override IAzureContext DefaultContext - { - get - { - // Nothing to do with Azure Resource Management context - return null; - } - } - - public IAsAzureHttpClient AsAzureHttpClient { get; private set; } - - public ITokenCacheItemProvider TokenCacheItemProvider { get; private set; } - - public SynchronizeAzureAzureAnalysisServer() - { - this.AsAzureHttpClient = new AsAzureHttpClient(() => - { - HttpClientHandler httpClientHandler = new HttpClientHandler(); - httpClientHandler.AllowAutoRedirect = false; - return new HttpClient(httpClientHandler); - }); - - this.TokenCacheItemProvider = new TokenCacheItemProvider(); - this.syncRequestRootActivityId = string.Empty; - this.correlationId = Guid.Empty; - this.syncRequestTimeStamp = string.Empty; - } - - public SynchronizeAzureAzureAnalysisServer(IAsAzureHttpClient AsAzureHttpClient, ITokenCacheItemProvider TokenCacheItemProvider) - { - this.AsAzureHttpClient = AsAzureHttpClient; - this.TokenCacheItemProvider = TokenCacheItemProvider; - } + /// + /// Default time interval to wait before first poll for sync status. + /// + private static readonly TimeSpan DefaultPollingInterval = TimeSpan.FromSeconds(30); - protected override void SetupDebuggingTraces() - { - // nothing to do here. - } + /// + /// Http Header name for root activity id. + /// + private readonly string RootActivityIdHeaderName = "x-ms-root-activity-id"; - protected override void TearDownDebuggingTraces() - { - // nothing to do here. - } + /// + /// Http Header name for current UTC date and time. + /// + private readonly string CurrentUtcDateHeaderName = "x-ms-current-utc-date"; - protected override void SetupHttpClientPipeline() - { - // nothing to do here. - } + /// + /// Correlation ID for http requests. + /// + private Guid correlationId = Guid.Empty; - protected override void TearDownHttpClientPipeline() - { - // nothing to do here. - } + /// + /// The root activity id for this sync activity. + /// + private string syncRequestRootActivityId = string.Empty; + /// + /// Time stamp for the sync request. + /// + private string syncRequestTimeStamp = string.Empty; + /// public override void ExecuteCmdlet() { - if (ShouldProcess(Instance, Resources.SynchronizingAnalysisServicesServer)) + if (!ShouldProcess(Instance, Resources.SynchronizingAnalysisServicesServer)) { - correlationId = Guid.NewGuid(); - WriteObject(string.Format("Sending sync request for database '{0}' to server '{1}'. Correlation Id: '{2}'.", Database, Instance, correlationId.ToString())); - var context = AsAzureClientSession.Instance.Profile.Context; - AsAzureClientSession.Instance.Login(context); - WriteProgress(new ProgressRecord(0, "Sync-AzAnalysisServicesInstance.", string.Format("Authenticating user for '{0}' environment.", context.Environment.Name))); - var clusterResolveResult = ClusterResolve(context, serverName); - var virtualServerName = clusterResolveResult.CoreServerName.Split(":".ToCharArray())[0]; - if (!serverName.Equals(virtualServerName) && !clusterResolveResult.CoreServerName.EndsWith(":rw")) - { - throw new SynchronizationFailedException("Sync request can only be sent to the management endpoint"); - } - - this.clusterResolveResult = clusterResolveResult; - Uri clusterBaseUri = new Uri(string.Format("{0}{1}{2}", Uri.UriSchemeHttps, Uri.SchemeDelimiter, clusterResolveResult.ClusterFQDN)); - var accessToken = this.TokenCacheItemProvider.GetTokenFromTokenCache(AsAzureClientSession.TokenCache, context.Account.UniqueId, context.Environment.Name); - - ScaleOutServerDatabaseSyncDetails syncResult = null; - try - { - WriteProgress(new ProgressRecord(0, "Sync-AzAnalysisServicesInstance.", string.Format("Successfully authenticated for '{0}' environment.", context.Environment.Name))); - syncResult = SynchronizeDatabaseAsync(context, clusterBaseUri, Database, accessToken).GetAwaiter().GetResult(); - } - catch (AggregateException aex) - { - foreach (var innerException in aex.Flatten().InnerExceptions) - { - WriteExceptionError(innerException); - } - } - catch (Exception ex) - { - WriteExceptionError(ex); - } - - if (syncResult == null) - { - throw new SynchronizationFailedException(string.Format(Resources.SyncASPollStatusUnknownMessage.FormatInvariant( - this.clusterResolveResult.CoreServerName, - correlationId, - DateTime.Now.ToString(CultureInfo.InvariantCulture), - string.Format("RootActivityId: {0}, Date Time UTC: {1}", syncRequestRootActivityId, syncRequestTimeStamp)))); - } - - if (syncResult.SyncState != DatabaseSyncState.Completed) - { - var serializedDetails = JsonConvert.SerializeObject(syncResult); - throw new SynchronizationFailedException(serializedDetails); - } - - if (PassThru.IsPresent) - { - WriteObject(syncResult, true); - } + return; } - } - protected override void BeginProcessing() - { - this._dataCollectionProfile = new AzurePSDataCollectionProfile(false); + WriteProgress(new ProgressRecord(0, "Sync-AzAnalysisServicesInstance.", string.Format("Successfully authenticated for '{0}' environment.", DnsSafeHost))); + correlationId = Guid.NewGuid(); + Uri clusterBaseUri = new Uri(string.Format("{0}{1}{2}", Uri.UriSchemeHttps, Uri.SchemeDelimiter, DnsSafeHost)); + ScaleOutServerDatabaseSyncDetails syncResult = null; - if (AsAzureClientSession.Instance.Profile.Environments.Count == 0) + try { - throw new PSInvalidOperationException(string.Format(Resources.NotLoggedInMessage, "")); + WriteObject(string.Format("Sending sync request for database '{0}' to server '{1}'. Correlation Id: '{2}'.", Database, Instance, correlationId.ToString())); + syncResult = SynchronizeDatabaseAsync(clusterBaseUri, Database).GetAwaiter().GetResult(); } - - serverName = Instance; - Uri uriResult; - - // if the user specifies the FQN of the server, then extract the servername out of that. - // and set the current context - if (Uri.TryCreate(Instance, UriKind.Absolute, out uriResult) && uriResult.Scheme == "asazure") + catch (AggregateException aex) { - serverName = uriResult.PathAndQuery.Trim('/'); - if (string.Compare(AsAzureClientSession.Instance.Profile.Context.Environment.Name, uriResult.DnsSafeHost, StringComparison.InvariantCultureIgnoreCase) != 0) + foreach (var innerException in aex.Flatten().InnerExceptions) { - throw new PSInvalidOperationException(string.Format(Resources.NotLoggedInMessage, Instance)); + WriteExceptionError(innerException); } } - else + catch (Exception ex) { - var currentContext = AsAzureClientSession.Instance.Profile.Context; - if (currentContext != null - && AsAzureClientSession.AsAzureRolloutEnvironmentMapping.ContainsKey(currentContext.Environment.Name)) - { - throw new PSInvalidOperationException(string.Format(Resources.InvalidServerName, serverName)); - } + WriteExceptionError(ex); } - if (this.AsAzureHttpClient == null) + if (syncResult == null) { - this.AsAzureHttpClient = new AsAzureHttpClient(() => - { - HttpClientHandler httpClientHandler = new HttpClientHandler(); - httpClientHandler.AllowAutoRedirect = false; - return new HttpClient(); - }); + throw new SynchronizationFailedException(string.Format(Resources.SyncASPollStatusUnknownMessage.FormatInvariant( + ServerName, + correlationId, + DateTime.Now.ToString(CultureInfo.InvariantCulture), + string.Format("RootActivityId: {0}, Date Time UTC: {1}", syncRequestRootActivityId, syncRequestTimeStamp)))); } - if (this.TokenCacheItemProvider == null) + if (syncResult.SyncState != DatabaseSyncState.Completed) { - this.TokenCacheItemProvider = new TokenCacheItemProvider(); + var serializedDetails = JsonConvert.SerializeObject(syncResult); + throw new SynchronizationFailedException(serializedDetails); } + if (PassThru.IsPresent) + { + WriteObject(syncResult, true); + } + } + + /// + protected override void BeginProcessing() + { + this._dataCollectionProfile = new AzurePSDataCollectionProfile(false); base.BeginProcessing(); } - protected override void InitializeQosEvent() + /// + protected override void SetupDebuggingTraces() { - // No data collection for this commandlet + // nothing to do here. } - protected override string DataCollectionWarning + /// + protected override void TearDownDebuggingTraces() { - get - { - return Resources.ARMDataCollectionMessage; - } + // nothing to do here. + } + + /// + protected override void SetupHttpClientPipeline() + { + // nothing to do here. + } + + /// + protected override void TearDownHttpClientPipeline() + { + // nothing to do here. } /// /// Worker Method for the synchronize request. /// - /// The AS azure context /// Base Uri for sync /// Database name - /// Access token - /// Max number of retries for get command /// private async Task SynchronizeDatabaseAsync( - AsAzureContext context, Uri syncBaseUri, - string databaseName, - string accessToken) + string databaseName) { Tuple pollingUrlAndRetryAfter = new Tuple(null, null); ScaleOutServerDatabaseSyncDetails syncResult = null; return await Task.Run(async () => { - try + var syncEndpoint = string.Format(AsAzureEndpoints.SynchronizeEndpointPathFormat, this.ServerName, databaseName); + this.AsAzureDataplaneClient.ResetHttpClient(); + using (var message = await AsAzureDataplaneClient.CallPostAsync(syncBaseUri, syncEndpoint, correlationId)) { - var synchronize = string.Format((string)context.Environment.Endpoints[AsAzureEnvironment.AsRolloutEndpoints.SyncEndpoint], this.serverName, databaseName); - this.AsAzureHttpClient.resetHttpClient(); - using (var message = await AsAzureHttpClient.CallPostAsync( - syncBaseUri, - synchronize, - accessToken, - correlationId, - null)) - { - this.syncRequestRootActivityId = message.Headers.Contains(RootActivityIdHeaderName) ? message.Headers.GetValues(RootActivityIdHeaderName).FirstOrDefault() : string.Empty; - this.syncRequestTimeStamp = message.Headers.Contains(CurrentUtcDateHeaderName) ? message.Headers.GetValues(CurrentUtcDateHeaderName).FirstOrDefault() : string.Empty; + this.syncRequestRootActivityId = message.Headers.Contains(RootActivityIdHeaderName) ? message.Headers.GetValues(RootActivityIdHeaderName).FirstOrDefault() : string.Empty; + this.syncRequestTimeStamp = message.Headers.Contains(CurrentUtcDateHeaderName) ? message.Headers.GetValues(CurrentUtcDateHeaderName).FirstOrDefault() : string.Empty; - message.EnsureSuccessStatusCode(); + if (message.StatusCode != HttpStatusCode.Accepted) + { + var timestampNow = DateTime.Now; - if (message.StatusCode != HttpStatusCode.Accepted) + // Return sync details with exception message as details + return new ScaleOutServerDatabaseSyncDetails { - var timestampNow = DateTime.Now; - syncResult = new ScaleOutServerDatabaseSyncDetails - { - CorrelationId = correlationId.ToString(), - Database = databaseName, - SyncState = DatabaseSyncState.Completed, - Details = string.Format("Http status code: {0}. Nothing readonly instances found to replicate databases.", message.StatusCode), - UpdatedAt = timestampNow, - StartedAt = timestampNow - }; - - return syncResult; - } - - pollingUrlAndRetryAfter = new Tuple< Uri, RetryConditionHeaderValue>(message.Headers.Location, message.Headers.RetryAfter); + CorrelationId = correlationId.ToString(), + Database = databaseName, + SyncState = DatabaseSyncState.Invalid, + Details = Resources.PostSyncRequestFailureMessage.FormatInvariant( + ServerName, + this.syncRequestRootActivityId, + this.syncRequestTimeStamp, + await message.Content.ReadAsStringAsync()), + UpdatedAt = timestampNow, + StartedAt = timestampNow + }; } - } - catch (Exception e) - { - var timestampNow = DateTime.Now; - - // Return sync details with exception message as details - return new ScaleOutServerDatabaseSyncDetails - { - CorrelationId = correlationId.ToString(), - Database = databaseName, - SyncState = DatabaseSyncState.Invalid, - Details = Resources.PostSyncRequestFailureMessage.FormatInvariant( - this.clusterResolveResult.CoreServerName, - this.syncRequestRootActivityId, - this.syncRequestTimeStamp, - string.Format(e.Message)), - UpdatedAt = timestampNow, - StartedAt = timestampNow - }; + pollingUrlAndRetryAfter = new Tuple(message.Headers.Location, message.Headers.RetryAfter); } Uri pollingUrl = pollingUrlAndRetryAfter.Item1; @@ -338,7 +213,6 @@ private async Task SynchronizeDatabaseAsync( { ScaleOutServerDatabaseSyncResult result = await this.PollSyncStatusWithRetryAsync( databaseName, - accessToken, pollingUrl, retryAfter.Delta ?? DefaultPollingInterval); syncResult = ScaleOutServerDatabaseSyncDetails.FromResult(result, correlationId.ToString()); @@ -354,7 +228,7 @@ private async Task SynchronizeDatabaseAsync( Database = databaseName, SyncState = DatabaseSyncState.Invalid, Details = Resources.SyncASPollStatusFailureMessage.FormatInvariant( - serverName, + ServerName, string.Empty, timestampNow.ToString(CultureInfo.InvariantCulture), string.Format(e.StackTrace)), @@ -368,15 +242,14 @@ private async Task SynchronizeDatabaseAsync( } /// - /// + /// Worker Method for the synchronize request. /// /// Database name - /// Access token /// URL for polling /// Polling interval set by the post response /// Max number of attempts for each poll before the attempt is declared a failure /// - private async Task PollSyncStatusWithRetryAsync(string databaseName, string accessToken, Uri pollingUrl, TimeSpan pollingInterval, int maxNumberOfAttempts = 3) + private async Task PollSyncStatusWithRetryAsync(string databaseName, Uri pollingUrl, TimeSpan pollingInterval, int maxNumberOfAttempts = 3) { return await Task.Run(async () => { @@ -396,12 +269,8 @@ private async Task PollSyncStatusWithRetryAsyn await Task.Delay(DefaultRetryIntervalForPolling); } - this.AsAzureHttpClient.resetHttpClient(); - using (HttpResponseMessage message = await AsAzureHttpClient.CallGetAsync( - pollingUrl, - string.Empty, - accessToken, - correlationId)) + this.AsAzureDataplaneClient.ResetHttpClient(); + using (HttpResponseMessage message = await AsAzureDataplaneClient.CallGetAsync(pollingUrl, string.Empty, correlationId)) { bool shouldRetry = false; if (message.IsSuccessStatusCode && message.Content != null) @@ -432,7 +301,7 @@ private async Task PollSyncStatusWithRetryAsyn shouldRetry = true; } - if(shouldRetry) + if (shouldRetry) { retryCount++; response = new ScaleOutServerDatabaseSyncResult() @@ -461,35 +330,5 @@ private async Task PollSyncStatusWithRetryAsyn return response; }); } - - /// - /// Resolves the cluster to which the request needs to be sent for the current environment - /// - /// - /// - /// - private ClusterResolutionResult ClusterResolve(AsAzureContext context, string serverName) - { - Uri clusterResolveBaseUri = new Uri(string.Format("{0}{1}{2}", Uri.UriSchemeHttps, Uri.SchemeDelimiter, context.Environment.Name)); - UriBuilder resolvedUriBuilder = new UriBuilder(clusterResolveBaseUri); - string rolloutAccessToken = this.TokenCacheItemProvider.GetTokenFromTokenCache(AsAzureClientSession.TokenCache, context.Account.UniqueId, context.Environment.Name); - - var resolveEndpoint = "/webapi/clusterResolve"; - var content = new StringContent($"ServerName={serverName}"); - content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/x-www-form-urlencoded"); - - this.AsAzureHttpClient.resetHttpClient(); - using (HttpResponseMessage message = AsAzureHttpClient.CallPostAsync( - clusterResolveBaseUri, - resolveEndpoint, - rolloutAccessToken, - content).Result) - { - message.EnsureSuccessStatusCode(); - var rawResult = message.Content.ReadAsStringAsync().Result; - ClusterResolutionResult result = JsonConvert.DeserializeObject(rawResult); - return result; - } - } } } diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Models/ASAzureContext.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Models/ASAzureContext.cs index 068c41247508..af1ac4653f30 100644 --- a/src/AnalysisServices/AnalysisServices.Dataplane/Models/ASAzureContext.cs +++ b/src/AnalysisServices/AnalysisServices.Dataplane/Models/ASAzureContext.cs @@ -18,21 +18,12 @@ namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane { /// /// Represents current AS Azure client context. + /// This class exists to maintain the interface of deprecating cmdlet Add-AzAnalysisServicesAccount. + /// Should be removed when Add-AzAnalysisServicesAccount is removed. /// [Serializable] public class AsAzureContext { - /// - /// Creates new instance of AsAzureContext. - /// - /// The AS azure account object - /// The AS azure environment object - public AsAzureContext(AsAzureAccount account, AsAzureEnvironment environment) - { - Account = account; - Environment = environment; - } - /// /// Gets the AS azure account. /// diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureAccount.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureAccount.cs index 1b7efc2a65a3..8f25fa732a7c 100644 --- a/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureAccount.cs +++ b/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureAccount.cs @@ -16,6 +16,10 @@ namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane { + /// + /// This class exists to maintain the interface of deprecating cmdlet Add-AzAnalysisServicesAccount. + /// Should be removed when Add-AzAnalysisServicesAccount is removed. + /// [Serializable] public partial class AsAzureAccount { @@ -28,14 +32,5 @@ public partial class AsAzureAccount public string Type { get; set; } public string CertificateThumbprint { get; set; } - - /// - /// string constants for known credential types - /// - public static class AccountType - { - public const string User = "User", - ServicePrincipal = "ServicePrincipal"; - } } } diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureAuthenticationProvider.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureAuthenticationProvider.cs deleted file mode 100644 index df18308a617b..000000000000 --- a/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureAuthenticationProvider.cs +++ /dev/null @@ -1,170 +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. -// ---------------------------------------------------------------------------------- - -using System; -using System.Runtime.Serialization; -using System.Security; -using Microsoft.IdentityModel.Clients.ActiveDirectory; -using Microsoft.WindowsAzure.Commands.Common.Properties; -using Microsoft.Azure.Commands.Common.Authentication.Abstractions; -// TODO: Remove IfDef -#if NETSTANDARD -using Microsoft.WindowsAzure.Commands.Common; -#endif - -namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane.Models -{ - [DataContract] - public class AsAzureAuthInfo - { - [DataMember] - public string DefaultResourceUriSuffix { get; set; } - - [DataMember] - public string AuthorityUrl { get; set; } - } - - public interface IAsAzureAuthenticationProvider - { -// TODO: Remove IfDef -#if NETSTANDARD - string GetAadAuthenticatedToken(AsAzureContext asAzureContext, SecureString password, Action promptAction, string clientId, string resourceUri, Uri resourceRedirectUri); -#else - string GetAadAuthenticatedToken(AsAzureContext asAzureContext, SecureString password, PromptBehavior promptBehavior, string clientId, string resourceUri, Uri resourceRedirectUri); -#endif - } - - public class AsAzureAuthenticationProvider : IAsAzureAuthenticationProvider - { -// TODO: Remove IfDef -#if NETSTANDARD - public string GetAadAuthenticatedToken(AsAzureContext asAzureContext, SecureString password, Action promptAction, string clientId, string resourceUri, Uri resourceRedirectUri) -#else - public string GetAadAuthenticatedToken(AsAzureContext asAzureContext, SecureString password, PromptBehavior promptBehavior, string clientId, string resourceUri, Uri resourceRedirectUri) -#endif - { - var authUriBuilder = new UriBuilder((string)asAzureContext.Environment.Endpoints[AsAzureEnvironment.AsRolloutEndpoints.AdAuthorityBaseUrl]) - { - Path = string.IsNullOrEmpty(asAzureContext.Account.Tenant) - ? "common" - : asAzureContext.Account.Tenant - }; - - var authenticationContext = new AuthenticationContext( - authUriBuilder.ToString(), - AsAzureClientSession.TokenCache); - - AuthenticationResult result = null; - var accountType = string.IsNullOrEmpty(asAzureContext.Account.Type) ? AsAzureAccount.AccountType.User : asAzureContext.Account.Type; - - if (password == null && accountType == AsAzureAccount.AccountType.User) - { - if (asAzureContext.Account.Id != null) - { -// TODO: Remove IfDef -#if NETSTANDARD - result = authenticationContext.AcquireTokenAsync( - resourceUri, - clientId, - resourceRedirectUri, - new PlatformParameters(), - new UserIdentifier(asAzureContext.Account.Id, UserIdentifierType.OptionalDisplayableId)).Result; -#else - result = authenticationContext.AcquireToken( - resourceUri, - clientId, - resourceRedirectUri, - promptBehavior, - new UserIdentifier(asAzureContext.Account.Id, UserIdentifierType.OptionalDisplayableId)); -#endif - } - else - { -// TODO: Remove IfDef -#if NETSTANDARD - result = authenticationContext.AcquireTokenAsync( - resourceUri, - clientId, - resourceRedirectUri, - new PlatformParameters()).Result; -#else - result = authenticationContext.AcquireToken( - resourceUri, - clientId, - resourceRedirectUri, - promptBehavior); -#endif - } - - asAzureContext.Account.Id = result.UserInfo.DisplayableId; - asAzureContext.Account.Tenant = result.TenantId; - asAzureContext.Account.UniqueId = result.UserInfo.UniqueId; - } - else - { - if (accountType == AsAzureAccount.AccountType.User) - { -// TODO: Remove IfDef -#if NETSTANDARD - //https://stackoverflow.com/a/39393039/294804 - //https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/issues/482 - //https://github.com/Azure-Samples/active-directory-dotnet-deviceprofile/blob/5d5499d09c918ae837810d457822474df97600e9/DirSearcherClient/Program.cs#L206-L210 - // Note: More robust implementation in UserTokenProvider.Netcore.cs in DoAcquireToken - var codeResult = authenticationContext.AcquireDeviceCodeAsync(resourceUri, clientId).Result; - promptAction(codeResult?.Message); - result = authenticationContext.AcquireTokenByDeviceCodeAsync(codeResult).Result; -#else - UserCredential userCredential = new UserCredential(asAzureContext.Account.Id, password); - result = authenticationContext.AcquireToken(resourceUri, clientId, userCredential); -#endif - - asAzureContext.Account.Id = result.UserInfo.DisplayableId; - asAzureContext.Account.Tenant = result.TenantId; - asAzureContext.Account.UniqueId = result.UserInfo.UniqueId; - } - else if (accountType == AsAzureAccount.AccountType.ServicePrincipal) - { - if (string.IsNullOrEmpty(asAzureContext.Account.CertificateThumbprint)) - { -// TODO: Remove IfDef -#if NETSTANDARD - var credential = new ClientCredential(asAzureContext.Account.Id, ConversionUtilities.SecureStringToString(password)); - result = authenticationContext.AcquireTokenAsync(resourceUri, credential).Result; -#else - ClientCredential credential = new ClientCredential(asAzureContext.Account.Id, password); - result = authenticationContext.AcquireToken(resourceUri, credential); -#endif - } - else - { - var dataStore = new DiskDataStore(); - var certificate = dataStore.GetCertificate(asAzureContext.Account.CertificateThumbprint); - if (certificate == null) - { - throw new ArgumentException(string.Format(Resources.CertificateNotFoundInStore, asAzureContext.Account.CertificateThumbprint)); - } -// TODO: Remove IfDef -#if NETSTANDARD - result = authenticationContext.AcquireTokenAsync(resourceUri, new ClientAssertionCertificate(asAzureContext.Account.Id, certificate)).Result; -#else - result = authenticationContext.AcquireToken(resourceUri, new ClientAssertionCertificate(asAzureContext.Account.Id, certificate)); -#endif - } - } - } - - return result?.AccessToken; - } - } -} diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureClientSession.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureClientSession.cs deleted file mode 100644 index fb1ea10ef4d8..000000000000 --- a/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureClientSession.cs +++ /dev/null @@ -1,165 +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. -// ---------------------------------------------------------------------------------- - -using Microsoft.IdentityModel.Clients.ActiveDirectory; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Security; -using Microsoft.Azure.Commands.AnalysisServices.Dataplane.Models; - -namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane -{ - /// - /// Represents current AS Azure session. - /// - public class AsAzureClientSession - { - public const string RestartEndpointPathFormat = "/webapi/servers/{0}/restart?api-version=2016-10-01"; - public const string LogfileEndpointPathFormat = "/webapi/servers/{0}/logfileHere"; - public const string SynchronizeEndpointPathFormat = "/servers/{0}/models/{1}/sync"; - public const string AsAzureClientId = "cf710c6e-dfcc-4fa8-a093-d47294e44c66"; - public static readonly Uri RedirectUri = new Uri("urn:ietf:wg:oauth:2.0:oob"); - public static string DefaultRolloutEnvironmentKey = "asazure.windows.net"; - - public static Dictionary AsAzureRolloutEnvironmentMapping = new Dictionary - { - { "asazure.windows.net", new AsAzureAuthInfo - { - AuthorityUrl = "https://login.windows.net" , - DefaultResourceUriSuffix = "*.asazure.windows.net" - } - }, - { "asazure-int.windows.net", new AsAzureAuthInfo - { - AuthorityUrl = "https://login.windows-ppe.net" , - DefaultResourceUriSuffix = "*.asazure-int.windows.net" - } - } - }; - - /// - /// Gets or sets the token cache store. - /// - public static TokenCache TokenCache { get; set; } - - private IAsAzureAuthenticationProvider _asAzureAuthenticationProvider; - - static AsAzureClientSession() - { - Instance = new AsAzureClientSession(); - } - - private AsAzureClientSession() - { - TokenCache = new TokenCache(); - Profile = new AsAzureProfile(); - _asAzureAuthenticationProvider = new AsAzureAuthenticationProvider(); - } - - public void SetAsAzureAuthenticationProvider(IAsAzureAuthenticationProvider asAzureAuthenticationProvider) - { - _asAzureAuthenticationProvider = asAzureAuthenticationProvider; - } - - public static AsAzureClientSession Instance { get; private set; } - - /// - /// As Azure Profile - /// - public AsAzureProfile Profile { get; set; } -// TODO: Remove IfDef -#if NETSTANDARD - public AsAzureProfile Login(AsAzureContext asAzureContext, SecureString password, Action promptAction = null) -#else - public AsAzureProfile Login(AsAzureContext asAzureContext, SecureString password) -#endif - { - var resourceUri = new UriBuilder(Uri.UriSchemeHttps, GetResourceUriSuffix(asAzureContext.Environment.Name)).ToString(); - resourceUri = resourceUri.TrimEnd('/'); -// TODO: Remove IfDef -#if NETSTANDARD - _asAzureAuthenticationProvider.GetAadAuthenticatedToken(asAzureContext, password, promptAction, AsAzureClientId, resourceUri, RedirectUri); -#else - _asAzureAuthenticationProvider.GetAadAuthenticatedToken(asAzureContext, password, password == null ? PromptBehavior.Always : PromptBehavior.Auto, AsAzureClientId, resourceUri, RedirectUri); -#endif - - Profile.Context.TokenCache = TokenCache.Serialize(); - - if (!Profile.Environments.ContainsKey(asAzureContext.Environment.Name)) - { - Profile.Environments.Add(asAzureContext.Environment.Name, asAzureContext.Environment); - } - - return Profile; - } - - public AsAzureProfile Login(AsAzureContext asAzureContext) - { - var resourceUri = new UriBuilder(Uri.UriSchemeHttps, GetResourceUriSuffix(asAzureContext.Environment.Name)).ToString(); - resourceUri = resourceUri.TrimEnd('/'); -// TODO: Remove IfDef -#if NETSTANDARD - _asAzureAuthenticationProvider.GetAadAuthenticatedToken(asAzureContext, null, null, AsAzureClientId, resourceUri, RedirectUri); -#else - _asAzureAuthenticationProvider.GetAadAuthenticatedToken(asAzureContext, null, PromptBehavior.RefreshSession, AsAzureClientId, resourceUri, RedirectUri); -#endif - - Profile.Context.TokenCache = TokenCache.Serialize(); - - if (!Profile.Environments.ContainsKey(asAzureContext.Environment.Name)) - { - Profile.Environments.Add(asAzureContext.Environment.Name, asAzureContext.Environment); - } - - return Profile; - } - - public static string GetAuthorityUrlForEnvironment(AsAzureEnvironment environment) - { - var environmentKey = AsAzureRolloutEnvironmentMapping.Keys.FirstOrDefault(s => environment.Name.Contains(s)); - AsAzureAuthInfo authInfo; - if (string.IsNullOrEmpty(environmentKey) || !AsAzureRolloutEnvironmentMapping.TryGetValue(environmentKey, out authInfo)) - { - throw new ArgumentException(Properties.Resources.UnknownEnvironment); - } - - return authInfo.AuthorityUrl; - } - - public void SetCurrentContext(AsAzureAccount azureAccount, AsAzureEnvironment asEnvironment) - { - Profile.Context = new AsAzureContext(azureAccount, asEnvironment) - { - TokenCache = TokenCache.Serialize() - }; - } - - public static string GetDefaultEnvironmentName() - { - return AsAzureRolloutEnvironmentMapping[DefaultRolloutEnvironmentKey].DefaultResourceUriSuffix; - } - - public static string GetResourceUriSuffix(string environmentName) - { - if (string.IsNullOrEmpty(environmentName)) - { - return AsAzureRolloutEnvironmentMapping[DefaultRolloutEnvironmentKey].DefaultResourceUriSuffix; - } - - var authoInfo = AsAzureRolloutEnvironmentMapping.FirstOrDefault(kv => kv.Key.Equals(environmentName)).Value; - return authoInfo != null ? authoInfo.DefaultResourceUriSuffix : environmentName; - } - } -} diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureDataplaneClient.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureDataplaneClient.cs new file mode 100644 index 000000000000..e954ca7e7a92 --- /dev/null +++ b/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureDataplaneClient.cs @@ -0,0 +1,157 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Rest; + +namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane.Models +{ + /// + /// Provides methods for sending HTTP requests and receiving HTTP responses from a resource identified by a URI. + /// + public class AsAzureDataplaneClient : ServiceClient, IAsAzureHttpClient + { + /// + /// The base Uri of the service. + /// + public Uri BaseUri { get; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + public ServiceClientCredentials Credentials { get; private set; } + + /// + /// Function for providing an for this class. + /// + private Func HttpClientProvider { get; set; } + + /// + /// Initializes a new instance of the class. + /// + /// The base uri to send http requests to. + /// for authenticating requests. + /// Function for providing an . + /// Additional delegating handlers to be passed to the base class. + public AsAzureDataplaneClient(Uri baseUri, ServiceClientCredentials credentials, Func httpClientProvider, params DelegatingHandler[] handlers) + : base(handlers) + { + this.BaseUri = baseUri ?? throw new ArgumentNullException(nameof(baseUri)); + this.Credentials = credentials ?? throw new ArgumentNullException(nameof(credentials)); + this.HttpClientProvider = httpClientProvider ?? throw new ArgumentNullException(nameof(httpClientProvider)); + this.Credentials.InitializeServiceClient(this); + this.ResetHttpClient(); + } + + /// + /// Invokes the HttpClientProvider function to reset the HttpClient to a new instance. + /// + public void ResetHttpClient() + { + this.HttpClient = this.HttpClientProvider(); + } + + #region CallHttpMethodAsyncOverloads + + /// + public async Task CallGetAsync(Uri baseUri, string requestUrl, Guid correlationId = new Guid()) + { + return await SendRequestAsync(HttpMethod.Get, baseUri: baseUri, requestUrl: requestUrl, correlationId: correlationId); + } + + /// + public async Task CallGetAsync(string requestUrl) + { + return await CallGetAsync(BaseUri, requestUrl, new Guid()); + } + + /// + public async Task CallPostAsync(Uri baseUri, string requestUrl, Guid correlationId, HttpContent content = null) + { + return await SendRequestAsync(HttpMethod.Post, baseUri, requestUrl, correlationId, content); + } + + /// + public async Task CallPostAsync(Uri baseUri, string requestUrl, HttpContent content = null) + { + return await CallPostAsync(baseUri, requestUrl, new Guid(), content); + } + + /// + public async Task CallPostAsync(string requestUrl, HttpContent content = null) + { + return await CallPostAsync(BaseUri, requestUrl, content); + } + + #endregion + + /// + /// Adds a header to the list object. + /// + /// The request headers list object. + /// The name of the header to add. + /// The value of the header. + private static void AddHeader(HttpRequestHeaders headers, string name, string value) + { + if (headers.Contains(name)) + { + headers.Remove(name); + } + headers.TryAddWithoutValidation(name, value); + } + + /// + /// Asynchronosly send an http request. + /// + /// The http method for this request. + /// The base URI to send the request to. + /// The URL endpoint to send the request to. + /// The correlation ID for the request. + /// HttpContent for a POST request. + /// The cancelation token. + /// The of the request. + private async Task SendRequestAsync( + HttpMethod method, + Uri baseUri, + string requestUrl, + Guid correlationId, + HttpContent content = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + // Create HTTP transport objects + HttpRequestMessage httpRequest = new HttpRequestMessage() + { + Method = method, + RequestUri = new Uri(baseUri, requestUrl), + Content = content + }; + + // Set Headers + AddHeader(httpRequest.Headers, "x-ms-client-request-id", correlationId.ToString()); + + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + + return await this.HttpClient.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false); + } + } +} diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureDataplaneCmdletBase.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureDataplaneCmdletBase.cs new file mode 100644 index 000000000000..7514a2d6c53f --- /dev/null +++ b/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureDataplaneCmdletBase.cs @@ -0,0 +1,189 @@ +// ---------------------------------------------------------------------------------- +// +// 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.AnalysisServices.Dataplane.Properties; +using Microsoft.Azure.Commands.Common.Authentication; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System; +using System.Management.Automation; +using System.Net.Http; + +namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane.Models +{ + /// + /// The base class for all Microsoft Azure Analysis Services Management cmdlets + /// + public abstract class AsAzureDataplaneCmdletBase : AzurePSCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "Name of the Azure Analysis Services server", + Position = 0, + ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public string Instance { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + /// + /// The fully qualified absolute URI of the server instance. + /// (scheme.region.azureAsEndpoint/serverName) + /// + /// asazure://westus.asazure.windows.net/testserver + protected string ServerUri; + + /// + /// A DNS safe host name for the server. + /// (region.azureAsEndpoint) + /// + /// westus.asazure.windows.net + protected string DnsSafeHost; + + /// + /// The name of the server. + /// + /// testserver + protected string ServerName; + + /// + /// Field for the current azure context, for the environment and profile. + /// + private IAzureContext _currentContext; + + /// + /// Field for the dataplane http client. + /// + private IAsAzureHttpClient _asAzureDataplaneClient; + + /// + /// Gets or sets the . + /// + public IAzureContext CurrentContext + { + get + { + if (_currentContext == null) + { + _currentContext = AzureRmProfileProvider.Instance.Profile.DefaultContext; + } + + return _currentContext; + } + + set { _currentContext = value; } + } + + /// + /// Gets or sets the . + /// + public IAsAzureHttpClient AsAzureDataplaneClient + { + get + { + if (_asAzureDataplaneClient == null) + { + _asAzureDataplaneClient = CreateAsAzureDataplaneClient(DnsSafeHost, CurrentContext, () => { return new HttpClient(); }); + } + + return _asAzureDataplaneClient; + } + + set { _asAzureDataplaneClient = value; } + } + + /// + protected override IAzureContext DefaultContext + { + get + { + // Nothing to do with Azure Resource Management context + return null; + } + } + + /// + protected override string DataCollectionWarning + { + get + { + return Resources.ARMDataCollectionMessage; + } + } + + /// + /// Creates an instance of an based on parameters. + /// + /// The Uri to derive the from. + /// The to retrieve ServiceClientCredentials from. + /// . + /// An instance of an . + internal static AsAzureDataplaneClient CreateAsAzureDataplaneClient(string hostUri, IAzureContext context, Func httpClientProvider) + { + if (context == null) + { + throw new ArgumentException(Common.Authentication.Properties.Resources.ArmAccountNotFound); + } + + if (string.IsNullOrEmpty(hostUri)) + { + throw new ArgumentNullException(nameof(hostUri)); + } + + if (httpClientProvider == null) + { + throw new ArgumentNullException(nameof(httpClientProvider)); + } + + var baseUri = new Uri(string.Format("{0}{1}{2}", Uri.UriSchemeHttps, Uri.SchemeDelimiter, hostUri)); + var credentials = AzureSession.Instance.AuthenticationFactory.GetServiceClientCredentials(context, AzureEnvironment.ExtendedEndpoint.AnalysisServicesEndpointResourceId); + var handlers = AzureSession.Instance.ClientFactory.GetCustomHandlers(); + return AzureSession.Instance.ClientFactory.CreateCustomArmClient(baseUri, credentials, httpClientProvider, handlers); + } + + /// + protected override void InitializeQosEvent() + { + // No data collection for this cmdlet + } + + /// + protected override void BeginProcessing() + { + base.BeginProcessing(); + + if (string.IsNullOrEmpty(Instance)) + { + throw new ArgumentNullException(nameof(Instance)); + } + + // user must specify the fully qualified server name. For example, asazure://westus2.asazure.windows.net/testserver + if (!Uri.TryCreate(Instance, UriKind.Absolute, out var uriResult) || uriResult.Scheme != AsAzureEndpoints.UriSchemeAsAzure) + { + throw new PSInvalidOperationException(string.Format(Resources.InvalidServerName, Instance)); + } + + // derive all bits of the url from the input + ServerUri = uriResult.AbsoluteUri; + DnsSafeHost = uriResult.DnsSafeHost; + ServerName = uriResult.PathAndQuery.Trim('/'); + + if (_asAzureDataplaneClient == null) + { + AsAzureDataplaneClient = CreateAsAzureDataplaneClient(DnsSafeHost, CurrentContext, () => { return new HttpClient(); }); + } + } + } +} diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureEndpoints.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureEndpoints.cs new file mode 100644 index 000000000000..4ff0e3960273 --- /dev/null +++ b/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureEndpoints.cs @@ -0,0 +1,30 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane.Models +{ + /// + /// Class to hold the endpoint format strings for dataplane cmdlets. + /// + class AsAzureEndpoints + { + public const string RestartEndpointPathFormat = "/webapi/servers/{0}/restart?api-version=2016-10-01"; + public const string LogfileEndpointPathFormat = "/webapi/servers/{0}/logfile"; + public const string SynchronizeEndpointPathFormat = "/servers/{0}/models/{1}/sync"; + + public const string ClusterResolveEndpoint = "/webapi/clusterResolve"; + + public const string UriSchemeAsAzure = "asazure"; + } +} diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureEnvironment.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureEnvironment.cs index 8c0bfd3646e6..271250558b41 100644 --- a/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureEnvironment.cs +++ b/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureEnvironment.cs @@ -18,25 +18,15 @@ namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane { + /// + /// This class exists to maintain the interface of deprecating cmdlet Add-AzAnalysisServicesAccount. + /// Should be removed when Add-AzAnalysisServicesAccount is removed. + /// [Serializable] public class AsAzureEnvironment { - public AsAzureEnvironment(string Name) - { - this.Name = Name; - this.Endpoints = new Hashtable(); - } - public string Name { get; set; } public Hashtable Endpoints { get; set; } - - public enum AsRolloutEndpoints - { - AdAuthorityBaseUrl, - RestartEndpointFormat, - LogfileEndpointFormat, - SyncEndpoint - } } } diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureHttpClient.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureHttpClient.cs deleted file mode 100644 index d95f950ac74a..000000000000 --- a/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureHttpClient.cs +++ /dev/null @@ -1,112 +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. -// ---------------------------------------------------------------------------------- - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; -using System.Net.Http; -using System.Net.Http.Headers; -using System.Text; -using System.Threading.Tasks; -using Microsoft.Azure.Commands.AnalysisServices.Dataplane.Properties; - -namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane.Models -{ - public interface IAsAzureHttpClient - { - HttpClient HttpClient { get; set; } - - Task CallPostAsync(Uri baseURI, string requestURL, string accessToken, HttpContent content = null); - - Task CallPostAsync(Uri baseURI, string requestURL, string accessToken, Guid correlationId, HttpContent content = null); - - Task CallGetAsync(Uri baseURI, string requestURL, string accessToken); - - Task CallGetAsync(Uri baseURI, string requestURL, string accessToken, Guid correlationId); - - void resetHttpClient(); - } - - public class AsAzureHttpClient : IAsAzureHttpClient - { - public const string ParentActivityId = "x-ms-parent-activity-id"; - - public HttpClient HttpClient { get; set; } - - private Func HttpClientProvider { get; set; } - - public AsAzureHttpClient(Func httpClientProvider) - { - this.HttpClientProvider = httpClientProvider; - this.HttpClient = this.HttpClientProvider(); - } - - public async Task CallGetAsync(Uri baseURI, string requestURL, string accessToken) - { - return await CallGetAsync(baseURI, requestURL, accessToken, new Guid()); - } - - public async Task CallGetAsync(Uri baseURI, string requestURL, string accessToken, Guid correlationId) - { - return await CallAsync(HttpMethod.Get, baseURI, requestURL, accessToken, correlationId); - } - - public async Task CallPostAsync(Uri baseURI, string requestURL, string accessToken, HttpContent content = null) - { - return await CallPostAsync(baseURI, requestURL, accessToken, new Guid(), content); - } - - public async Task CallPostAsync(Uri baseURI, string requestURL, string accessToken, Guid correlationId, HttpContent content = null) - { - return await CallAsync(HttpMethod.Post, baseURI, requestURL, accessToken, correlationId, content); - } - - public void resetHttpClient() - { - this.HttpClient = this.HttpClientProvider(); - } - - private async Task CallAsync(HttpMethod method, Uri baseURI, string requestURL, string accessToken, Guid correlationId, HttpContent content = null) - { - using (HttpClient) - { - if (accessToken == null) - { - throw new PSArgumentNullException("accessToken", string.Format(Resources.NotLoggedInMessage, "")); - } - HttpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", accessToken); - - if (correlationId == null || correlationId == Guid.Empty) - { - correlationId = new Guid(); - } - - HttpClient.DefaultRequestHeaders.Add(ParentActivityId, new List() { correlationId.ToString() }); - - HttpClient.BaseAddress = baseURI; - if (method == HttpMethod.Get) - { - return await HttpClient.GetAsync(requestURL); - } - - if (content == null) - { - content = new StringContent(""); - } - return await HttpClient.PostAsync(requestURL, content); - } - } - } -} diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureProfile.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureProfile.cs index 586257b40797..db709242f572 100644 --- a/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureProfile.cs +++ b/src/AnalysisServices/AnalysisServices.Dataplane/Models/AsAzureProfile.cs @@ -21,45 +21,20 @@ namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane { /// /// Represents AS Azure profile structure with default context, environments and token cache. + /// This class exists to maintain the interface of deprecating cmdlet Add-AzAnalysisServicesAccount. + /// Should be removed when Add-AzAnalysisServicesAccount is removed. /// [Serializable] public sealed class AsAzureProfile { - /// - /// Gets or sets AS Azure environments. - /// + /// + /// Gets or sets AS Azure environments. + /// public Hashtable Environments { get; set; } - /// - /// Gets or sets the AS azure context object. - /// + /// + /// Gets or sets the AS azure context object. + /// public AsAzureContext Context { get; set; } - - /// - /// Initializes a new instance of AsAzureProfile and loads its content from specified path. - /// - public AsAzureProfile() - { - this.Environments = new Hashtable(); - } - - /// - /// Serializes the current profile and return its contents. - /// - /// The current string. - public override string ToString() - { - return JsonConvert.SerializeObject(this, Formatting.Indented); - } - - public AsAzureEnvironment CreateEnvironment(string environmentName) - { - var env = new AsAzureEnvironment(environmentName); - env.Endpoints.Add(AsAzureEnvironment.AsRolloutEndpoints.AdAuthorityBaseUrl, AsAzureClientSession.GetAuthorityUrlForEnvironment(env)); - env.Endpoints.Add(AsAzureEnvironment.AsRolloutEndpoints.RestartEndpointFormat, AsAzureClientSession.RestartEndpointPathFormat); - env.Endpoints.Add(AsAzureEnvironment.AsRolloutEndpoints.LogfileEndpointFormat, AsAzureClientSession.LogfileEndpointPathFormat); - env.Endpoints.Add(AsAzureEnvironment.AsRolloutEndpoints.SyncEndpoint, AsAzureClientSession.SynchronizeEndpointPathFormat); - return env; - } } } diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Models/IAsAzureHttpClient.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Models/IAsAzureHttpClient.cs new file mode 100644 index 000000000000..68b93cf06f23 --- /dev/null +++ b/src/AnalysisServices/AnalysisServices.Dataplane/Models/IAsAzureHttpClient.cs @@ -0,0 +1,71 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System; +using System.Net.Http; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane.Models +{ + /// + /// Interface for the necessary httpclient methods for dataplane cmdlets. + /// + public interface IAsAzureHttpClient + { + /// + /// Calls SendRequestAsync() for a GET using the default BaseUri and a blank correlationId. + /// + /// The Request Url. + /// The http response message. + Task CallGetAsync(string requestURL); + + /// + /// Calls SendRequestAsync() for a GET. + /// + /// The base Uri to call. + /// The request Url. + /// The CorrelationId + /// The http response message. + Task CallGetAsync(Uri baseUri, string requestURL, Guid correlationId); + + /// + /// Calls SendRequestAsync() for a POST using the default BaseUri and a blank correlationId. + /// + /// The Request Url. + /// The content to post (optional). + /// The http response message. + Task CallPostAsync(string requestURL, HttpContent content = null); + + /// + /// Calls SendRequestAsync() for a POST using a blank correlationId. + /// + /// The base Uri to call. + /// The request Url. + /// The content to post (optional). + /// The http response message. + Task CallPostAsync(Uri baseURI, string requestURL, HttpContent content = null); + + /// + /// Calls SendRequestAsync() for a POST. + /// + /// The base Uri to call. + /// The request Url. + /// The CorrelationId + /// The content to post (optional). + /// The http response message. + Task CallPostAsync(Uri baseURI, string requestURL, Guid correlationId, HttpContent content = null); + + void ResetHttpClient(); + } +} diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Models/TokenCacheItemProvider.cs b/src/AnalysisServices/AnalysisServices.Dataplane/Models/TokenCacheItemProvider.cs deleted file mode 100644 index 0ed2c6c642f8..000000000000 --- a/src/AnalysisServices/AnalysisServices.Dataplane/Models/TokenCacheItemProvider.cs +++ /dev/null @@ -1,62 +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. -// ---------------------------------------------------------------------------------- - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Management.Automation; -using System.Text; -using System.Threading.Tasks; -using Microsoft.Azure.Commands.AnalysisServices.Dataplane.Properties; -using Microsoft.IdentityModel.Clients.ActiveDirectory; - -namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane.Models -{ - public interface ITokenCacheItemProvider - { - string GetTokenFromTokenCache(TokenCache tokenCache, string uniqueId); - - string GetTokenFromTokenCache(TokenCache tokenCache, string uniqueId, string environmentName); - } - - public class TokenCacheItemProvider : ITokenCacheItemProvider - { - public string GetTokenFromTokenCache(TokenCache tokenCache, string uniqueId) - { - return GetTokenFromTokenCache(tokenCache, uniqueId, null); - } - - public string GetTokenFromTokenCache(TokenCache tokenCache, string uniqueId, string environmentName) - { - TokenCacheItem tokenCacheItem = null; - if (string.IsNullOrEmpty(uniqueId)) - { - var tokenCacheItems = tokenCache.ReadItems().Where(tokenItem => (string.IsNullOrEmpty(environmentName) || tokenItem.Resource.Contains(environmentName))); - tokenCacheItem = tokenCacheItems.FirstOrDefault(); - } - else - { - var tokenCacheItems = tokenCache.ReadItems().Where(tokenItem => tokenItem.UniqueId.Equals(uniqueId) && (string.IsNullOrEmpty(environmentName) || tokenItem.Resource.Contains(environmentName))); - tokenCacheItem = tokenCacheItems.FirstOrDefault(); - } - - if (tokenCacheItem == null || string.IsNullOrEmpty(tokenCacheItem.AccessToken)) - { - throw new PSInvalidOperationException(string.Format(Resources.NotLoggedInMessage, "")); - } - - return tokenCacheItem.AccessToken; - } - } -} diff --git a/src/AnalysisServices/AnalysisServices.Test/InMemoryTests/AddAzureASAccountTests.cs b/src/AnalysisServices/AnalysisServices.Test/InMemoryTests/AddAzureASAccountTests.cs deleted file mode 100644 index 68320d9285df..000000000000 --- a/src/AnalysisServices/AnalysisServices.Test/InMemoryTests/AddAzureASAccountTests.cs +++ /dev/null @@ -1,80 +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. -// ---------------------------------------------------------------------------------- - -using System; -using System.Collections; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Management.Automation; -using System.Security; -using System.Text; -using System.Threading.Tasks; -using Microsoft.Azure.Commands.AnalysisServices.Dataplane; -using Microsoft.Azure.Commands.AnalysisServices.Test.ScenarioTests; -using Microsoft.Azure.ServiceManagement.Common.Models; -using Microsoft.WindowsAzure.Commands.Common; -using Microsoft.WindowsAzure.Commands.ScenarioTest; -using Microsoft.WindowsAzure.Commands.Utilities.Common; -using Moq; -using Xunit; -using Xunit.Abstractions; - -namespace Microsoft.Azure.Commands.AnalysisServices.Test.InMemoryTests -{ - public class AddAzureASAccountTests : AsTestsBase - { - private const string testAsAzureEnvironment = "westcentralus.asazure.windows.net"; - - private const string testUser = "testuser"; - - private const string testPassword = "testpassword"; - - public AddAzureASAccountTests(ITestOutputHelper output) - { - XunitTracingInterceptor.AddToContext(new XunitTracingInterceptor(output)); - } - - [Fact(Skip = "Issue to investigate, Environments not becoming populated")] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void CreatesNewPSResourceGroup() - { - Mock commandRuntimeMock = new Mock(); - AddAzureASAccountCommand cmdlet = new AddAzureASAccountCommand() - { - CommandRuntime = commandRuntimeMock.Object - }; - // Setup - cmdlet.RolloutEnvironment = testAsAzureEnvironment; - var password = new SecureString(); - var testpwd = testPassword; - testpwd.All(c => { - password.AppendChar(c); - return true; - }); - cmdlet.Credential = new PSCredential(testUser, password); - - cmdlet.InvokeBeginProcessing(); - cmdlet.ExecuteCmdlet(); - cmdlet.InvokeEndProcessing(); - - // Act - Assert.NotEmpty(AsAzureClientSession.Instance.Profile.Environments); - Assert.NotNull(AsAzureClientSession.Instance.Profile.Environments[testAsAzureEnvironment]); - var environment = (AsAzureEnvironment)AsAzureClientSession.Instance.Profile.Environments[testAsAzureEnvironment]; - Assert.Equal("", environment.Endpoints[AsAzureEnvironment.AsRolloutEndpoints.AdAuthorityBaseUrl]); - Assert.NotNull(environment.Endpoints[AsAzureEnvironment.AsRolloutEndpoints.RestartEndpointFormat]); - } - } -} diff --git a/src/AnalysisServices/AnalysisServices.Test/InMemoryTests/DataPlaneCommandTests.cs b/src/AnalysisServices/AnalysisServices.Test/InMemoryTests/DataPlaneCommandTests.cs index a01e2b6e979e..e9777b2745d8 100644 --- a/src/AnalysisServices/AnalysisServices.Test/InMemoryTests/DataPlaneCommandTests.cs +++ b/src/AnalysisServices/AnalysisServices.Test/InMemoryTests/DataPlaneCommandTests.cs @@ -13,19 +13,17 @@ // ---------------------------------------------------------------------------------- using System; -using System.Linq; using System.Management.Automation; using System.Net; using System.Net.Http; using System.Reflection; -using System.Security; using System.Text; using System.Threading.Tasks; using Microsoft.Azure.Commands.AnalysisServices.Dataplane; using Microsoft.Azure.Commands.AnalysisServices.Dataplane.Models; using Microsoft.Azure.Commands.AnalysisServices.Test.ScenarioTests; +using Microsoft.Azure.Commands.Profile.Models.Core; using Microsoft.Azure.ServiceManagement.Common.Models; -using Microsoft.IdentityModel.Clients.ActiveDirectory; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Moq; @@ -34,18 +32,13 @@ using System.Collections.Generic; using System.Net.Http.Headers; using Newtonsoft.Json; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; namespace Microsoft.Azure.Commands.AnalysisServices.Test.InMemoryTests { public class DataPlaneCommandTests : AsTestsBase { - private const string testAsAzureEnvironment = "westcentralus.asazure.windows.net"; - - private const string testServer = "testserver"; - - private const string testUser = "testuser@contoso.com"; - - private const string testPassword = "testpassword"; + private const string testInstance = "asazure://westcentralus.asazure.windows.net/testserver"; private const string testToken = "eyJ0eXAiOi" + "JKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjFpOWlmMDllc0YzaU9sS0I2SW9meVVGSUxnQSIsImtpZC" @@ -71,502 +64,233 @@ public class DataPlaneCommandTests : AsTestsBase public DataPlaneCommandTests(ITestOutputHelper output) { XunitTracingInterceptor.AddToContext(new XunitTracingInterceptor(output)); - SynchronizeAzureAzureAnalysisServer.DefaultRetryIntervalForPolling = TimeSpan.FromSeconds(0); } + #region TestAuthentication + + private class TestAuthenticationCmdlet : AsAzureDataplaneCmdletBase { } + + // TODO: this needs a valid mocked context in order to test authentication. + //[Fact] + //[Trait(Category.AcceptanceType, Category.CheckIn)] + //public void Authentication_Succeeds() + //{ + // var context = new PSAzureContext(); + // TestAuthentication(context); + //} + + /// + /// Assert that cmdlets will fail authentication when provided null context. + /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestAddAzureASAccountCommand() + public void Authentication_FailsFromNullContext() { - Mock commandRuntimeMock = new Mock(); - var addAmdlet = new AddAzureASAccountCommand() - { - CommandRuntime = commandRuntimeMock.Object - }; - var expectedProfile = new AsAzureProfile - { - Context = new AsAzureContext( - new AsAzureAccount() - { - Id = testUser, - Tenant = null - }, - new AsAzureEnvironment(testAsAzureEnvironment)) - }; - expectedProfile.Context.Environment.Endpoints.Add(AsAzureEnvironment.AsRolloutEndpoints.AdAuthorityBaseUrl, AsAzureClientSession.GetAuthorityUrlForEnvironment(expectedProfile.Context.Environment)); - expectedProfile.Context.Environment.Endpoints.Add(AsAzureEnvironment.AsRolloutEndpoints.RestartEndpointFormat, AsAzureClientSession.RestartEndpointPathFormat); - expectedProfile.Environments.Add(testAsAzureEnvironment, expectedProfile.Context.Environment); - expectedProfile.Context.TokenCache = Encoding.ASCII.GetBytes(testToken); - - // Setup - // Clear the the current profile - AsAzureClientSession.Instance.Profile.Environments.Clear(); - - var mockAuthenticationProvider = new Mock(); - mockAuthenticationProvider.Setup( - authProvider => authProvider.GetAadAuthenticatedToken( - It.IsAny(), - It.IsAny(), -#if NETSTANDARD - It.IsAny>(), -#else - It.IsAny(), -#endif - It.IsAny(), - It.IsAny(), - It.IsAny())).Returns(testToken); - AsAzureClientSession.Instance.SetAsAzureAuthenticationProvider(mockAuthenticationProvider.Object); - - addAmdlet.RolloutEnvironment = testAsAzureEnvironment; - var password = new SecureString(); - var testpwd = testPassword; - testpwd.All(c => { - password.AppendChar(c); - return true; - }); - addAmdlet.Credential = new PSCredential(testUser, password); - commandRuntimeMock.Setup(f => f.ShouldProcess(It.IsAny(), It.IsAny())).Returns(true); - commandRuntimeMock.Setup(f => f.WriteObject(expectedProfile)); - - // Act - addAmdlet.InvokeBeginProcessing(); - Assert.Empty(AsAzureClientSession.Instance.Profile.Environments); - addAmdlet.ExecuteCmdlet(); - Assert.True(AsAzureClientSession.Instance.Profile.Environments.Count == 1); - Assert.NotNull(AsAzureClientSession.Instance.Profile.Environments[testAsAzureEnvironment]); - - // Call InvokeBeginProcessing again to get coverage. It should use the existing environment in memory not create a new one. - addAmdlet.InvokeBeginProcessing(); - Assert.True(AsAzureClientSession.Instance.Profile.Environments.Count == 1); - Assert.NotNull(AsAzureClientSession.Instance.Profile.Environments[testAsAzureEnvironment]); - - addAmdlet.InvokeEndProcessing(); - - var environment = (AsAzureEnvironment)AsAzureClientSession.Instance.Profile.Environments[testAsAzureEnvironment]; - Assert.Equal(environment.Endpoints[AsAzureEnvironment.AsRolloutEndpoints.AdAuthorityBaseUrl], AsAzureClientSession.GetAuthorityUrlForEnvironment(environment)); - Assert.NotNull(environment.Endpoints[AsAzureEnvironment.AsRolloutEndpoints.RestartEndpointFormat]); - - commandRuntimeMock.Verify(f => f.WriteObject(AsAzureClientSession.Instance.Profile)); - mockAuthenticationProvider.Verify(authProvider => authProvider.GetAadAuthenticatedToken(It.IsAny(), - It.IsAny(), -#if NETSTANDARD - It.IsAny>(), -#else - It.IsAny(), -#endif - It.IsAny(), - It.IsAny(), - It.IsAny()), Times.Once); + Assert.Throws(() => TestAuthentication(null)); } + /// + /// Assert that cmdlets will fail authentication when provided bad context. + /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void RestartAzureASInstance_Succeeds() + public void Authentication_FailsFromBadContext() { - Mock commandRuntimeMock = new Mock(); - // Setup - // Clear the the current profile - AsAzureClientSession.Instance.Profile.Environments.Clear(); - var mockAuthenticationProvider = new Mock(); - mockAuthenticationProvider.Setup( - authProvider => authProvider.GetAadAuthenticatedToken( - It.IsAny(), - It.IsAny(), -#if NETSTANDARD - It.IsAny>(), -#else - It.IsAny(), -#endif - It.IsAny(), - It.IsAny(), - It.IsAny())).Returns(testToken); - AsAzureClientSession.Instance.SetAsAzureAuthenticationProvider(mockAuthenticationProvider.Object); - commandRuntimeMock.Setup(f => f.ShouldProcess(It.IsAny(), It.IsAny())).Returns(true); - - // Set up AsAzureHttpClient mock - var mockAsAzureHttpClient = new Mock(); - mockAsAzureHttpClient - .Setup(obj => obj.CallPostAsync(It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())) - .Returns(Task.FromResult(new HttpResponseMessage(HttpStatusCode.OK))); - - var mockTokenCacheItemProvider = new Mock(); - mockTokenCacheItemProvider - .Setup(obj => obj.GetTokenFromTokenCache(It.IsAny(), It.IsAny())) - .Returns(testToken); - var restartCmdlet = new RestartAzureAnalysisServer(mockAsAzureHttpClient.Object, mockTokenCacheItemProvider.Object) - { - CommandRuntime = commandRuntimeMock.Object - }; + Assert.Throws(() => TestAuthentication(new PSAzureContext())); + } - var addAmdlet = new AddAzureASAccountCommand() + /// + /// Common code used for testing authentication. + /// + /// + private void TestAuthentication(IAzureContext context) + { + var cmdlet = new TestAuthenticationCmdlet() { - CommandRuntime = commandRuntimeMock.Object + CurrentContext = context }; - - DoLogin(addAmdlet); - restartCmdlet.Instance = testServer; - - // Act - restartCmdlet.InvokeBeginProcessing(); - restartCmdlet.ExecuteCmdlet(); - restartCmdlet.InvokeEndProcessing(); + cmdlet.InvokeBeginProcessing(); + cmdlet.InvokeEndProcessing(); } + #endregion + #region TestRestart + + /// + /// Assert that the restart cmdlet will fail if given a null instance. + /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void RestartAzureASInstance_NullInstanceThrows() { - Mock commandRuntimeMock = new Mock(); - - var mockAsAzureHttpClient = new Mock(); - var mockTokenCacheItemProvider = new Mock(); - var restartCmdlet = new RestartAzureAnalysisServer(mockAsAzureHttpClient.Object, mockTokenCacheItemProvider.Object) - { - CommandRuntime = commandRuntimeMock.Object - }; - - // Setup - // Clear the the current profile - AsAzureClientSession.Instance.Profile.Environments.Clear(); - var mockAuthenticationProvider = new Mock(); - mockAuthenticationProvider.Setup( - authProvider => authProvider.GetAadAuthenticatedToken( - It.IsAny(), - It.IsAny(), -#if NETSTANDARD - It.IsAny>(), -#else - It.IsAny(), -#endif - It.IsAny(), - It.IsAny(), - It.IsAny())).Returns(testToken); - AsAzureClientSession.Instance.SetAsAzureAuthenticationProvider(mockAuthenticationProvider.Object); - commandRuntimeMock.Setup(f => f.ShouldProcess(It.IsAny(), It.IsAny())).Returns(true); + var restartCmdlet = CreateTestRestartCmdlet(null); + Assert.Throws(() => restartCmdlet.InvokeBeginProcessing()); + } - restartCmdlet.Instance = null; - // Act + /// + /// Assert that the restart cmdlet will fail if given a bad instance url. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void RestartAzureASInstance_InvalidInstanceThrows() + { + var restartCmdlet = CreateTestRestartCmdlet("https://bad.uri.com"); Assert.Throws(() => restartCmdlet.InvokeBeginProcessing()); } + /// + /// Assert that the restart cmdlet executes successfully. + /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void RestartAzureASInstance_NotLoggedInThrows() + public void RestartAzureASInstance_Succeeds() { - Mock commandRuntimeMock = new Mock(); + var restartCmdlet = CreateTestRestartCmdlet(testInstance); + // Set up mock http client + var mockHttpClient = new Mock(); + mockHttpClient + .Setup(m => m.CallPostAsync(It.IsAny(), It.IsAny())) + .Returns(Task.FromResult(new HttpResponseMessage(HttpStatusCode.OK))); + restartCmdlet.AsAzureDataplaneClient = mockHttpClient.Object; - var mockAsAzureHttpClient = new Mock(); - var mockTokenCacheItemProvider = new Mock(); - var restartCmdlet = new RestartAzureAnalysisServer(mockAsAzureHttpClient.Object, mockTokenCacheItemProvider.Object) - { - CommandRuntime = commandRuntimeMock.Object - }; + restartCmdlet.InvokeBeginProcessing(); + restartCmdlet.ExecuteCmdlet(); + restartCmdlet.InvokeEndProcessing(); + } - // Setup - // Clear the the current profile - AsAzureClientSession.Instance.Profile.Environments.Clear(); - var mockAuthenticationProvider = new Mock(); - mockAuthenticationProvider.Setup( - authProvider => authProvider.GetAadAuthenticatedToken( - It.IsAny(), - It.IsAny(), -#if NETSTANDARD - It.IsAny>(), -#else - It.IsAny(), -#endif - It.IsAny(), - It.IsAny(), - It.IsAny())).Returns(testToken); - AsAzureClientSession.Instance.SetAsAzureAuthenticationProvider(mockAuthenticationProvider.Object); + /// + /// Create a properly mocked restart cmdlet. + /// + /// The test server instance name. + /// A properly mocked restart cmdlet. + private static RestartAzureAnalysisServer CreateTestRestartCmdlet(string instance) + { + var commandRuntimeMock = new Mock(); commandRuntimeMock.Setup(f => f.ShouldProcess(It.IsAny(), It.IsAny())).Returns(true); - restartCmdlet.Instance = testServer; - // Act - try + var cmdlet = new RestartAzureAnalysisServer() { - restartCmdlet.InvokeBeginProcessing(); - } - catch(Exception ex) - { - Assert.IsType(ex); - } + CommandRuntime = commandRuntimeMock.Object, + Instance = instance + }; + + return cmdlet; } + #endregion + #region TestExportLog + + /// + /// Assert that the export cmdlet works. + /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void ExportAzureASInstanceLogTest() { - Mock commandRuntimeMock = new Mock(); - // Setup - // Clear the the current profile - AsAzureClientSession.Instance.Profile.Environments.Clear(); - var mockAuthenticationProvider = new Mock(); - mockAuthenticationProvider.Setup( - authProvider => authProvider.GetAadAuthenticatedToken( - It.IsAny(), - It.IsAny(), -#if NETSTANDARD - It.IsAny>(), -#else - It.IsAny(), -#endif - It.IsAny(), - It.IsAny(), - It.IsAny())).Returns(testToken); - AsAzureClientSession.Instance.SetAsAzureAuthenticationProvider(mockAuthenticationProvider.Object); + var commandRuntimeMock = new Mock(); commandRuntimeMock.Setup(f => f.ShouldProcess(It.IsAny(), It.IsAny())).Returns(true); - // Set up AsAzureHttpClient mock - var mockAsAzureHttpClient = new Mock(); - mockAsAzureHttpClient - .Setup(obj => obj.CallPostAsync( - It.IsAny(), - It.Is(s => s.Contains("clusterResolve")), - It.IsAny(), - It.IsAny())) + var mockHttpClient = new Mock(); + mockHttpClient + .Setup(m => m.CallGetAsync(It.IsAny())) .Returns(Task.FromResult( - new HttpResponseMessage(HttpStatusCode.OK) - { - Content = new StringContent("{\"clusterFQDN\": \"resolved.westcentralus.asazure.windows.net\"}") - })); - mockAsAzureHttpClient.Setup(obj => obj.CallGetAsync(It.IsAny(), It.IsAny(), It.IsAny())).Returns( - Task.FromResult( new HttpResponseMessage(HttpStatusCode.OK) { Content = new StringContent("MOCKED STREAM CONTENT") })); - var mockTokenCacheItemProvider = new Mock(); - mockTokenCacheItemProvider - .Setup(obj => obj.GetTokenFromTokenCache(It.IsAny(), It.IsAny())) - .Returns(testToken); - - var exportLogCmdlet = new ExportAzureAnalysisServerLog(mockAsAzureHttpClient.Object, mockTokenCacheItemProvider.Object) - { - CommandRuntime = commandRuntimeMock.Object - }; - - var addAmdlet = new AddAzureASAccountCommand() + var exportCmdlet = new ExportAzureAnalysisServerLog() { - CommandRuntime = commandRuntimeMock.Object + CommandRuntime = commandRuntimeMock.Object, + Instance = testInstance, + OutputPath = System.IO.Path.GetTempFileName(), + AsAzureDataplaneClient = mockHttpClient.Object }; - DoLogin(addAmdlet); - exportLogCmdlet.Instance = testServer; try { - exportLogCmdlet.OutputPath = System.IO.Path.GetTempFileName(); - exportLogCmdlet.InvokeBeginProcessing(); - exportLogCmdlet.ExecuteCmdlet(); - exportLogCmdlet.InvokeEndProcessing(); + exportCmdlet.InvokeBeginProcessing(); + exportCmdlet.ExecuteCmdlet(); + exportCmdlet.InvokeEndProcessing(); } finally { - if (System.IO.File.Exists(exportLogCmdlet.OutputPath)) + if (System.IO.File.Exists(exportCmdlet.OutputPath)) { - System.IO.File.Delete(exportLogCmdlet.OutputPath); + System.IO.File.Delete(exportCmdlet.OutputPath); } } } + #endregion + #region TestSync + + /// + /// Assert that the sync cmdlet succeeds syncing a single db instance. + /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void SynchronizeAzureASInstance_SingleDB_Succeeds() { - Mock commandRuntimeMock = new Mock(); - - // Setup - // Clear the the current profile - AsAzureClientSession.Instance.Profile.Environments.Clear(); - var mockAuthenticationProvider = new Mock(); - mockAuthenticationProvider.Setup( - authProvider => authProvider.GetAadAuthenticatedToken( - It.IsAny(), - It.IsAny(), -#if NETSTANDARD - It.IsAny>(), -#else - It.IsAny(), -#endif - It.IsAny(), - It.IsAny(), - It.IsAny())).Returns(testToken); - AsAzureClientSession.Instance.SetAsAzureAuthenticationProvider(mockAuthenticationProvider.Object); - commandRuntimeMock.Setup(f => f.ShouldProcess(It.IsAny(), It.IsAny())).Returns(true); - - // Set up AsAzureHttpClient mock - var mockAsAzureHttpClient = new Mock(); - - // set up cluster resolve respnose - ClusterResolutionResult resolveResult = new ClusterResolutionResult() - { - ClusterFQDN = "resolved.westcentralus.asazure.windows.net", - CoreServerName = testServer + ":rw", - TenantId = Guid.NewGuid().ToString() - }; - mockAsAzureHttpClient - .Setup(obj => obj.CallPostAsync( - It.IsAny(), - It.Is(s => s.Contains("clusterResolve")), - It.IsAny(), - It.IsAny())) - .Returns(Task.FromResult( - new HttpResponseMessage(HttpStatusCode.OK) - { - Content = new StringContent(JsonConvert.SerializeObject(resolveResult)) - })); - - // set up sync respnose - var postResponse = new HttpResponseMessage(HttpStatusCode.Accepted); - postResponse.Headers.Location = new Uri("https://done"); - postResponse.Headers.RetryAfter = new RetryConditionHeaderValue(TimeSpan.FromMilliseconds(500)); - postResponse.Headers.Add("x-ms-root-activity-id", Guid.NewGuid().ToString()); - postResponse.Headers.Add("x-ms-current-utc-date", Guid.NewGuid().ToString()); - mockAsAzureHttpClient - .Setup(obj => obj.CallPostAsync( - It.IsAny(), - It.Is(s => s.Contains("sync")), - It.IsAny(), - It.IsAny(), - null)) - .Returns(Task>.FromResult(postResponse)); - - - var getResponse1 = new HttpResponseMessage(HttpStatusCode.SeeOther); - getResponse1.Headers.Location = new Uri("https://done"); - getResponse1.Headers.RetryAfter = new RetryConditionHeaderValue(TimeSpan.FromMilliseconds(500)); - mockAsAzureHttpClient - .Setup(obj => obj.CallGetAsync( - It.Is(u => u.OriginalString.Contains("1")), - string.Empty, - It.IsAny(), - It.IsAny())) - .Returns(Task.FromResult(getResponse1)); - - var getResponseSucceed = new HttpResponseMessage - { - StatusCode = HttpStatusCode.OK, - Content = new StringContent( - "{\n\"database\":\"db0\",\n\"syncstate\":\"Completed\"\n}", Encoding.UTF8, "application/json") - }; - - var getResponseError = new HttpResponseMessage(HttpStatusCode.InternalServerError); - - var finalResponses = new Queue(new [] { getResponseError, getResponseSucceed }); - mockAsAzureHttpClient - .Setup(obj => obj.CallGetAsync( - It.Is(u => u.OriginalString.Contains("done")), - string.Empty, - It.IsAny(), - It.IsAny())) - .Returns(() => Task.FromResult(finalResponses.Dequeue())); - - var mockTokenCacheItemProvider = new Mock(); - mockTokenCacheItemProvider - .Setup(obj => obj.GetTokenFromTokenCache(It.IsAny(), It.IsAny())) - .Returns(testToken); - var syncCmdlet = new SynchronizeAzureAzureAnalysisServer(mockAsAzureHttpClient.Object, mockTokenCacheItemProvider.Object) - { - CommandRuntime = commandRuntimeMock.Object - }; - - var addAmdlet = new AddAzureASAccountCommand() - { - CommandRuntime = commandRuntimeMock.Object - }; - - DoLogin(addAmdlet); - syncCmdlet.Instance = testServer + ":rw"; - syncCmdlet.Database = "db0"; - - // Act + var syncCmdlet = CreateTestSyncCmdlet(); syncCmdlet.InvokeBeginProcessing(); syncCmdlet.ExecuteCmdlet(); syncCmdlet.InvokeEndProcessing(); } + /// + /// Assert that the sync cmdlet will fail after too many retries. + /// [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void SynchronizeAzureASInstance_FailsAfterTooManyRetries() { - Mock commandRuntimeMock = new Mock(); - - // Setup - // Clear the the current profile - AsAzureClientSession.Instance.Profile.Environments.Clear(); - var mockAuthenticationProvider = new Mock(); - mockAuthenticationProvider.Setup( - authProvider => authProvider.GetAadAuthenticatedToken( - It.IsAny(), - It.IsAny(), -#if NETSTANDARD - It.IsAny>(), -#else - It.IsAny(), -#endif - It.IsAny(), - It.IsAny(), - It.IsAny())).Returns(testToken); - AsAzureClientSession.Instance.SetAsAzureAuthenticationProvider(mockAuthenticationProvider.Object); - commandRuntimeMock.Setup(f => f.ShouldProcess(It.IsAny(), It.IsAny())).Returns(true); - - // Set up AsAzureHttpClient mock - var mockAsAzureHttpClient = new Mock(); + var syncCmdlet = CreateTestSyncCmdlet(tooManyRetries: true); + syncCmdlet.InvokeBeginProcessing(); + Assert.Throws(() => syncCmdlet.ExecuteCmdlet()); + syncCmdlet.InvokeEndProcessing(); + } - // set up cluster resolve respnose - ClusterResolutionResult resolveResult = new ClusterResolutionResult() - { - ClusterFQDN = "resolved.westcentralus.asazure.windows.net", - CoreServerName = testServer + ":rw", - TenantId = Guid.NewGuid().ToString() - }; - mockAsAzureHttpClient - .Setup(obj => obj.CallPostAsync( - It.IsAny(), - It.Is(s => s.Contains("clusterResolve")), - It.IsAny(), - It.IsAny())) - .Returns(Task.FromResult( - new HttpResponseMessage(HttpStatusCode.OK) - { - Content = new StringContent(JsonConvert.SerializeObject(resolveResult)) - })); + /// + /// Create a properly mocked Sync cmdlet for testing. + /// + /// Flag to set the planned failures to be greater than the retry count. + /// A properly mocked sync cmdlet for testing. + private SynchronizeAzureAzureAnalysisServer CreateTestSyncCmdlet(bool tooManyRetries = false) + { + // Set up mock http client + var mockHttpClient = new Mock(); - // set up sync respnose var postResponse = new HttpResponseMessage(HttpStatusCode.Accepted); - postResponse.Headers.Location = new Uri("https://1"); + postResponse.Headers.Location = new Uri("https://done"); postResponse.Headers.RetryAfter = new RetryConditionHeaderValue(TimeSpan.FromMilliseconds(500)); postResponse.Headers.Add("x-ms-root-activity-id", Guid.NewGuid().ToString()); postResponse.Headers.Add("x-ms-current-utc-date", Guid.NewGuid().ToString()); - mockAsAzureHttpClient - .Setup(obj => obj.CallPostAsync( + mockHttpClient + .Setup(m => m.CallPostAsync( It.IsAny(), It.Is(s => s.Contains("sync")), - It.IsAny(), It.IsAny(), null)) .Returns(Task>.FromResult(postResponse)); - var getResponse1 = new HttpResponseMessage(HttpStatusCode.SeeOther); - getResponse1.Headers.Location = new Uri("https://done"); - getResponse1.Headers.RetryAfter = new RetryConditionHeaderValue(TimeSpan.FromMilliseconds(500)); - getResponse1.Headers.Add("x-ms-root-activity-id", Guid.NewGuid().ToString()); - getResponse1.Headers.Add("x-ms-current-utc-date", Guid.NewGuid().ToString()); - mockAsAzureHttpClient - .Setup(obj => obj.CallGetAsync( + var getResponse = new HttpResponseMessage(HttpStatusCode.SeeOther); + getResponse.Headers.Location = new Uri("https://done"); + getResponse.Headers.RetryAfter = new RetryConditionHeaderValue(TimeSpan.FromMilliseconds(500)); + getResponse.Headers.Add("x-ms-root-activity-id", Guid.NewGuid().ToString()); + getResponse.Headers.Add("x-ms-current-utc-date", Guid.NewGuid().ToString()); + mockHttpClient + .Setup(m => m.CallGetAsync( It.Is(u => u.OriginalString.Contains("1")), - It.IsAny(), - It.IsAny(), + string.Empty, It.IsAny())) - .Returns(Task.FromResult(getResponse1)); + .Returns(Task.FromResult(getResponse)); var getResponseSucceed = new HttpResponseMessage { StatusCode = HttpStatusCode.OK, - Content = new StringContent( - "{\n\"database\":\"db0\",\n\"syncstate\":\"Completed\"\n}", Encoding.UTF8, "application/json") + Content = new StringContent("{\n\"database\":\"db0\",\n\"syncstate\":\"Completed\"\n}", Encoding.UTF8, "application/json") }; getResponseSucceed.Headers.Add("x-ms-root-activity-id", Guid.NewGuid().ToString()); getResponseSucceed.Headers.Add("x-ms-current-utc-date", Guid.NewGuid().ToString()); @@ -575,58 +299,31 @@ public void SynchronizeAzureASInstance_FailsAfterTooManyRetries() getResponseError.Headers.Add("x-ms-root-activity-id", Guid.NewGuid().ToString()); getResponseError.Headers.Add("x-ms-current-utc-date", Guid.NewGuid().ToString()); - var finalResponses = new Queue(new[] { getResponseError, getResponseError, getResponseError, getResponseSucceed }); - mockAsAzureHttpClient - .Setup(obj => obj.CallGetAsync( + var finalResponses = tooManyRetries ? + new Queue(new[] { getResponseError, getResponseError, getResponseError, getResponseSucceed }) : + new Queue(new[] { getResponseError, getResponseSucceed }); + + mockHttpClient + .Setup(m => m.CallGetAsync( It.Is(u => u.OriginalString.Contains("done")), - It.IsAny(), - It.IsAny(), + string.Empty, It.IsAny())) .Returns(() => Task.FromResult(finalResponses.Dequeue())); - var mockTokenCacheItemProvider = new Mock(); - mockTokenCacheItemProvider - .Setup(obj => obj.GetTokenFromTokenCache(It.IsAny(), It.IsAny())) - .Returns(testToken); - var syncCmdlet = new SynchronizeAzureAzureAnalysisServer(mockAsAzureHttpClient.Object, mockTokenCacheItemProvider.Object) - { - CommandRuntime = commandRuntimeMock.Object - }; + Mock commandRuntimeMock = new Mock(); + commandRuntimeMock.Setup(f => f.ShouldProcess(It.IsAny(), It.IsAny())).Returns(true); - var addAmdlet = new AddAzureASAccountCommand() + var cmdlet = new SynchronizeAzureAzureAnalysisServer() { - CommandRuntime = commandRuntimeMock.Object + CommandRuntime = commandRuntimeMock.Object, + Instance = testInstance + ":rw", + Database = "db0", + AsAzureDataplaneClient = mockHttpClient.Object }; - DoLogin(addAmdlet); - syncCmdlet.Instance = testServer + ":rw"; - syncCmdlet.Database = "db0"; - - // Act - syncCmdlet.InvokeBeginProcessing(); - Assert.Throws(() => syncCmdlet.ExecuteCmdlet()); - syncCmdlet.InvokeEndProcessing(); + return cmdlet; } - - private void DoLogin(AddAzureASAccountCommand addCmdlet) - { - Mock commandRuntimeMock = new Mock(); - - addCmdlet.RolloutEnvironment = testAsAzureEnvironment; - var password = new SecureString(); - var testpwd = testPassword; - testpwd.All(c => { - password.AppendChar(c); - return true; - }); - addCmdlet.Credential = new PSCredential(testUser, password); - commandRuntimeMock.Setup(f => f.ShouldProcess(It.IsAny(), It.IsAny())).Returns(true); - // Act - addCmdlet.InvokeBeginProcessing(); - addCmdlet.ExecuteCmdlet(); - AsAzureClientSession.TokenCache.Deserialize(Encoding.ASCII.GetBytes(testToken)); - addCmdlet.InvokeEndProcessing(); - } + #endregion } } diff --git a/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 b/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 index f301998e4fc8..521906fa0320 100644 --- a/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 +++ b/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 2/19/2019 +# Generated on: 4/4/2019 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.0.2' +ModuleVersion = '1.1.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Analysis.dll' @@ -123,7 +123,8 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Deprecated AddAzureASAccount cmdlet' + ReleaseNotes = '* Using ServiceClient in dataplane cmdlets and removing the original authentication logic +* Making Add-AzureASAccount a wrapper of Connect-AzAccount to avoid a breaking change' # Prerelease string of this module # Prerelease = '' diff --git a/src/AnalysisServices/AnalysisServices/ChangeLog.md b/src/AnalysisServices/AnalysisServices/ChangeLog.md index bf4539f7e6e1..cff16667c2c0 100644 --- a/src/AnalysisServices/AnalysisServices/ChangeLog.md +++ b/src/AnalysisServices/AnalysisServices/ChangeLog.md @@ -19,6 +19,10 @@ --> ## Upcoming Release +## Version 1.1.0 +* Using ServiceClient in dataplane cmdlets and removing the original authentication logic +* Making Add-AzureASAccount a wrapper of Connect-AzAccount to avoid a breaking change + ## Version 1.0.2 * Deprecated AddAzureASAccount cmdlet diff --git a/src/AnalysisServices/AnalysisServices/Properties/AssemblyInfo.cs b/src/AnalysisServices/AnalysisServices/Properties/AssemblyInfo.cs index 78367520ee2a..76b8d2caef0b 100644 --- a/src/AnalysisServices/AnalysisServices/Properties/AssemblyInfo.cs +++ b/src/AnalysisServices/AnalysisServices/Properties/AssemblyInfo.cs @@ -34,5 +34,5 @@ // 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.2")] -[assembly: AssemblyFileVersion("1.0.2")] +[assembly: AssemblyVersion("1.1.0")] +[assembly: AssemblyFileVersion("1.1.0")] diff --git a/src/AnalysisServices/AnalysisServices/help/Add-AzAnalysisServicesAccount.md b/src/AnalysisServices/AnalysisServices/help/Add-AzAnalysisServicesAccount.md index ce74bfff3171..43bb4925d5c6 100644 --- a/src/AnalysisServices/AnalysisServices/help/Add-AzAnalysisServicesAccount.md +++ b/src/AnalysisServices/AnalysisServices/help/Add-AzAnalysisServicesAccount.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.Dataplane.dll-Help.xml Module Name: Az.AnalysisServices online version: https://docs.microsoft.com/en-us/powershell/module/az.analysisservices/add-azanalysisservicesaccount diff --git a/src/AnalysisServices/AnalysisServices/help/Az.AnalysisServices.md b/src/AnalysisServices/AnalysisServices/help/Az.AnalysisServices.md index eac6ad4059e2..49be06d3544d 100644 --- a/src/AnalysisServices/AnalysisServices/help/Az.AnalysisServices.md +++ b/src/AnalysisServices/AnalysisServices/help/Az.AnalysisServices.md @@ -1,4 +1,4 @@ ---- +--- Module Name: Az.AnalysisServices Module Guid: acace26c-1775-4100-85c0-20c4d71eaa21 Download Help Link: https://docs.microsoft.com/en-us/powershell/module/az.analysisservices diff --git a/src/AnalysisServices/AnalysisServices/help/Export-AzAnalysisServicesInstanceLog.md b/src/AnalysisServices/AnalysisServices/help/Export-AzAnalysisServicesInstanceLog.md index c7214c454c2e..f2ad822cb75d 100644 --- a/src/AnalysisServices/AnalysisServices/help/Export-AzAnalysisServicesInstanceLog.md +++ b/src/AnalysisServices/AnalysisServices/help/Export-AzAnalysisServicesInstanceLog.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.Dataplane.dll-Help.xml Module Name: Az.AnalysisServices online version: https://docs.microsoft.com/en-us/powershell/module/az.analysisservices/export-azanalysisservicesinstancelog @@ -13,8 +13,8 @@ Exports a log from an instance of Analysis Services server in the currently logg ## SYNTAX ``` -Export-AzAnalysisServicesInstanceLog -Instance -OutputPath [-Force] [-WhatIf] [-Confirm] - [] +Export-AzAnalysisServicesInstanceLog -OutputPath [-Force] [-Instance] [-PassThru] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION @@ -56,9 +56,9 @@ Parameter Sets: (All) Aliases: Required: True -Position: Named +Position: 0 Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -77,6 +77,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -PassThru +{{Fill PassThru Description}} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. diff --git a/src/AnalysisServices/AnalysisServices/help/Get-AzAnalysisServicesServer.md b/src/AnalysisServices/AnalysisServices/help/Get-AzAnalysisServicesServer.md index 47ea00eb0d91..420e3cd40359 100644 --- a/src/AnalysisServices/AnalysisServices/help/Get-AzAnalysisServicesServer.md +++ b/src/AnalysisServices/AnalysisServices/help/Get-AzAnalysisServicesServer.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll-Help.xml Module Name: Az.AnalysisServices online version: https://docs.microsoft.com/en-us/powershell/module/az.analysisservices/get-azanalysisservicesserver diff --git a/src/AnalysisServices/AnalysisServices/help/New-AzAnalysisServicesFirewallConfig.md b/src/AnalysisServices/AnalysisServices/help/New-AzAnalysisServicesFirewallConfig.md index 3be5b9d32442..bf794512924b 100644 --- a/src/AnalysisServices/AnalysisServices/help/New-AzAnalysisServicesFirewallConfig.md +++ b/src/AnalysisServices/AnalysisServices/help/New-AzAnalysisServicesFirewallConfig.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll-Help.xml Module Name: Az.AnalysisServices online version: https://docs.microsoft.com/en-us/powershell/module/az.analysisservices/new-azanalysisservicesfirewallconfig diff --git a/src/AnalysisServices/AnalysisServices/help/New-AzAnalysisServicesFirewallRule.md b/src/AnalysisServices/AnalysisServices/help/New-AzAnalysisServicesFirewallRule.md index 422d4ba42c53..e57b945abbd9 100644 --- a/src/AnalysisServices/AnalysisServices/help/New-AzAnalysisServicesFirewallRule.md +++ b/src/AnalysisServices/AnalysisServices/help/New-AzAnalysisServicesFirewallRule.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll-Help.xml Module Name: Az.AnalysisServices online version: https://docs.microsoft.com/en-us/powershell/module/az.analysisservices/new-azanalysisservicesfirewallrule diff --git a/src/AnalysisServices/AnalysisServices/help/New-AzAnalysisServicesServer.md b/src/AnalysisServices/AnalysisServices/help/New-AzAnalysisServicesServer.md index 295ff5c4bbe7..ef018a64faf5 100644 --- a/src/AnalysisServices/AnalysisServices/help/New-AzAnalysisServicesServer.md +++ b/src/AnalysisServices/AnalysisServices/help/New-AzAnalysisServicesServer.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll-Help.xml Module Name: Az.AnalysisServices online version: https://docs.microsoft.com/en-us/powershell/module/az.analysisservices/new-azanalysisservicesserver diff --git a/src/AnalysisServices/AnalysisServices/help/Remove-AzAnalysisServicesServer.md b/src/AnalysisServices/AnalysisServices/help/Remove-AzAnalysisServicesServer.md index 16883b9951fc..e633b9db9556 100644 --- a/src/AnalysisServices/AnalysisServices/help/Remove-AzAnalysisServicesServer.md +++ b/src/AnalysisServices/AnalysisServices/help/Remove-AzAnalysisServicesServer.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll-Help.xml Module Name: Az.AnalysisServices online version: https://docs.microsoft.com/en-us/powershell/module/az.analysisservices/remove-azanalysisservicesserver diff --git a/src/AnalysisServices/AnalysisServices/help/Restart-AzAnalysisServicesInstance.md b/src/AnalysisServices/AnalysisServices/help/Restart-AzAnalysisServicesInstance.md index 0ff0a2b8b0b9..411660d9afe3 100644 --- a/src/AnalysisServices/AnalysisServices/help/Restart-AzAnalysisServicesInstance.md +++ b/src/AnalysisServices/AnalysisServices/help/Restart-AzAnalysisServicesInstance.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.Dataplane.dll-Help.xml Module Name: Az.AnalysisServices online version: https://docs.microsoft.com/en-us/powershell/module/az.analysisservices/restart-azanalysisservicesinstance @@ -13,7 +13,7 @@ Restarts an instance of Analysis Services server in the currently logged in Envi ## SYNTAX ``` -Restart-AzAnalysisServicesInstance -Instance [-PassThru] [-WhatIf] [-Confirm] [] +Restart-AzAnalysisServicesInstance [-Instance] [-PassThru] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -40,9 +40,9 @@ Parameter Sets: (All) Aliases: Required: True -Position: Named +Position: 0 Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` diff --git a/src/AnalysisServices/AnalysisServices/help/Resume-AzAnalysisServicesServer.md b/src/AnalysisServices/AnalysisServices/help/Resume-AzAnalysisServicesServer.md index 0c22936dab93..b1ced000a4c4 100644 --- a/src/AnalysisServices/AnalysisServices/help/Resume-AzAnalysisServicesServer.md +++ b/src/AnalysisServices/AnalysisServices/help/Resume-AzAnalysisServicesServer.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll-Help.xml Module Name: Az.AnalysisServices online version: https://docs.microsoft.com/en-us/powershell/module/az.analysisservices/resume-azanalysisservicesserver diff --git a/src/AnalysisServices/AnalysisServices/help/Set-AzAnalysisServicesServer.md b/src/AnalysisServices/AnalysisServices/help/Set-AzAnalysisServicesServer.md index a6958c9e93aa..d04ed846d46f 100644 --- a/src/AnalysisServices/AnalysisServices/help/Set-AzAnalysisServicesServer.md +++ b/src/AnalysisServices/AnalysisServices/help/Set-AzAnalysisServicesServer.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll-Help.xml Module Name: Az.AnalysisServices online version: https://docs.microsoft.com/en-us/powershell/module/az.analysisservices/set-azanalysisservicesserver diff --git a/src/AnalysisServices/AnalysisServices/help/Suspend-AzAnalysisServicesServer.md b/src/AnalysisServices/AnalysisServices/help/Suspend-AzAnalysisServicesServer.md index f59cf13aad65..6aca543ac679 100644 --- a/src/AnalysisServices/AnalysisServices/help/Suspend-AzAnalysisServicesServer.md +++ b/src/AnalysisServices/AnalysisServices/help/Suspend-AzAnalysisServicesServer.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll-Help.xml Module Name: Az.AnalysisServices online version: https://docs.microsoft.com/en-us/powershell/module/az.analysisservices/suspend-azanalysisservicesserver diff --git a/src/AnalysisServices/AnalysisServices/help/Sync-AzAnalysisServicesInstance.md b/src/AnalysisServices/AnalysisServices/help/Sync-AzAnalysisServicesInstance.md index 902cf1a0046e..64eff5f43ebe 100644 --- a/src/AnalysisServices/AnalysisServices/help/Sync-AzAnalysisServicesInstance.md +++ b/src/AnalysisServices/AnalysisServices/help/Sync-AzAnalysisServicesInstance.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.Dataplane.dll-Help.xml Module Name: Az.AnalysisServices online version: https://docs.microsoft.com/en-us/powershell/module/az.analysisservices/sync-azanalysisservicesinstance @@ -14,7 +14,7 @@ Synchronizes a specified database on the specified instance of Analysis Services ## SYNTAX ``` -Sync-AzAnalysisServicesInstance [-Instance] [-Database] [-PassThru] [-WhatIf] [-Confirm] +Sync-AzAnalysisServicesInstance [-Database] [-Instance] [-PassThru] [-WhatIf] [-Confirm] [] ``` diff --git a/src/AnalysisServices/AnalysisServices/help/Test-AzAnalysisServicesServer.md b/src/AnalysisServices/AnalysisServices/help/Test-AzAnalysisServicesServer.md index 553fe3040d79..3b58cc6cacbc 100644 --- a/src/AnalysisServices/AnalysisServices/help/Test-AzAnalysisServicesServer.md +++ b/src/AnalysisServices/AnalysisServices/help/Test-AzAnalysisServicesServer.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll-Help.xml Module Name: Az.AnalysisServices online version: https://docs.microsoft.com/en-us/powershell/module/az.analysisservices/test-azanalysisservicesserver diff --git a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 index 451b97ed4745..9b370b90b2c7 100644 --- a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 +++ b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\AutoMapper.dll', diff --git a/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 b/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 index 4855dcab3c22..f478c9b571bb 100644 --- a/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 +++ b/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.ApplicationInsights.dll' diff --git a/src/Automation/Automation.Test/ScenarioTests/UpdateManagementTests.cs b/src/Automation/Automation.Test/ScenarioTests/UpdateManagementTests.cs index 137d7a5cf35f..294ddee70edd 100644 --- a/src/Automation/Automation.Test/ScenarioTests/UpdateManagementTests.cs +++ b/src/Automation/Automation.Test/ScenarioTests/UpdateManagementTests.cs @@ -159,5 +159,21 @@ public void CreateWindowsMonthlySUC() { TestRunner.RunTestScript("Test-CreateWindowsMonthlySoftwareUpdateConfiguration"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Service, Category.Automation)] + public void CreateWindowsIncludeKbNumbersSUC() + { + TestRunner.RunTestScript("Test-CreateWindowsIncludeKbNumbersSoftwareUpdateConfiguration"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Service, Category.Automation)] + public void CreateLinuxIncludePackageNameMasksSUC() + { + TestRunner.RunTestScript("Test-CreateLinuxIncludedPackageNameMasksSoftwareUpdateConfiguration"); + } } } \ No newline at end of file diff --git a/src/Automation/Automation.Test/ScenarioTests/UpdateManagementTests.ps1 b/src/Automation/Automation.Test/ScenarioTests/UpdateManagementTests.ps1 index e8c77805225c..922b01d0e2eb 100644 --- a/src/Automation/Automation.Test/ScenarioTests/UpdateManagementTests.ps1 +++ b/src/Automation/Automation.Test/ScenarioTests/UpdateManagementTests.ps1 @@ -424,3 +424,101 @@ function Test-CreateWindowsMonthlySoftwareUpdateConfiguration() { WaitForProvisioningState $name "Succeeded" } + +<# +Test-CreateWindowsIncludeKbNumbersSoftwareUpdateConfiguration +#> +function Test-CreateWindowsIncludeKbNumbersSoftwareUpdateConfiguration() { + + $aa = "Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP" + $rg = "DefaultResourceGroup-EJP" + $azureVMIdsW = @( + "/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/ikwjp12r201-RG/providers/Microsoft.Compute/virtualMachines/ikwjp12r201" + ) + + $name = "mo-monthly-01" + $startTime = ([DateTime]::Now).AddMinutes(10) + $duration = New-TimeSpan -Hours 2 + $s = New-AzAutomationSchedule -ResourceGroupName $rg ` + -AutomationAccountName $aa ` + -Name $name ` + -Description test-OneTime ` + -MonthInterval 1 ` + -DaysOfMonth Two,Five ` + -StartTime $startTime ` + -ForUpdate + + $suc = New-AzAutomationSoftwareUpdateConfiguration -ResourceGroupName $rg ` + -AutomationAccountName $aa ` + -Schedule $s ` + -Windows ` + -AzureVMResourceId $azureVMIdsW ` + -Duration $duration ` + -IncludedKbNumber @("2952664", "2990214") + + Assert-NotNull $suc "New-AzAutomationSoftwareUpdateConfiguration returned null" + Assert-AreEqual $suc.Name $name "Name of created software update configuration didn't match given name" + Assert-NotNull $suc.UpdateConfiguration "UpdateConfiguration of the software update configuration object is null" + Assert-NotNull $suc.ScheduleConfiguration "ScheduleConfiguration of the software update configuration object is null" + Assert-AreEqual $suc.ProvisioningState "Provisioning" "software update configuration provisioning state was not expected" + Assert-AreEqual $suc.UpdateConfiguration.OperatingSystem "Windows" "UpdateConfiguration Operating system is not expected" + Assert-AreEqual $suc.UpdateConfiguration.Duration $duration "UpdateConfiguration Duration is not expected" + Assert-AreEqual $suc.UpdateConfiguration.AzureVirtualMachines.Count 1 "UpdateConfiguration created doesn't have the correct number of azure virtual machines" + Assert-AreEqual $suc.UpdateConfiguration.NonAzureComputers.Count 0 "UpdateConfiguration doesn't have correct value of NonAzureComputers" + Assert-NotNull $suc.UpdateConfiguration.Windows "Linux property of UpdateConfiguration is null" + Assert-AreEqual $suc.UpdateConfiguration.Windows.IncludedKbNumbers.Count 2 + Assert-AreEqual $suc.UpdateConfiguration.Windows.IncludedKbNumbers[0] "2952664" + Assert-AreEqual $suc.UpdateConfiguration.Windows.IncludedKbNumbers[1] "2990214" + + WaitForProvisioningState $name "Succeeded" +} + + +<# +Test-CreateLinuxIncludedPackageNameMasksSoftwareUpdateConfiguration +#> +function Test-CreateLinuxIncludedPackageNameMasksSoftwareUpdateConfiguration() { + + $aa = "Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP" + $rg = "DefaultResourceGroup-EJP" + $azureVMIdsL = @( + "/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/ikanni-rhel74-omi-001-RG/providers/Microsoft.Compute/virtualMachines/ikanni-rhel74-omi-001" + ) + + $name = "mo-monthly-02" + $startTime = ([DateTime]::Now).AddMinutes(10) + $duration = New-TimeSpan -Hours 2 + $s = New-AzAutomationSchedule -ResourceGroupName $rg ` + -AutomationAccountName $aa ` + -Name $name ` + -Description test-OneTime ` + -MonthInterval 1 ` + -DaysOfMonth Two,Five ` + -StartTime $startTime ` + -ForUpdate + + $suc = New-AzAutomationSoftwareUpdateConfiguration -ResourceGroupName $rg ` + -AutomationAccountName $aa ` + -Schedule $s ` + -Linux ` + -AzureVMResourceId $azureVMIdsL ` + -Duration $duration ` + -IncludedPackageNameMask @("*kernel*", "pyhton*.x64") + + Assert-NotNull $suc "New-AzAutomationSoftwareUpdateConfiguration returned null" + Assert-AreEqual $suc.Name $name "Name of created software update configuration didn't match given name" + Assert-NotNull $suc.UpdateConfiguration "UpdateConfiguration of the software update configuration object is null" + Assert-NotNull $suc.ScheduleConfiguration "ScheduleConfiguration of the software update configuration object is null" + Assert-AreEqual $suc.ProvisioningState "Provisioning" "software update configuration provisioning state was not expected" + Assert-AreEqual $suc.UpdateConfiguration.OperatingSystem "Linux" "UpdateConfiguration Operating system is not expected" + Assert-AreEqual $suc.UpdateConfiguration.Duration $duration "UpdateConfiguration Duration is not expected" + Assert-AreEqual $suc.UpdateConfiguration.AzureVirtualMachines.Count 1 "UpdateConfiguration created doesn't have the correct number of azure virtual machines" + Assert-AreEqual $suc.UpdateConfiguration.NonAzureComputers.Count 0 "UpdateConfiguration doesn't have correct value of NonAzureComputers" + Assert-NotNull $suc.UpdateConfiguration.Linux "Windows property of UpdateConfiguration is null" + Assert-AreEqual $suc.UpdateConfiguration.Linux.IncludedPackageNameMasks.Count 2 + Assert-AreEqual $suc.UpdateConfiguration.Linux.IncludedPackageNameMasks[0] "*kernel*" + Assert-AreEqual $suc.UpdateConfiguration.Linux.IncludedPackageNameMasks[1] "pyhton*.x64" + + WaitForProvisioningState $name "Succeeded" +} + diff --git a/src/Automation/Automation.Test/SessionRecords/Commands.Automation.Test.UpdateManagementTests/CreateLinuxIncludePackageNameMasksSUC.json b/src/Automation/Automation.Test/SessionRecords/Commands.Automation.Test.UpdateManagementTests/CreateLinuxIncludePackageNameMasksSUC.json new file mode 100644 index 000000000000..6436b03ff869 --- /dev/null +++ b/src/Automation/Automation.Test/SessionRecords/Commands.Automation.Test.UpdateManagementTests/CreateLinuxIncludePackageNameMasksSUC.json @@ -0,0 +1,167 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/DefaultResourceGroup-EJP/providers/Microsoft.Automation/automationAccounts/Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP/softwareUpdateConfigurations/mo-monthly-02?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJiMzgxNjctZDNjYS00ZDFmLWEwMjAtOTQ4ZWVlMjFiNmJjL3Jlc291cmNlR3JvdXBzL0RlZmF1bHRSZXNvdXJjZUdyb3VwLUVKUC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL0F1dG9tYXRlLWQyYjM4MTY3LWQzY2EtNGQxZi1hMDIwLTk0OGVlZTIxYjZiYy1FSlAvc29mdHdhcmVVcGRhdGVDb25maWd1cmF0aW9ucy9tby1tb250aGx5LTAyP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"linux\": {\r\n \"includedPackageNameMasks\": [\r\n \"*kernel*\",\r\n \"pyhton*.x64\"\r\n ],\r\n \"rebootSetting\": \"IfRequired\"\r\n },\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/ikanni-rhel74-omi-001-RG/providers/Microsoft.Compute/virtualMachines/ikanni-rhel74-omi-001\"\r\n ]\r\n },\r\n \"scheduleInfo\": {\r\n \"startTime\": \"2019-03-25T14:58:38.316476-07:00\",\r\n \"expiryTime\": \"9999-12-31T15:59:59.9999999-08:00\",\r\n \"expiryTimeOffsetMinutes\": 0.0,\r\n \"isEnabled\": false,\r\n \"nextRunOffsetMinutes\": 0.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Month\",\r\n \"advancedSchedule\": {\r\n \"monthDays\": [\r\n 2,\r\n 5\r\n ]\r\n },\r\n \"creationTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"tasks\": {}\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7da5af78-acb0-4485-a34b-2319dac01204" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Automation.AutomationClient/3.8.1.0" + ], + "x-ms-activity-id": [ + "7f428889-5881-45c4-b05c-3e996f9811fb" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1028" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/DefaultResourceGroup-EJP/providers/Microsoft.Automation/automationAccounts/Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP/softwareUpdateConfigurations/mo-monthly-02?api-version=2017-05-15-preview" + ], + "x-ms-request-id": [ + "7f428889-5881-45c4-b05c-3e996f9811fb" + ], + "x-ms-location": [ + "https://management.azure.com/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/DefaultResourceGroup-EJP/providers/Microsoft.Automation/automationAccounts/Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP/softwareUpdateConfigurations/mo-monthly-02?api-version=2017-05-15-preview" + ], + "ocp-location": [ + "https://management.azure.com/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/DefaultResourceGroup-EJP/providers/Microsoft.Automation/automationAccounts/Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP/softwareUpdateConfigurations/mo-monthly-02?api-version=2017-05-15-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d25bf7c8-9645-458f-ad89-e10526ba39c9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190325T214839Z:d25bf7c8-9645-458f-ad89-e10526ba39c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 25 Mar 2019 21:48:39 GMT" + ], + "Content-Length": [ + "1532" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/DefaultResourceGroup-EJP/providers/Microsoft.Automation/automationAccounts/Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP/softwareUpdateConfigurations/mo-monthly-02\",\r\n \"name\": \"mo-monthly-02\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"windows\": null,\r\n \"linux\": {\r\n \"includedPackageClassifications\": \"Unclassified\",\r\n \"excludedPackageNameMasks\": null,\r\n \"includedPackageNameMasks\": [\r\n \"*kernel*\",\r\n \"pyhton*.x64\"\r\n ],\r\n \"rebootSetting\": \"IfRequired\",\r\n \"IsInvalidPackageNameMasks\": false\r\n },\r\n \"targets\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/ikanni-rhel74-omi-001-RG/providers/Microsoft.Compute/virtualMachines/ikanni-rhel74-omi-001\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"scheduleInfo\": {\r\n \"description\": null,\r\n \"startTime\": \"2019-03-25T14:58:00-07:00\",\r\n \"startTimeOffsetMinutes\": 0.0,\r\n \"expiryTime\": \"9999-12-31T15:59:00-08:00\",\r\n \"expiryTimeOffsetMinutes\": 0.0,\r\n \"isEnabled\": true,\r\n \"nextRun\": \"2019-04-02T14:58:00-07:00\",\r\n \"nextRunOffsetMinutes\": 0.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Month\",\r\n \"creationTime\": \"2019-03-25T14:48:39.623-07:00\",\r\n \"lastModifiedTime\": \"2019-03-25T14:48:39.623-07:00\",\r\n \"timeZone\": \"UTC\",\r\n \"advancedSchedule\": {\r\n \"monthDays\": [\r\n 2,\r\n 5\r\n ],\r\n \"monthlyOccurrences\": null,\r\n \"weekDays\": null\r\n }\r\n },\r\n \"provisioningState\": \"Provisioning\",\r\n \"createdBy\": \"{scrubbed}\",\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": null,\r\n \"postTask\": null\r\n },\r\n \"creationTime\": \"2019-03-25T14:48:39.627-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2019-03-25T14:48:39.66-07:00\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/DefaultResourceGroup-EJP/providers/Microsoft.Automation/automationAccounts/Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP/softwareUpdateConfigurations/mo-monthly-02?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJiMzgxNjctZDNjYS00ZDFmLWEwMjAtOTQ4ZWVlMjFiNmJjL3Jlc291cmNlR3JvdXBzL0RlZmF1bHRSZXNvdXJjZUdyb3VwLUVKUC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL0F1dG9tYXRlLWQyYjM4MTY3LWQzY2EtNGQxZi1hMDIwLTk0OGVlZTIxYjZiYy1FSlAvc29mdHdhcmVVcGRhdGVDb25maWd1cmF0aW9ucy9tby1tb250aGx5LTAyP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e66d6717-68bc-4581-b12e-02b1a05401f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Automation.AutomationClient/3.8.1.0" + ], + "x-ms-activity-id": [ + "d0fca1bb-2e19-4cf4-b7a9-0c8f62a6a56b" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d0fca1bb-2e19-4cf4-b7a9-0c8f62a6a56b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "03265217-2db6-4f84-a778-f7dbebdd5cd3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190325T214840Z:03265217-2db6-4f84-a778-f7dbebdd5cd3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 25 Mar 2019 21:48:40 GMT" + ], + "Content-Length": [ + "1529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/DefaultResourceGroup-EJP/providers/Microsoft.Automation/automationAccounts/Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP/softwareUpdateConfigurations/mo-monthly-02\",\r\n \"name\": \"mo-monthly-02\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"windows\": null,\r\n \"linux\": {\r\n \"includedPackageClassifications\": \"Unclassified\",\r\n \"excludedPackageNameMasks\": null,\r\n \"includedPackageNameMasks\": [\r\n \"*kernel*\",\r\n \"pyhton*.x64\"\r\n ],\r\n \"rebootSetting\": \"IfRequired\",\r\n \"IsInvalidPackageNameMasks\": false\r\n },\r\n \"targets\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/ikanni-rhel74-omi-001-RG/providers/Microsoft.Compute/virtualMachines/ikanni-rhel74-omi-001\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"scheduleInfo\": {\r\n \"description\": null,\r\n \"startTime\": \"2019-03-25T14:58:00-07:00\",\r\n \"startTimeOffsetMinutes\": 0.0,\r\n \"expiryTime\": \"9999-12-31T15:59:00-08:00\",\r\n \"expiryTimeOffsetMinutes\": 0.0,\r\n \"isEnabled\": true,\r\n \"nextRun\": \"2019-04-02T14:58:00-07:00\",\r\n \"nextRunOffsetMinutes\": 0.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Month\",\r\n \"creationTime\": \"2019-03-25T14:48:39.623-07:00\",\r\n \"lastModifiedTime\": \"2019-03-25T14:48:39.623-07:00\",\r\n \"timeZone\": \"UTC\",\r\n \"advancedSchedule\": {\r\n \"monthDays\": [\r\n 2,\r\n 5\r\n ],\r\n \"monthlyOccurrences\": null,\r\n \"weekDays\": null\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdBy\": \"{scrubbed}\",\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": null,\r\n \"postTask\": null\r\n },\r\n \"creationTime\": \"2019-03-25T14:48:39.627-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2019-03-25T14:48:39.66-07:00\"\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "d2b38167-d3ca-4d1f-a020-948eee21b6bc" + } +} \ No newline at end of file diff --git a/src/Automation/Automation.Test/SessionRecords/Commands.Automation.Test.UpdateManagementTests/CreateWindowsIncludeKbNumbersSUC.json b/src/Automation/Automation.Test/SessionRecords/Commands.Automation.Test.UpdateManagementTests/CreateWindowsIncludeKbNumbersSUC.json new file mode 100644 index 000000000000..204f36a86611 --- /dev/null +++ b/src/Automation/Automation.Test/SessionRecords/Commands.Automation.Test.UpdateManagementTests/CreateWindowsIncludeKbNumbersSUC.json @@ -0,0 +1,167 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/DefaultResourceGroup-EJP/providers/Microsoft.Automation/automationAccounts/Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP/softwareUpdateConfigurations/mo-monthly-01?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJiMzgxNjctZDNjYS00ZDFmLWEwMjAtOTQ4ZWVlMjFiNmJjL3Jlc291cmNlR3JvdXBzL0RlZmF1bHRSZXNvdXJjZUdyb3VwLUVKUC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL0F1dG9tYXRlLWQyYjM4MTY3LWQzY2EtNGQxZi1hMDIwLTk0OGVlZTIxYjZiYy1FSlAvc29mdHdhcmVVcGRhdGVDb25maWd1cmF0aW9ucy9tby1tb250aGx5LTAxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedKbNumbers\": [\r\n \"2952664\",\r\n \"2990214\"\r\n ],\r\n \"rebootSetting\": \"IfRequired\"\r\n },\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/ikwjp12r201-RG/providers/Microsoft.Compute/virtualMachines/ikwjp12r201\"\r\n ]\r\n },\r\n \"scheduleInfo\": {\r\n \"startTime\": \"2019-03-25T15:06:14.0221581-07:00\",\r\n \"expiryTime\": \"9999-12-31T15:59:59.9999999-08:00\",\r\n \"expiryTimeOffsetMinutes\": 0.0,\r\n \"isEnabled\": false,\r\n \"nextRunOffsetMinutes\": 0.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Month\",\r\n \"advancedSchedule\": {\r\n \"monthDays\": [\r\n 2,\r\n 5\r\n ]\r\n },\r\n \"creationTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"tasks\": {}\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "866a7c0d-21c4-4108-91c5-fea9ae1a47f9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Automation.AutomationClient/3.8.1.0" + ], + "x-ms-activity-id": [ + "49ad4c42-fc79-42f5-9e03-656e71699baf" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1001" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/DefaultResourceGroup-EJP/providers/Microsoft.Automation/automationAccounts/Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP/softwareUpdateConfigurations/mo-monthly-01?api-version=2017-05-15-preview" + ], + "x-ms-request-id": [ + "49ad4c42-fc79-42f5-9e03-656e71699baf" + ], + "x-ms-location": [ + "https://management.azure.com/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/DefaultResourceGroup-EJP/providers/Microsoft.Automation/automationAccounts/Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP/softwareUpdateConfigurations/mo-monthly-01?api-version=2017-05-15-preview" + ], + "ocp-location": [ + "https://management.azure.com/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/DefaultResourceGroup-EJP/providers/Microsoft.Automation/automationAccounts/Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP/softwareUpdateConfigurations/mo-monthly-01?api-version=2017-05-15-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "25ae1077-1a2a-4048-a44b-63effeede271" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190325T215615Z:25ae1077-1a2a-4048-a44b-63effeede271" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 25 Mar 2019 21:56:14 GMT" + ], + "Content-Length": [ + "1487" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/DefaultResourceGroup-EJP/providers/Microsoft.Automation/automationAccounts/Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP/softwareUpdateConfigurations/mo-monthly-01\",\r\n \"name\": \"mo-monthly-01\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Unclassified\",\r\n \"excludedKbNumbers\": null,\r\n \"includedKbNumbers\": [\r\n \"2952664\",\r\n \"2990214\"\r\n ],\r\n \"rebootSetting\": \"IfRequired\",\r\n \"IsInvalidKbNumbers\": false\r\n },\r\n \"linux\": null,\r\n \"targets\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/ikwjp12r201-RG/providers/Microsoft.Compute/virtualMachines/ikwjp12r201\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"scheduleInfo\": {\r\n \"description\": null,\r\n \"startTime\": \"2019-03-25T15:06:00-07:00\",\r\n \"startTimeOffsetMinutes\": 0.0,\r\n \"expiryTime\": \"9999-12-31T15:59:00-08:00\",\r\n \"expiryTimeOffsetMinutes\": 0.0,\r\n \"isEnabled\": true,\r\n \"nextRun\": \"2019-04-02T15:06:00-07:00\",\r\n \"nextRunOffsetMinutes\": 0.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Month\",\r\n \"creationTime\": \"2019-03-25T14:56:15.443-07:00\",\r\n \"lastModifiedTime\": \"2019-03-25T14:56:15.443-07:00\",\r\n \"timeZone\": \"UTC\",\r\n \"advancedSchedule\": {\r\n \"monthDays\": [\r\n 2,\r\n 5\r\n ],\r\n \"monthlyOccurrences\": null,\r\n \"weekDays\": null\r\n }\r\n },\r\n \"provisioningState\": \"Provisioning\",\r\n \"createdBy\": \"{scrubbed}\",\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": null,\r\n \"postTask\": null\r\n },\r\n \"creationTime\": \"2019-03-25T14:56:15.45-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2019-03-25T14:56:15.477-07:00\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/DefaultResourceGroup-EJP/providers/Microsoft.Automation/automationAccounts/Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP/softwareUpdateConfigurations/mo-monthly-01?api-version=2017-05-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJiMzgxNjctZDNjYS00ZDFmLWEwMjAtOTQ4ZWVlMjFiNmJjL3Jlc291cmNlR3JvdXBzL0RlZmF1bHRSZXNvdXJjZUdyb3VwLUVKUC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dG9tYXRpb24vYXV0b21hdGlvbkFjY291bnRzL0F1dG9tYXRlLWQyYjM4MTY3LWQzY2EtNGQxZi1hMDIwLTk0OGVlZTIxYjZiYy1FSlAvc29mdHdhcmVVcGRhdGVDb25maWd1cmF0aW9ucy9tby1tb250aGx5LTAxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTUtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f34a5695-18d5-44f1-88de-c633ea01ac87" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.6.3.9600.", + "Microsoft.Azure.Management.Automation.AutomationClient/3.8.1.0" + ], + "x-ms-activity-id": [ + "8fb48e19-645e-4dbc-9e92-8a44710d483f" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8fb48e19-645e-4dbc-9e92-8a44710d483f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "83bfb66f-b7a7-43af-ad1b-63cab716492a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190325T215616Z:83bfb66f-b7a7-43af-ad1b-63cab716492a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 25 Mar 2019 21:56:15 GMT" + ], + "Content-Length": [ + "1484" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/DefaultResourceGroup-EJP/providers/Microsoft.Automation/automationAccounts/Automate-d2b38167-d3ca-4d1f-a020-948eee21b6bc-EJP/softwareUpdateConfigurations/mo-monthly-01\",\r\n \"name\": \"mo-monthly-01\",\r\n \"type\": null,\r\n \"properties\": {\r\n \"updateConfiguration\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"windows\": {\r\n \"includedUpdateClassifications\": \"Unclassified\",\r\n \"excludedKbNumbers\": null,\r\n \"includedKbNumbers\": [\r\n \"2952664\",\r\n \"2990214\"\r\n ],\r\n \"rebootSetting\": \"IfRequired\",\r\n \"IsInvalidKbNumbers\": false\r\n },\r\n \"linux\": null,\r\n \"targets\": null,\r\n \"duration\": \"PT2H\",\r\n \"azureVirtualMachines\": [\r\n \"/subscriptions/d2b38167-d3ca-4d1f-a020-948eee21b6bc/resourceGroups/ikwjp12r201-RG/providers/Microsoft.Compute/virtualMachines/ikwjp12r201\"\r\n ],\r\n \"nonAzureComputerNames\": null\r\n },\r\n \"scheduleInfo\": {\r\n \"description\": null,\r\n \"startTime\": \"2019-03-25T15:06:00-07:00\",\r\n \"startTimeOffsetMinutes\": 0.0,\r\n \"expiryTime\": \"9999-12-31T15:59:00-08:00\",\r\n \"expiryTimeOffsetMinutes\": 0.0,\r\n \"isEnabled\": true,\r\n \"nextRun\": \"2019-04-02T15:06:00-07:00\",\r\n \"nextRunOffsetMinutes\": 0.0,\r\n \"interval\": 1,\r\n \"frequency\": \"Month\",\r\n \"creationTime\": \"2019-03-25T14:56:15.443-07:00\",\r\n \"lastModifiedTime\": \"2019-03-25T14:56:15.443-07:00\",\r\n \"timeZone\": \"UTC\",\r\n \"advancedSchedule\": {\r\n \"monthDays\": [\r\n 2,\r\n 5\r\n ],\r\n \"monthlyOccurrences\": null,\r\n \"weekDays\": null\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdBy\": \"{scrubbed}\",\r\n \"error\": null,\r\n \"tasks\": {\r\n \"preTask\": null,\r\n \"postTask\": null\r\n },\r\n \"creationTime\": \"2019-03-25T14:56:15.45-07:00\",\r\n \"lastModifiedBy\": null,\r\n \"lastModifiedTime\": \"2019-03-25T14:56:15.477-07:00\"\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "d2b38167-d3ca-4d1f-a020-948eee21b6bc" + } +} \ No newline at end of file diff --git a/src/Automation/Automation/Az.Automation.psd1 b/src/Automation/Automation/Az.Automation.psd1 index 59965680e34e..3b7919e94b90 100644 --- a/src/Automation/Automation/Az.Automation.psd1 +++ b/src/Automation/Automation/Az.Automation.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/20/2019 +# Generated on: 4/4/2019 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.2.0' +ModuleVersion = '1.2.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Automation.dll' @@ -168,10 +168,8 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Azure automation update management change to support the following new features : - * Dynamic grouping - * Pre-Post script - * Reboot Setting' + ReleaseNotes = '* Fixed New-AzAutomationSoftwareUpdateConfiguration cmdlet bug for Inclusions. Now parameter IncludedKbNumber and IncludedPackageNameMask should work. +* Bug fix for azure automation update management dynamic group' # Prerelease string of this module # Prerelease = '' diff --git a/src/Automation/Automation/ChangeLog.md b/src/Automation/Automation/ChangeLog.md index 5fb2c9352d86..76d0f2b581f8 100644 --- a/src/Automation/Automation/ChangeLog.md +++ b/src/Automation/Automation/ChangeLog.md @@ -19,12 +19,16 @@ --> ## Upcoming Release +## Version 1.2.1 +* Fixed New-AzAutomationSoftwareUpdateConfiguration cmdlet bug for Inclusions. Now parameter IncludedKbNumber and IncludedPackageNameMask should work. +* Bug fix for azure automation update management dynamic group + ## Version 1.2.0 * Azure automation update management change to support the following new features : * Dynamic grouping * Pre-Post script * Reboot Setting - + ## Version 1.1.2 * Fixed issue when retreiving certain monthly schedules in several Azure Automation cmdlets * Fix Get-AzAutomationDscNode returning just top 20 nodes. Now it returns all nodes diff --git a/src/Automation/Automation/Common/AutomationPSClientSoftwareUpdateConfiguration.cs b/src/Automation/Automation/Common/AutomationPSClientSoftwareUpdateConfiguration.cs index 94a8baacc9ca..24c12869c1d5 100644 --- a/src/Automation/Automation/Common/AutomationPSClientSoftwareUpdateConfiguration.cs +++ b/src/Automation/Automation/Common/AutomationPSClientSoftwareUpdateConfiguration.cs @@ -99,6 +99,7 @@ public SoftwareUpdateConfiguration CreateSoftwareUpdateConfiguration(string reso ? string.Join(",", updateConfig.Windows.IncludedUpdateClassifications.Select(c => c.ToString())) : null, ExcludedKbNumbers = updateConfig.Windows != null ? updateConfig.Windows.ExcludedKbNumbers : null, + IncludedKbNumbers = updateConfig.Windows != null ? updateConfig.Windows.IncludedKbNumbers : null, RebootSetting = updateConfig.Windows != null ? updateConfig.Windows.rebootSetting.ToString() : RebootSetting.IfRequired.ToString(), }, Linux = updateConfig.OperatingSystem == OperatingSystemType.Windows ? null : new Sdk.LinuxProperties() @@ -107,6 +108,7 @@ public SoftwareUpdateConfiguration CreateSoftwareUpdateConfiguration(string reso ? string.Join(",", updateConfig.Linux.IncludedPackageClassifications.Select(c => c.ToString())) : null, ExcludedPackageNameMasks = updateConfig.Linux != null ? updateConfig.Linux.ExcludedPackageNameMasks : null, + IncludedPackageNameMasks = updateConfig.Linux != null ? updateConfig.Linux.IncludedPackageNameMasks : null, RebootSetting = updateConfig.Windows != null ? updateConfig.Windows.rebootSetting.ToString() : RebootSetting.IfRequired.ToString(), }, Duration = updateConfig.Duration, diff --git a/src/Automation/Automation/Properties/AssemblyInfo.cs b/src/Automation/Automation/Properties/AssemblyInfo.cs index 5aa808933971..141380e25252 100644 --- a/src/Automation/Automation/Properties/AssemblyInfo.cs +++ b/src/Automation/Automation/Properties/AssemblyInfo.cs @@ -43,8 +43,8 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.2.0")] -[assembly: AssemblyFileVersion("1.2.0")] +[assembly: AssemblyVersion("1.2.1")] +[assembly: AssemblyFileVersion("1.2.1")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Automation.Test")] #endif diff --git a/src/Batch/Batch.Test/BatchAccounts/GetBatchAccountKeysCommandTests.cs b/src/Batch/Batch.Test/BatchAccounts/GetBatchAccountKeysCommandTests.cs index 22d679ed6af1..4a504f668fdc 100644 --- a/src/Batch/Batch.Test/BatchAccounts/GetBatchAccountKeysCommandTests.cs +++ b/src/Batch/Batch.Test/BatchAccounts/GetBatchAccountKeysCommandTests.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Accounts { public class GetBatchAccountKeysCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { - private GetBatchAccountKeysCommand cmdlet; + private GetBatchAccountKeyCommand cmdlet; private Mock batchClientMock; private Mock commandRuntimeMock; @@ -32,7 +32,7 @@ public GetBatchAccountKeysCommandTests(Xunit.Abstractions.ITestOutputHelper outp ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagement.Common.Models.XunitTracingInterceptor(output)); batchClientMock = new Mock(); commandRuntimeMock = new Mock(); - cmdlet = new GetBatchAccountKeysCommand() + cmdlet = new GetBatchAccountKeyCommand() { CommandRuntime = commandRuntimeMock.Object, BatchClient = batchClientMock.Object diff --git a/src/Batch/Batch.Test/ComputeNodes/GetBatchComputeNodeLoginSettingsCommandTests.cs b/src/Batch/Batch.Test/ComputeNodes/GetBatchComputeNodeLoginSettingsCommandTests.cs index fe9aa8986efd..eeb82f55b383 100644 --- a/src/Batch/Batch.Test/ComputeNodes/GetBatchComputeNodeLoginSettingsCommandTests.cs +++ b/src/Batch/Batch.Test/ComputeNodes/GetBatchComputeNodeLoginSettingsCommandTests.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.ComputeNodes { public class GetBatchComputeNodeLoginSettingsCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { - private GetBatchComputeNodeRemoteLoginSettingsCommand cmdlet; + private GetBatchComputeNodeRemoteLoginSettingCommand cmdlet; private Mock batchClientMock; private Mock commandRuntimeMock; @@ -38,7 +38,7 @@ public GetBatchComputeNodeLoginSettingsCommandTests(Xunit.Abstractions.ITestOutp ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagement.Common.Models.XunitTracingInterceptor(output)); batchClientMock = new Mock(); commandRuntimeMock = new Mock(); - cmdlet = new GetBatchComputeNodeRemoteLoginSettingsCommand() + cmdlet = new GetBatchComputeNodeRemoteLoginSettingCommand() { CommandRuntime = commandRuntimeMock.Object, BatchClient = batchClientMock.Object, diff --git a/src/Batch/Batch.Test/Jobs/GetBatchJobStatisticsCommandTests.cs b/src/Batch/Batch.Test/Jobs/GetBatchJobStatisticsCommandTests.cs index cadcc9f8e4c9..cd441347ed3b 100644 --- a/src/Batch/Batch.Test/Jobs/GetBatchJobStatisticsCommandTests.cs +++ b/src/Batch/Batch.Test/Jobs/GetBatchJobStatisticsCommandTests.cs @@ -31,7 +31,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Jobs { public class GetBatchJobStatisticsCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { - private GetBatchJobStatisticsCommand cmdlet; + private GetBatchJobStatisticCommand cmdlet; private Mock batchClientMock; private Mock commandRuntimeMock; @@ -40,7 +40,7 @@ public GetBatchJobStatisticsCommandTests(Xunit.Abstractions.ITestOutputHelper ou ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagement.Common.Models.XunitTracingInterceptor(output)); batchClientMock = new Mock(); commandRuntimeMock = new Mock(); - cmdlet = new GetBatchJobStatisticsCommand() + cmdlet = new GetBatchJobStatisticCommand() { CommandRuntime = commandRuntimeMock.Object, BatchClient = batchClientMock.Object, diff --git a/src/Batch/Batch.Test/Locations/GetBatchLocationQuotasCommandTests.cs b/src/Batch/Batch.Test/Locations/GetBatchLocationQuotasCommandTests.cs index ebce2c78d5f7..c6f398cc5efc 100644 --- a/src/Batch/Batch.Test/Locations/GetBatchLocationQuotasCommandTests.cs +++ b/src/Batch/Batch.Test/Locations/GetBatchLocationQuotasCommandTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Subscriptions { public class GetBatchLocationQuotasCommandTests : RMTestBase { - private GetBatchLocationQuotasCommand cmdlet; + private GetBatchLocationQuotaCommand cmdlet; private Mock batchClientMock; private Mock commandRuntimeMock; @@ -35,7 +35,7 @@ public GetBatchLocationQuotasCommandTests(Xunit.Abstractions.ITestOutputHelper o ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagement.Common.Models.XunitTracingInterceptor(output)); batchClientMock = new Mock(); commandRuntimeMock = new Mock(); - cmdlet = new GetBatchLocationQuotasCommand() + cmdlet = new GetBatchLocationQuotaCommand() { CommandRuntime = commandRuntimeMock.Object, BatchClient = batchClientMock.Object diff --git a/src/Batch/Batch.Test/Pools/GetBatchPoolNodeCountsCommandTests.cs b/src/Batch/Batch.Test/Pools/GetBatchPoolNodeCountsCommandTests.cs index ba3f6ed736ae..426e11fd2bc4 100644 --- a/src/Batch/Batch.Test/Pools/GetBatchPoolNodeCountsCommandTests.cs +++ b/src/Batch/Batch.Test/Pools/GetBatchPoolNodeCountsCommandTests.cs @@ -33,7 +33,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { public class GetBatchPoolNodeCountsCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { - private GetBatchPoolNodeCountsCommand cmdlet; + private GetBatchPoolNodeCountCommand cmdlet; private Mock batchClientMock; private Mock commandRuntimeMock; @@ -43,7 +43,7 @@ public GetBatchPoolNodeCountsCommandTests(Xunit.Abstractions.ITestOutputHelper o new ServiceManagement.Common.Models.XunitTracingInterceptor(output)); batchClientMock = new Mock(); commandRuntimeMock = new Mock(); - cmdlet = new GetBatchPoolNodeCountsCommand() + cmdlet = new GetBatchPoolNodeCountCommand() { CommandRuntime = commandRuntimeMock.Object, BatchClient = batchClientMock.Object, diff --git a/src/Batch/Batch.Test/Pools/GetBatchPoolStatisticsCommandTests.cs b/src/Batch/Batch.Test/Pools/GetBatchPoolStatisticsCommandTests.cs index 4e55b483afe1..1632444582d0 100644 --- a/src/Batch/Batch.Test/Pools/GetBatchPoolStatisticsCommandTests.cs +++ b/src/Batch/Batch.Test/Pools/GetBatchPoolStatisticsCommandTests.cs @@ -31,7 +31,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { public class GetBatchPoolStatisticsCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { - private GetBatchPoolStatisticsCommand cmdlet; + private GetBatchPoolStatisticCommand cmdlet; private Mock batchClientMock; private Mock commandRuntimeMock; @@ -40,7 +40,7 @@ public GetBatchPoolStatisticsCommandTests(Xunit.Abstractions.ITestOutputHelper o ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagement.Common.Models.XunitTracingInterceptor(output)); batchClientMock = new Mock(); commandRuntimeMock = new Mock(); - cmdlet = new GetBatchPoolStatisticsCommand() + cmdlet = new GetBatchPoolStatisticCommand() { CommandRuntime = commandRuntimeMock.Object, BatchClient = batchClientMock.Object, diff --git a/src/Batch/Batch.Test/Tasks/GetBatchTaskCountsCommandTests.cs b/src/Batch/Batch.Test/Tasks/GetBatchTaskCountsCommandTests.cs index f56a05d4b643..02819368295f 100644 --- a/src/Batch/Batch.Test/Tasks/GetBatchTaskCountsCommandTests.cs +++ b/src/Batch/Batch.Test/Tasks/GetBatchTaskCountsCommandTests.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Tasks { public class GetBatchTaskCountsCommandTests { - private GetBatchTaskCountsCommand cmdlet; + private GetBatchTaskCountCommand cmdlet; private Mock batchClientMock; private Mock commandRuntimeMock; @@ -37,7 +37,7 @@ public GetBatchTaskCountsCommandTests(Xunit.Abstractions.ITestOutputHelper outpu ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagement.Common.Models.XunitTracingInterceptor(output)); batchClientMock = new Mock(); commandRuntimeMock = new Mock(); - cmdlet = new GetBatchTaskCountsCommand() + cmdlet = new GetBatchTaskCountCommand() { CommandRuntime = commandRuntimeMock.Object, BatchClient = batchClientMock.Object, diff --git a/src/Batch/Batch/Az.Batch.psd1 b/src/Batch/Batch/Az.Batch.psd1 index 117f0f9b4c38..867da11ff132 100644 --- a/src/Batch/Batch/Az.Batch.psd1 +++ b/src/Batch/Batch/Az.Batch.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Batch.dll', @@ -80,9 +80,9 @@ FunctionsToExport = @() # 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 = 'Remove-AzBatchAccount', 'Get-AzBatchAccount', - 'Get-AzBatchAccountKeys', 'New-AzBatchAccount', + 'Get-AzBatchAccountKey', 'New-AzBatchAccount', 'New-AzBatchAccountKey', 'Set-AzBatchAccount', - 'New-AzBatchApplicationPackage', 'Get-AzBatchJobStatistics', + 'New-AzBatchApplicationPackage', 'Get-AzBatchJobStatistic', 'Remove-AzBatchApplication', 'Remove-AzBatchApplicationPackage', 'Get-AzBatchApplicationPackage', 'Get-AzBatchApplication', 'Set-AzBatchApplication', 'New-AzBatchApplication', @@ -90,7 +90,7 @@ CmdletsToExport = 'Remove-AzBatchAccount', 'Get-AzBatchAccount', 'New-AzBatchCertificate', 'Stop-AzBatchCertificateDeletion', 'Disable-AzBatchComputeNodeScheduling', 'Enable-AzBatchComputeNodeScheduling', - 'Get-AzBatchRemoteLoginSettings', 'Remove-AzBatchComputeNode', + 'Get-AzBatchRemoteLoginSetting', 'Remove-AzBatchComputeNode', 'Reset-AzBatchComputeNode', 'Restart-AzBatchComputeNode', 'Set-AzBatchComputeNodeUser', 'Get-AzBatchNodeFile', 'Get-AzBatchNodeFileContent', @@ -101,25 +101,26 @@ CmdletsToExport = 'Remove-AzBatchAccount', 'Get-AzBatchAccount', 'Remove-AzBatchJob', 'Set-AzBatchJob', 'Stop-AzBatchJob', 'Get-AzBatchJob', 'Get-AzBatchJobPreparationAndReleaseTaskStatus', 'Disable-AzBatchAutoScale', 'Enable-AzBatchAutoScale', - 'Get-AzBatchPoolStatistics', 'Get-AzBatchPoolUsageMetrics', + 'Get-AzBatchPoolStatistic', 'Get-AzBatchPoolUsageMetric', 'Get-AzBatchPool', 'Get-AzBatchNodeAgentSku', 'New-AzBatchPool', 'Remove-AzBatchPool', 'Set-AzBatchPool', 'Set-AzBatchPoolOSVersion', 'Start-AzBatchPoolResize', 'Stop-AzBatchPoolResize', - 'Test-AzBatchAutoScale', 'Get-AzBatchLocationQuotas', + 'Test-AzBatchAutoScale', 'Get-AzBatchLocationQuota', 'Get-AzBatchSubtask', 'Get-AzBatchTask', 'New-AzBatchTask', 'Remove-AzBatchTask', 'New-AzBatchComputeNodeUser', 'Remove-AzBatchComputeNodeUser', 'Enable-AzBatchTask', 'Set-AzBatchTask', 'Stop-AzBatchTask', 'Get-AzBatchComputeNode', 'Get-AzBatchJobSchedule', 'New-AzBatchJobSchedule', - 'Remove-AzBatchJobSchedule', 'Get-AzBatchTaskCounts', - 'Get-AzBatchPoolNodeCounts', + 'Remove-AzBatchJobSchedule', 'Get-AzBatchTaskCount', + 'Get-AzBatchPoolNodeCount', 'Start-AzBatchComputeNodeServiceLogUpload' # Variables to export from this module # VariablesToExport = @() # Aliases 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 aliases to export. -AliasesToExport = 'Reactivate-AzBatchTask', 'Get-AzBatchSubscriptionQuotas' +AliasesToExport = 'Reactivate-AzBatchTask', 'Get-AzBatchSubscriptionQuotas', 'Get-AzBatchAccountKeys', 'Get-AzBatchJobStatistics', 'Get-AzBatchLocationQuotas', + 'Get-AzBatchPoolNodeCounts', 'Get-AzBatchPoolStatistics', 'Get-AzBatchPoolUsageMetrics', 'Get-AzBatchRemoteLoginSettings', 'Get-AzBatchTaskCounts' # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/Batch/Batch/BatchAccounts/GetBatchAccountKeysCommand.cs b/src/Batch/Batch/BatchAccounts/GetBatchAccountKeyCommand.cs similarity index 84% rename from src/Batch/Batch/BatchAccounts/GetBatchAccountKeysCommand.cs rename to src/Batch/Batch/BatchAccounts/GetBatchAccountKeyCommand.cs index a37b1896e57d..3a47812ba5fc 100644 --- a/src/Batch/Batch/BatchAccounts/GetBatchAccountKeysCommand.cs +++ b/src/Batch/Batch/BatchAccounts/GetBatchAccountKeyCommand.cs @@ -13,13 +13,16 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; namespace Microsoft.Azure.Commands.Batch { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BatchAccountKeys"), OutputType(typeof(BatchAccountContext))] - public class GetBatchAccountKeysCommand : BatchCmdletBase + [GenericBreakingChange("Get-AzBatchAccountKeys alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BatchAccountKey"), OutputType(typeof(BatchAccountContext))] + [Alias("Get-AzBatchAccountKeys")] + public class GetBatchAccountKeyCommand : BatchCmdletBase { [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the Batch service account to query keys for.")] diff --git a/src/Batch/Batch/ChangeLog.md b/src/Batch/Batch/ChangeLog.md index f3aca9787688..059a11d6b5d4 100644 --- a/src/Batch/Batch/ChangeLog.md +++ b/src/Batch/Batch/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.0.0 * General availability of `Az.Batch` module diff --git a/src/Batch/Batch/ComputeNodes/GetBatchComputeNodeRemoteLoginSettingsCommand.cs b/src/Batch/Batch/ComputeNodes/GetBatchComputeNodeRemoteLoginSettingCommand.cs similarity index 82% rename from src/Batch/Batch/ComputeNodes/GetBatchComputeNodeRemoteLoginSettingsCommand.cs rename to src/Batch/Batch/ComputeNodes/GetBatchComputeNodeRemoteLoginSettingCommand.cs index 6ae4aa8c73af..e63096f59015 100644 --- a/src/Batch/Batch/ComputeNodes/GetBatchComputeNodeRemoteLoginSettingsCommand.cs +++ b/src/Batch/Batch/ComputeNodes/GetBatchComputeNodeRemoteLoginSettingCommand.cs @@ -14,13 +14,16 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Commands.Batch.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; namespace Microsoft.Azure.Commands.Batch { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchRemoteLoginSettings", DefaultParameterSetName = Constants.IdParameterSet),OutputType(typeof(PSRemoteLoginSettings))] - public class GetBatchComputeNodeRemoteLoginSettingsCommand : BatchObjectModelCmdletBase + [GenericBreakingChange("Get-AzBatchRemoteLoginSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchRemoteLoginSetting", DefaultParameterSetName = Constants.IdParameterSet),OutputType(typeof(PSRemoteLoginSettings))] + [Alias("Get-AzBatchRemoteLoginSettings")] + public class GetBatchComputeNodeRemoteLoginSettingCommand : BatchObjectModelCmdletBase { [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, HelpMessage = "The id of the pool containing the compute node for which to get remote login settings.")] diff --git a/src/Batch/Batch/Jobs/GetBatchJobStatisticsCommand.cs b/src/Batch/Batch/Jobs/GetBatchJobStatisticCommand.cs similarity index 77% rename from src/Batch/Batch/Jobs/GetBatchJobStatisticsCommand.cs rename to src/Batch/Batch/Jobs/GetBatchJobStatisticCommand.cs index a1245eb651c1..4969b1d54b79 100644 --- a/src/Batch/Batch/Jobs/GetBatchJobStatisticsCommand.cs +++ b/src/Batch/Batch/Jobs/GetBatchJobStatisticCommand.cs @@ -14,13 +14,16 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Commands.Batch.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; namespace Microsoft.Azure.Commands.Batch { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchJobStatistics"), OutputType(typeof(PSJobStatistics))] - public class GetBatchJobStatisticsCommand : BatchObjectModelCmdletBase + [GenericBreakingChange("Get-AzBatchJobStatistics alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchJobStatistic"), OutputType(typeof(PSJobStatistics))] + [Alias("Get-AzBatchJobStatistics")] + public class GetBatchJobStatisticCommand : BatchObjectModelCmdletBase { public override void ExecuteCmdlet() { diff --git a/src/Batch/Batch/Locations/GetBatchLocationQuotasCommand.cs b/src/Batch/Batch/Locations/GetBatchLocationQuotaCommand.cs similarity index 81% rename from src/Batch/Batch/Locations/GetBatchLocationQuotasCommand.cs rename to src/Batch/Batch/Locations/GetBatchLocationQuotaCommand.cs index 3097f592e282..a9b5da129750 100644 --- a/src/Batch/Batch/Locations/GetBatchLocationQuotasCommand.cs +++ b/src/Batch/Batch/Locations/GetBatchLocationQuotaCommand.cs @@ -14,15 +14,17 @@ using Microsoft.Azure.Commands.Batch.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; namespace Microsoft.Azure.Commands.Batch { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BatchLocationQuotas"), OutputType(typeof(PSBatchLocationQuotas))] + [GenericBreakingChange("Get-AzBatchLocationQuotas alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BatchLocationQuota"), OutputType(typeof(PSBatchLocationQuotas))] // This alias was added in 10/2016 for backwards compatibility - [Alias("Get-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BatchSubscriptionQuotas")] - public class GetBatchLocationQuotasCommand : BatchCmdletBase + [Alias("Get-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "BatchSubscriptionQuotas", "Get-AzBatchLocationQuotas")] + public class GetBatchLocationQuotaCommand : BatchCmdletBase { [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The region to get the quotas of the subscription in the Batch Service from.")] diff --git a/src/Batch/Batch/Pools/GetBatchPoolNodeCountsCommand.cs b/src/Batch/Batch/Pools/GetBatchPoolNodeCountCommand.cs similarity index 84% rename from src/Batch/Batch/Pools/GetBatchPoolNodeCountsCommand.cs rename to src/Batch/Batch/Pools/GetBatchPoolNodeCountCommand.cs index e88eecc2dff6..589ef7833a6e 100644 --- a/src/Batch/Batch/Pools/GetBatchPoolNodeCountsCommand.cs +++ b/src/Batch/Batch/Pools/GetBatchPoolNodeCountCommand.cs @@ -16,11 +16,14 @@ using Microsoft.Azure.Commands.Batch.Models; using System.Management.Automation; using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Batch { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchPoolNodeCounts",DefaultParameterSetName = Constants.AzureBatchPoolNodeCounts),OutputType(typeof(PSPoolNodeCounts))] - public class GetBatchPoolNodeCountsCommand : BatchObjectModelCmdletBase + [GenericBreakingChange("Get-AzBatchPoolNodeCounts alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchPoolNodeCount",DefaultParameterSetName = Constants.AzureBatchPoolNodeCounts),OutputType(typeof(PSPoolNodeCounts))] + [Alias("Get-AzBatchPoolNodeCounts")] + public class GetBatchPoolNodeCountCommand : BatchObjectModelCmdletBase { private const int defaultMaxCount = 10; diff --git a/src/Batch/Batch/Pools/GetBatchPoolStatisticsCommand.cs b/src/Batch/Batch/Pools/GetBatchPoolStatisticCommand.cs similarity index 77% rename from src/Batch/Batch/Pools/GetBatchPoolStatisticsCommand.cs rename to src/Batch/Batch/Pools/GetBatchPoolStatisticCommand.cs index 806c30b399d9..2a95fe9e4bee 100644 --- a/src/Batch/Batch/Pools/GetBatchPoolStatisticsCommand.cs +++ b/src/Batch/Batch/Pools/GetBatchPoolStatisticCommand.cs @@ -14,13 +14,16 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Commands.Batch.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; namespace Microsoft.Azure.Commands.Batch { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchPoolStatistics"), OutputType(typeof(PSPoolStatistics))] - public class GetBatchPoolStatisticsCommand : BatchObjectModelCmdletBase + [GenericBreakingChange("Get-AzBatchPoolStatistics alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchPoolStatistic"), OutputType(typeof(PSPoolStatistics))] + [Alias("Get-AzBatchPoolStatistics")] + public class GetBatchPoolStatisticCommand : BatchObjectModelCmdletBase { public override void ExecuteCmdlet() { diff --git a/src/Batch/Batch/Pools/GetBatchPoolUsageMetricsCommand.cs b/src/Batch/Batch/Pools/GetBatchPoolUsageMetricCommand.cs similarity index 86% rename from src/Batch/Batch/Pools/GetBatchPoolUsageMetricsCommand.cs rename to src/Batch/Batch/Pools/GetBatchPoolUsageMetricCommand.cs index d4c9d71ff375..e3eb2c69b3f2 100644 --- a/src/Batch/Batch/Pools/GetBatchPoolUsageMetricsCommand.cs +++ b/src/Batch/Batch/Pools/GetBatchPoolUsageMetricCommand.cs @@ -17,10 +17,13 @@ using Microsoft.Azure.Commands.Batch.Models; using System.Management.Automation; using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Batch { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchPoolUsageMetrics"), OutputType(typeof(PSPoolUsageMetrics))] + [GenericBreakingChange("Get-AzBatchPoolUsageMetrics alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchPoolUsageMetric"), OutputType(typeof(PSPoolUsageMetrics))] + [Alias("Get-AzBatchPoolUsageMetrics")] public class GetBatchPoolUsageMetrics : BatchObjectModelCmdletBase { [Parameter] diff --git a/src/Batch/Batch/Tasks/GetBatchTaskCountsCommand.cs b/src/Batch/Batch/Tasks/GetBatchTaskCountCommand.cs similarity index 83% rename from src/Batch/Batch/Tasks/GetBatchTaskCountsCommand.cs rename to src/Batch/Batch/Tasks/GetBatchTaskCountCommand.cs index 6976b9310ff6..d9fc63c5d20a 100644 --- a/src/Batch/Batch/Tasks/GetBatchTaskCountsCommand.cs +++ b/src/Batch/Batch/Tasks/GetBatchTaskCountCommand.cs @@ -14,13 +14,16 @@ using Microsoft.Azure.Batch; using Microsoft.Azure.Commands.Batch.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; namespace Microsoft.Azure.Commands.Batch { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchTaskCounts"),OutputType(typeof(PSTaskCounts))] - public class GetBatchTaskCountsCommand : BatchObjectModelCmdletBase + [GenericBreakingChange("Get-AzBatchTaskCounts alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchTaskCount"),OutputType(typeof(PSTaskCounts))] + [Alias("Get-AzBatchTaskCounts")] + public class GetBatchTaskCountCommand : BatchObjectModelCmdletBase { [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job for which to get task counts.")] diff --git a/src/Batch/Batch/help/Az.Batch.md b/src/Batch/Batch/help/Az.Batch.md index 418873f7d756..9449c29de688 100644 --- a/src/Batch/Batch/help/Az.Batch.md +++ b/src/Batch/Batch/help/Az.Batch.md @@ -1,4 +1,4 @@ ---- +--- Module Name: Az.Batch Module Guid: a8f00f40-1c1a-49b5-9db3-24076b75c3cf Download Help Link: https://docs.microsoft.com/en-us/powershell/module/az.batch @@ -41,7 +41,7 @@ Reactivates a task. ### [Get-AzBatchAccount](Get-AzBatchAccount.md) Gets a Batch account in the current subscription. -### [Get-AzBatchAccountKeys](Get-AzBatchAccountKeys.md) +### [Get-AzBatchAccountKey](Get-AzBatchAccountKey.md) Gets the keys of a Batch account. ### [Get-AzBatchApplication](Get-AzBatchApplication.md) @@ -65,10 +65,10 @@ Gets Batch job preparation and release task status. ### [Get-AzBatchJobSchedule](Get-AzBatchJobSchedule.md) Gets Batch job schedules. -### [Get-AzBatchJobStatistics](Get-AzBatchJobStatistics.md) +### [Get-AzBatchJobStatistic](Get-AzBatchJobStatistic.md) Gets job summary statistics for a Batch account. -### [Get-AzBatchLocationQuotas](Get-AzBatchLocationQuotas.md) +### [Get-AzBatchLocationQuota](Get-AzBatchLocationQuota.md) Gets the Batch service quotas for your subscription at the given location. ### [Get-AzBatchNodeAgentSku](Get-AzBatchNodeAgentSku.md) @@ -83,19 +83,19 @@ Gets a Batch node file. ### [Get-AzBatchPool](Get-AzBatchPool.md) Gets Batch pools under the specified Batch account. -### [Get-AzBatchPoolNodeCounts](Get-AzBatchPoolNodeCounts.md) +### [Get-AzBatchPoolNodeCount](Get-AzBatchPoolNodeCount.md) Gets Batch node counts per node state grouped by pool id. -### [Get-AzBatchPoolStatistics](Get-AzBatchPoolStatistics.md) +### [Get-AzBatchPoolStatistic](Get-AzBatchPoolStatistic.md) Gets pool summary statistics for a Batch account. -### [Get-AzBatchPoolUsageMetrics](Get-AzBatchPoolUsageMetrics.md) +### [Get-AzBatchPoolUsageMetric](Get-AzBatchPoolUsageMetric.md) Gets pool usage metrics for a Batch account. ### [Get-AzBatchRemoteDesktopProtocolFile](Get-AzBatchRemoteDesktopProtocolFile.md) Gets an RDP file from a compute node. -### [Get-AzBatchRemoteLoginSettings](Get-AzBatchRemoteLoginSettings.md) +### [Get-AzBatchRemoteLoginSetting](Get-AzBatchRemoteLoginSetting.md) Gets remote logon settings for a compute node. ### [Get-AzBatchSubtask](Get-AzBatchSubtask.md) @@ -104,7 +104,7 @@ Gets the subtask information of the specified task. ### [Get-AzBatchTask](Get-AzBatchTask.md) Gets the Batch tasks for a job. -### [Get-AzBatchTaskCounts](Get-AzBatchTaskCounts.md) +### [Get-AzBatchTaskCount](Get-AzBatchTaskCount.md) Gets the task counts for the specified job. ### [New-AzBatchAccount](New-AzBatchAccount.md) diff --git a/src/Batch/Batch/help/Get-AzBatchAccountKeys.md b/src/Batch/Batch/help/Get-AzBatchAccountKey.md similarity index 86% rename from src/Batch/Batch/help/Get-AzBatchAccountKeys.md rename to src/Batch/Batch/help/Get-AzBatchAccountKey.md index 3191833ddf6c..d06a326cb714 100644 --- a/src/Batch/Batch/help/Get-AzBatchAccountKeys.md +++ b/src/Batch/Batch/help/Get-AzBatchAccountKey.md @@ -1,12 +1,12 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.Batch.dll-Help.xml Module Name: Az.Batch ms.assetid: AFDE5ECD-29AB-4C91-98BF-1B8C9C3BB079 -online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchaccountkeys +online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchaccountkey schema: 2.0.0 --- -# Get-AzBatchAccountKeys +# Get-AzBatchAccountKey ## SYNOPSIS Gets the keys of a Batch account. @@ -14,25 +14,25 @@ Gets the keys of a Batch account. ## SYNTAX ``` -Get-AzBatchAccountKeys [-AccountName] [-ResourceGroupName ] +Get-AzBatchAccountKey [-AccountName] [-ResourceGroupName ] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzBatchAccountKeys** cmdlet gets the keys of an Azure Batch account in the current subscription. +The **Get-AzBatchAccountKey** cmdlet gets the keys of an Azure Batch account in the current subscription. ## EXAMPLES ### Example 1: Get batch account keys and save it in $Context variable for use later ``` -PS C:\>$Context = Get-AzBatchAccountKeys -AccountName myaccount +PS C:\>$Context = Get-AzBatchAccountKey -AccountName myaccount ``` This command gets the account details and stores it in a `$Context` object for use later. ### Example 2: Get batch account keys and display them ``` -PS C:\>$Context = Get-AzBatchAccountKeys -AccountName myaccount +PS C:\>$Context = Get-AzBatchAccountKey -AccountName myaccount PS C:\>$Context.PrimaryAccountKey ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789ABCDEFGHIJKLMN== PS C:\>$Context.SecondaryAccountKey diff --git a/src/Batch/Batch/help/Get-AzBatchJobStatistics.md b/src/Batch/Batch/help/Get-AzBatchJobStatistic.md similarity index 88% rename from src/Batch/Batch/help/Get-AzBatchJobStatistics.md rename to src/Batch/Batch/help/Get-AzBatchJobStatistic.md index 9cace0ab2d20..b8a5376841ca 100644 --- a/src/Batch/Batch/help/Get-AzBatchJobStatistics.md +++ b/src/Batch/Batch/help/Get-AzBatchJobStatistic.md @@ -1,12 +1,12 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.Batch.dll-Help.xml Module Name: Az.Batch ms.assetid: E655684D-9601-4A0B-BB09-EFB787EB2B1B -online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchjobstatistics +online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchjobstatistic schema: 2.0.0 --- -# Get-AzBatchJobStatistics +# Get-AzBatchJobStatistic ## SYNOPSIS Gets job summary statistics for a Batch account. @@ -14,19 +14,19 @@ Gets job summary statistics for a Batch account. ## SYNTAX ``` -Get-AzBatchJobStatistics -BatchContext [-DefaultProfile ] +Get-AzBatchJobStatistic -BatchContext [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzBatchJobStatistics** cmdlet gets lifetime summary statistics for all of the jobs in an Azure Batch account. +The **Get-AzBatchJobStatistic** cmdlet gets lifetime summary statistics for all of the jobs in an Azure Batch account. Statistics are aggregated across all jobs that have ever existed in the account, from account creation to the last update time of the statistics. ## EXAMPLES ### Example 1: Get summary statistics for all jobs ``` -PS C:\>Get-AzBatchJobStatistics -BatchContext $Context +PS C:\>Get-AzBatchJobStatistic -BatchContext $Context FailedTaskCount : 330 KernelCpuTime : 00:24:31.8440000 LastUpdateTime : 5/16/2016 6:00:00 PM @@ -98,7 +98,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-AzBatchAccountKeys](./Get-AzBatchAccountKeys.md) -[Get-AzBatchPoolStatistics](./Get-AzBatchPoolStatistics.md) +[Get-AzBatchPoolStatistic](./Get-AzBatchPoolStatistic.md) [Get-AzBatchPoolUsageMetrics](./Get-AzBatchPoolUsageMetrics.md) diff --git a/src/Batch/Batch/help/Get-AzBatchLocationQuotas.md b/src/Batch/Batch/help/Get-AzBatchLocationQuota.md similarity index 89% rename from src/Batch/Batch/help/Get-AzBatchLocationQuotas.md rename to src/Batch/Batch/help/Get-AzBatchLocationQuota.md index cf4644aa6603..c05ea4713716 100644 --- a/src/Batch/Batch/help/Get-AzBatchLocationQuotas.md +++ b/src/Batch/Batch/help/Get-AzBatchLocationQuota.md @@ -1,12 +1,12 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.Batch.dll-Help.xml Module Name: Az.Batch ms.assetid: A39A415A-B403-48D3-AF80-CF7CFE382577 -online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchlocationquotas +online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchlocationquota schema: 2.0.0 --- -# Get-AzBatchLocationQuotas +# Get-AzBatchLocationQuota ## SYNOPSIS Gets the Batch service quotas for your subscription at the given location. @@ -14,7 +14,7 @@ Gets the Batch service quotas for your subscription at the given location. ## SYNTAX ``` -Get-AzBatchLocationQuotas [-Location] [-DefaultProfile ] [] +Get-AzBatchLocationQuota [-Location] [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -24,7 +24,7 @@ Gets the Batch service quotas for the specified subscription at the given locati ### Example 1: Get the Batch service quotas for the subscription in the West US region ``` -PS C:\>Get-AzBatchLocationQuotas -Location "westus" +PS C:\>Get-AzBatchLocationQuota -Location "westus" AccountQuota Location ------------ -------- 1 westus diff --git a/src/Batch/Batch/help/Get-AzBatchPoolNodeCounts.md b/src/Batch/Batch/help/Get-AzBatchPoolNodeCount.md similarity index 82% rename from src/Batch/Batch/help/Get-AzBatchPoolNodeCounts.md rename to src/Batch/Batch/help/Get-AzBatchPoolNodeCount.md index a339b1b80e1d..2084443719c8 100644 --- a/src/Batch/Batch/help/Get-AzBatchPoolNodeCounts.md +++ b/src/Batch/Batch/help/Get-AzBatchPoolNodeCount.md @@ -1,11 +1,11 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.Batch.dll-Help.xml Module Name: Az.Batch -online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchpoolnodecounts +online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchpoolnodecount schema: 2.0.0 --- -# Get-AzBatchPoolNodeCounts +# Get-AzBatchPoolNodeCount ## SYNOPSIS Gets Batch node counts per node state grouped by pool id. @@ -14,30 +14,30 @@ Gets Batch node counts per node state grouped by pool id. ### AzureBatchPoolNodeCounts (Default) ``` -Get-AzBatchPoolNodeCounts -BatchContext [-DefaultProfile ] +Get-AzBatchPoolNodeCount -BatchContext [-DefaultProfile ] [] ``` ### PoolId ``` -Get-AzBatchPoolNodeCounts [-PoolId ] -BatchContext +Get-AzBatchPoolNodeCount [-PoolId ] -BatchContext [-DefaultProfile ] [] ``` ### ParentObject ``` -Get-AzBatchPoolNodeCounts [-Pool ] -BatchContext +Get-AzBatchPoolNodeCount [-Pool ] -BatchContext [-DefaultProfile ] [] ``` ### ODataFilter ``` -Get-AzBatchPoolNodeCounts [-MaxCount ] -BatchContext +Get-AzBatchPoolNodeCount [-MaxCount ] -BatchContext [-DefaultProfile ] [] ``` ## DESCRIPTION -The Get-AzBatchPoolNodeCounts cmdlet allows customers to get back node counts per node state grouped by pool. Possible node states are creating, idle, leavingPool, offline, preempted, rebooting, reimaging, running, starting, startTaskFailed, unknown, unusable and waitingForStartTask. The cmdlet takes PoolId or Pool parameter to filter only pool with pool id specified. +The Get-AzBatchPoolNodeCount cmdlet allows customers to get back node counts per node state grouped by pool. Possible node states are creating, idle, leavingPool, offline, preempted, rebooting, reimaging, running, starting, startTaskFailed, unknown, unusable and waitingForStartTask. The cmdlet takes PoolId or Pool parameter to filter only pool with pool id specified. ## EXAMPLES @@ -45,7 +45,7 @@ The Get-AzBatchPoolNodeCounts cmdlet allows customers to get back node counts pe ```powershell PS C:\> $batchContext = Get-AzBatchAccountKeys -AccountName "contosobatch" -PS C:\> Get-AzBatchPoolNodeCounts -BatchContext $batchContext +PS C:\> Get-AzBatchPoolNodeCount -BatchContext $batchContext PoolId Dedicated LowPriority ------ --------- ----------- @@ -58,13 +58,13 @@ List node counts per node state for pools under current batch account context. ### Example 2 ```powershell -PS C:\> Get-AzBatchPoolNodeCounts -BatchContext $batchContext -PoolId "contosopool1" +PS C:\> Get-AzBatchPoolNodeCount -BatchContext $batchContext -PoolId "contosopool1" PoolId Dedicated LowPriority ------ --------- ----------- contosopool1 Creating: 1, Idle: 1, Rebooting: 1, Running: 5, Total: 8 Total: 0 -PS C:\> $poolnodecounts = Get-AzBatchPoolNodeCounts -BatchContext $batchContext -PoolId "contosopool1" +PS C:\> $poolnodecounts = Get-AzBatchPoolNodeCount -BatchContext $batchContext -PoolId "contosopool1" PS C:\> $poolnodecounts.Dedicated Creating : 1 @@ -82,7 +82,7 @@ Unknown : 0 Unusable : 0 WaitingForStartTask : 0 -PS C:\> Get-AzBatchPool -Id "contosopool1" -BatchContext $batchContext | Get-AzBatchPoolNodeCounts -BatchContext $batchContext +PS C:\> Get-AzBatchPool -Id "contosopool1" -BatchContext $batchContext | Get-AzBatchPoolNodeCount -BatchContext $batchContext PoolId Dedicated LowPriority ------ --------- ----------- diff --git a/src/Batch/Batch/help/Get-AzBatchPoolStatistics.md b/src/Batch/Batch/help/Get-AzBatchPoolStatistic.md similarity index 89% rename from src/Batch/Batch/help/Get-AzBatchPoolStatistics.md rename to src/Batch/Batch/help/Get-AzBatchPoolStatistic.md index e4db6356e521..e10bbb32203d 100644 --- a/src/Batch/Batch/help/Get-AzBatchPoolStatistics.md +++ b/src/Batch/Batch/help/Get-AzBatchPoolStatistic.md @@ -1,12 +1,12 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.Batch.dll-Help.xml Module Name: Az.Batch ms.assetid: 8188C617-4895-4B43-8D3B-FA6FC5B868DD -online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchpoolstatistics +online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchpoolstatistic schema: 2.0.0 --- -# Get-AzBatchPoolStatistics +# Get-AzBatchPoolStatistic ## SYNOPSIS Gets pool summary statistics for a Batch account. @@ -14,12 +14,12 @@ Gets pool summary statistics for a Batch account. ## SYNTAX ``` -Get-AzBatchPoolStatistics -BatchContext [-DefaultProfile ] +Get-AzBatchPoolStatistic -BatchContext [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzBatchPoolStatistics** cmdlet gets the lifetime statistics for all of the pools in the specified account. +The **Get-AzBatchPoolStatistic** cmdlet gets the lifetime statistics for all of the pools in the specified account. Statistics are aggregated across all pools that have ever existed in the account, from account creation to the last update time of the statistics. ## EXAMPLES @@ -27,7 +27,7 @@ Statistics are aggregated across all pools that have ever existed in the account ### Example 1: Get resource statistics of all pools in an account ``` PS C:\>$Context = Get-AzBatchAccountKeys -AccountName "ContosoBatchAccount" -PS C:\> $PoolStatistics = Get-AzBatchPoolStatistics -BatchContext $Context +PS C:\> $PoolStatistics = Get-AzBatchPoolStatistic -BatchContext $Context PS C:\> $PoolStatistics.ResourceStatistics AverageCpuPercentage : 0.351232518750755 AverageDiskGiB : 55.2569014701165 @@ -101,6 +101,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-AzBatchPoolUsageMetrics](./Get-AzBatchPoolUsageMetrics.md) -[Get-AzBatchJobStatistics](./Get-AzBatchJobStatistics.md) +[Get-AzBatchJobStatistic](./Get-AzBatchJobStatistic.md) diff --git a/src/Batch/Batch/help/Get-AzBatchPoolUsageMetrics.md b/src/Batch/Batch/help/Get-AzBatchPoolUsageMetric.md similarity index 92% rename from src/Batch/Batch/help/Get-AzBatchPoolUsageMetrics.md rename to src/Batch/Batch/help/Get-AzBatchPoolUsageMetric.md index 845fc6e50393..4830d99b1077 100644 --- a/src/Batch/Batch/help/Get-AzBatchPoolUsageMetrics.md +++ b/src/Batch/Batch/help/Get-AzBatchPoolUsageMetric.md @@ -1,12 +1,12 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.Batch.dll-Help.xml Module Name: Az.Batch ms.assetid: 4B373447-3078-4C1F-932E-8337AB170DEB -online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchpoolusagemetrics +online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchpoolusagemetric schema: 2.0.0 --- -# Get-AzBatchPoolUsageMetrics +# Get-AzBatchPoolUsageMetric ## SYNOPSIS Gets pool usage metrics for a Batch account. @@ -14,12 +14,12 @@ Gets pool usage metrics for a Batch account. ## SYNTAX ``` -Get-AzBatchPoolUsageMetrics [-StartTime ] [-EndTime ] [-Filter ] +Get-AzBatchPoolUsageMetric [-StartTime ] [-EndTime ] [-Filter ] -BatchContext [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzBatchPoolUsageMetrics** cmdlet gets the usage metrics, aggregated by pool across individual time intervals, for the specified account. +The **Get-AzBatchPoolUsageMetric** cmdlet gets the usage metrics, aggregated by pool across individual time intervals, for the specified account. You can get the statistics for a specific pool and for a time range. ## EXAMPLES @@ -29,7 +29,7 @@ You can get the statistics for a specific pool and for a time range. PS C:\>$Context = Get-AzBatchAccountKeys -AccountName "ContosoBatchAccount" PS C:\> $StartTime = Get-Date -Date "2016-05-16 00:00:00Z" PS C:\> $EndTime = Get-Date -Date "2016-05-16 01:00:00Z" -PS C:\> Get-AzBatchPoolUsageMetrics -StartTime $StartTime -EndTime $EndTime -BatchContext $context +PS C:\> Get-AzBatchPoolUsageMetric -StartTime $StartTime -EndTime $EndTime -BatchContext $context DataEgressGiB : 6.68875873088837E-06 DataIngressGiB : 1.9485130906105E-05 EndTime : 5/16/2016 12:30:00 AM @@ -71,7 +71,7 @@ The final command returns all of the pool usage metrics, aggregated by pool, acr ### Example 2: Get pool usage metrics by using a filter ``` -PS C:\>Get-AzBatchPoolUsageMetrics -Filter "poolId eq 'ContosoPool'" -BatchContext $Context +PS C:\>Get-AzBatchPoolUsageMetric -Filter "poolId eq 'ContosoPool'" -BatchContext $Context DataEgressGiB : 9.0496614575386E-06 DataIngressGiB : 2.60043889284134E-05 EndTime : 5/16/2016 5:30:00 PM diff --git a/src/Batch/Batch/help/Get-AzBatchRemoteLoginSettings.md b/src/Batch/Batch/help/Get-AzBatchRemoteLoginSetting.md similarity index 87% rename from src/Batch/Batch/help/Get-AzBatchRemoteLoginSettings.md rename to src/Batch/Batch/help/Get-AzBatchRemoteLoginSetting.md index e97c7b2a62ca..417eba015571 100644 --- a/src/Batch/Batch/help/Get-AzBatchRemoteLoginSettings.md +++ b/src/Batch/Batch/help/Get-AzBatchRemoteLoginSetting.md @@ -1,12 +1,12 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.Batch.dll-Help.xml Module Name: Az.Batch ms.assetid: 07811B64-6A77-452C-B148-DE8C13E73DEF -online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchremoteloginsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchremoteloginsetting schema: 2.0.0 --- -# Get-AzBatchRemoteLoginSettings +# Get-AzBatchRemoteLoginSetting ## SYNOPSIS Gets remote logon settings for a compute node. @@ -15,25 +15,25 @@ Gets remote logon settings for a compute node. ### Id (Default) ``` -Get-AzBatchRemoteLoginSettings [-PoolId] [-ComputeNodeId] -BatchContext +Get-AzBatchRemoteLoginSetting [-PoolId] [-ComputeNodeId] -BatchContext [-DefaultProfile ] [] ``` ### InputObject ``` -Get-AzBatchRemoteLoginSettings [[-ComputeNode] ] -BatchContext +Get-AzBatchRemoteLoginSetting [[-ComputeNode] ] -BatchContext [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzBatchRemoteLoginSettings** cmdlet gets remote logon settings for a compute node in a virtual machines infrastructure-based pool. +The **Get-AzBatchRemoteLoginSetting** cmdlet gets remote logon settings for a compute node in a virtual machines infrastructure-based pool. ## EXAMPLES ### Example 1: Get remote logon settings for all nodes in a pool ``` PS C:\>$Context = Get-AzBatchAccountKeys -AccountName "ContosoBatchAccount" -PS C:\> Get-AzBatchComputeNode -PoolId "ContosoPool" -BatchContext $Context | Get-AzBatchRemoteLoginSettings -BatchContext $Context +PS C:\> Get-AzBatchComputeNode -PoolId "ContosoPool" -BatchContext $Context | Get-AzBatchRemoteLoginSetting -BatchContext $Context IPAddress Port --------- ---- 10.214.75.221 50002 @@ -50,7 +50,7 @@ The command gets the remote logon settings for each compute node. ### Example 2: Get remote logon settings for a node ``` PS C:\>$Context = Get-AzBatchAccountKeys -AccountName "ContosoBatchAccount" -PS C:\> Get-AzBatchRemoteLoginSettings -PoolId "ContosoPool" -ComputeNodeId "tvm-1900272697_1-20150330t205553z" -BatchContext $Context +PS C:\> Get-AzBatchRemoteLoginSetting -PoolId "ContosoPool" -ComputeNodeId "tvm-1900272697_1-20150330t205553z" -BatchContext $Context IPAddress Port --------- ---- 10.214.75.221 50000 diff --git a/src/Batch/Batch/help/Get-AzBatchTaskCounts.md b/src/Batch/Batch/help/Get-AzBatchTaskCount.md similarity index 90% rename from src/Batch/Batch/help/Get-AzBatchTaskCounts.md rename to src/Batch/Batch/help/Get-AzBatchTaskCount.md index b81de69d5a61..5e32a559ecf0 100644 --- a/src/Batch/Batch/help/Get-AzBatchTaskCounts.md +++ b/src/Batch/Batch/help/Get-AzBatchTaskCount.md @@ -1,11 +1,11 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.Batch.dll-Help.xml Module Name: Az.Batch -online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchtaskcounts +online version: https://docs.microsoft.com/en-us/powershell/module/az.batch/get-azbatchtaskcount schema: 2.0.0 --- -# Get-AzBatchTaskCounts +# Get-AzBatchTaskCount ## SYNOPSIS Gets the task counts for the specified job. @@ -14,18 +14,18 @@ Gets the task counts for the specified job. ### Id ``` -Get-AzBatchTaskCounts [-JobId] -BatchContext +Get-AzBatchTaskCount [-JobId] -BatchContext [-DefaultProfile ] [] ``` ### ParentObject ``` -Get-AzBatchTaskCounts [[-Job] ] -BatchContext +Get-AzBatchTaskCount [[-Job] ] -BatchContext [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzBatchTaskCounts** cmdlet gets the Azure Batch tasks count for a Batch job. +The **Get-AzBatchTaskCount** cmdlet gets the Azure Batch tasks count for a Batch job. Specify a job by either the *JobId* parameter or the *Job* parameter. Task counts provide a count of the tasks by active, running or completed task state, and a count of tasks which succeeded or failed. Tasks in the preparing state are counted as running. If the validationStatus is unvalidated, then the Batch service has not been able to check state counts against the task states as reported in the List Tasks API. The validationStatus may be unvalidated if the job contains more than 200,000 tasks. @@ -33,7 +33,7 @@ Task counts provide a count of the tasks by active, running or completed task st ### Example 1: Get task counts by ID ``` -PS C:\> Get-AzBatchTaskCounts -JobId "Job01" -Id "Task03" -BatchContext $Context +PS C:\> Get-AzBatchTaskCount -JobId "Job01" -Id "Task03" -BatchContext $Context Active : 1 Completed : 0 Failed : 0 diff --git a/src/Billing/Billing/Az.Billing.psd1 b/src/Billing/Billing/Az.Billing.psd1 index 7b05ca7d9f93..b8918c8c06ee 100644 --- a/src/Billing/Billing/Az.Billing.psd1 +++ b/src/Billing/Billing/Az.Billing.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Billing.dll', diff --git a/src/Cdn/Cdn/Az.Cdn.psd1 b/src/Cdn/Cdn/Az.Cdn.psd1 index 900958c01ef3..a036c8976e67 100644 --- a/src/Cdn/Cdn/Az.Cdn.psd1 +++ b/src/Cdn/Cdn/Az.Cdn.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Cdn.dll' @@ -87,13 +87,13 @@ CmdletsToExport = 'Get-AzCdnProfile', 'Get-AzCdnProfileSsoUrl', 'New-AzCdnProfil 'Disable-AzCdnCustomDomainHttps', 'Get-AzCdnProfileResourceUsage', 'Confirm-AzCdnEndpointProbeUrl', 'Get-AzCdnEndpointResourceUsage', 'Get-AzCdnProfileSupportedOptimizationType', - 'Get-AzCdnSubscriptionResourceUsage', 'Get-AzCdnEdgeNodes' + 'Get-AzCdnSubscriptionResourceUsage', 'Get-AzCdnEdgeNode' # Variables to export from this module # VariablesToExport = @() # Aliases 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 aliases to export. -AliasesToExport = 'Validate-AzCdnCustomDomain' +AliasesToExport = 'Validate-AzCdnCustomDomain', 'Get-AzCdnEdgeNodes' # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/Cdn/Cdn/ChangeLog.md b/src/Cdn/Cdn/ChangeLog.md index 77ac33754ed3..766a6fcbd01b 100644 --- a/src/Cdn/Cdn/ChangeLog.md +++ b/src/Cdn/Cdn/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.1.0 * Added new Powershell cmdlets for Enable/Disable Custom Domain Https and deprecated the old ones diff --git a/src/Cdn/Cdn/Subscription/GetAzureRmCdnEdgeNodes.cs b/src/Cdn/Cdn/Subscription/GetAzureRmCdnEdgeNode.cs similarity index 80% rename from src/Cdn/Cdn/Subscription/GetAzureRmCdnEdgeNodes.cs rename to src/Cdn/Cdn/Subscription/GetAzureRmCdnEdgeNode.cs index 9058f65dc426..c11439162de2 100644 --- a/src/Cdn/Cdn/Subscription/GetAzureRmCdnEdgeNodes.cs +++ b/src/Cdn/Cdn/Subscription/GetAzureRmCdnEdgeNode.cs @@ -19,11 +19,14 @@ using Microsoft.Azure.Management.Cdn; using System.Linq; using Microsoft.Azure.Commands.Cdn.EdgeNodes; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Cdn.Endpoint { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "CdnEdgeNodes"), OutputType(typeof(PSEdgeNode))] - public class GetAzureRmCdnEdgeNodes : AzureCdnCmdletBase + [GenericBreakingChange("Get-AzCdnEdgeNodes alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "CdnEdgeNode"), OutputType(typeof(PSEdgeNode))] + [Alias("Get-AzCdnEdgeNodes")] + public class GetAzureRmCdnEdgeNode : AzureCdnCmdletBase { public override void ExecuteCmdlet() diff --git a/src/Cdn/Cdn/help/Az.Cdn.md b/src/Cdn/Cdn/help/Az.Cdn.md index 371b2bae9f91..700dbb48ed38 100644 --- a/src/Cdn/Cdn/help/Az.Cdn.md +++ b/src/Cdn/Cdn/help/Az.Cdn.md @@ -29,7 +29,7 @@ Enables custom HTTPS. ### [Get-AzCdnCustomDomain](Get-AzCdnCustomDomain.md) Gets a CDN custom domain. -### [Get-AzCdnEdgeNodes](Get-AzCdnEdgeNodes.md) +### [Get-AzCdnEdgeNode](Get-AzCdnEdgeNode.md) Gets Azure CDN edgenodes. ### [Get-AzCdnEndpoint](Get-AzCdnEndpoint.md) diff --git a/src/Cdn/Cdn/help/Get-AzCdnEdgeNodes.md b/src/Cdn/Cdn/help/Get-AzCdnEdgeNode.md similarity index 90% rename from src/Cdn/Cdn/help/Get-AzCdnEdgeNodes.md rename to src/Cdn/Cdn/help/Get-AzCdnEdgeNode.md index 97a666fa2836..afb7660d1a6e 100644 --- a/src/Cdn/Cdn/help/Get-AzCdnEdgeNodes.md +++ b/src/Cdn/Cdn/help/Get-AzCdnEdgeNode.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Cdn.dll-Help.xml Module Name: Az.Cdn -online version: https://docs.microsoft.com/en-us/powershell/module/az.cdn/get-azcdnedgenodes +online version: https://docs.microsoft.com/en-us/powershell/module/az.cdn/get-azcdnedgenode schema: 2.0.0 --- -# Get-AzCdnEdgeNodes +# Get-AzCdnEdgeNode ## SYNOPSIS Gets Azure CDN edgenodes. @@ -13,7 +13,7 @@ Gets Azure CDN edgenodes. ## SYNTAX ``` -Get-AzCdnEdgeNodes [-DefaultProfile ] [] +Get-AzCdnEdgeNode [-DefaultProfile ] [] ``` ## DESCRIPTION diff --git a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 index 4a818f336687..a16146592913 100644 --- a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 +++ b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.CognitiveServices.dll' @@ -76,7 +76,7 @@ FunctionsToExport = @() # 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 = 'Get-AzCognitiveServicesAccount', 'Get-AzCognitiveServicesAccountKey', - 'Get-AzCognitiveServicesAccountSkus', + 'Get-AzCognitiveServicesAccountSku', 'Get-AzCognitiveServicesAccountType', 'Get-AzCognitiveServicesAccountUsage', 'New-AzCognitiveServicesAccount', @@ -88,7 +88,7 @@ CmdletsToExport = 'Get-AzCognitiveServicesAccount', # VariablesToExport = @() # Aliases 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 aliases to export. -AliasesToExport = @() +AliasesToExport = @('Get-AzCognitiveServicesAccountSkus') # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/CognitiveServices/CognitiveServices/ChangeLog.md b/src/CognitiveServices/CognitiveServices/ChangeLog.md index ff3c3c13fdc7..e42cb13e6c96 100644 --- a/src/CognitiveServices/CognitiveServices/ChangeLog.md +++ b/src/CognitiveServices/CognitiveServices/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.0.1 * Added CustomSubdomainName as a new optional parameter for New-AzCognitiveServicesAccount which is used to specify subdomain for the resource. diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/GetAzureCognitiveServicesAccountSkus.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/GetAzureCognitiveServicesAccountSku.cs similarity index 89% rename from src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/GetAzureCognitiveServicesAccountSkus.cs rename to src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/GetAzureCognitiveServicesAccountSku.cs index 98bc06c3ea4e..06d2773ef7dc 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/GetAzureCognitiveServicesAccountSkus.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/GetAzureCognitiveServicesAccountSku.cs @@ -19,14 +19,17 @@ using System; using System.Linq; using System.Management.Automation; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Management.CognitiveServices { /// /// Get Available Skus for Cognitive Services Account /// - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "CognitiveServicesAccountSkus", DefaultParameterSetName = GetSkusWithFilterParamSetName), + [GenericBreakingChange("Get-AzCognitiveServicesAccountSkus alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "CognitiveServicesAccountSku", DefaultParameterSetName = GetSkusWithFilterParamSetName), OutputType(typeof(ResourceSku))] + [Alias("Get-AzCognitiveServicesAccountSkus")] public class GetAzureCognitiveServicesAccountSkusCommand : CognitiveServicesAccountBaseCmdlet { protected const string GetSkusWithFilterParamSetName = "GetSkusWithFilter"; diff --git a/src/CognitiveServices/CognitiveServices/help/Az.CognitiveServices.md b/src/CognitiveServices/CognitiveServices/help/Az.CognitiveServices.md index fe8e594be901..68608811cdaa 100644 --- a/src/CognitiveServices/CognitiveServices/help/Az.CognitiveServices.md +++ b/src/CognitiveServices/CognitiveServices/help/Az.CognitiveServices.md @@ -17,7 +17,7 @@ Gets an account. ### [Get-AzCognitiveServicesAccountKey](Get-AzCognitiveServicesAccountKey.md) Gets the API keys for an account. -### [Get-AzCognitiveServicesAccountSkus](Get-AzCognitiveServicesAccountSkus.md) +### [Get-AzCognitiveServicesAccountSku](Get-AzCognitiveServicesAccountSku.md) Gets the available SKUs for an account. ### [Get-AzCognitiveServicesAccountType](Get-AzCognitiveServicesAccountType.md) diff --git a/src/CognitiveServices/CognitiveServices/help/Get-AzCognitiveServicesAccountSkus.md b/src/CognitiveServices/CognitiveServices/help/Get-AzCognitiveServicesAccountSku.md similarity index 84% rename from src/CognitiveServices/CognitiveServices/help/Get-AzCognitiveServicesAccountSkus.md rename to src/CognitiveServices/CognitiveServices/help/Get-AzCognitiveServicesAccountSku.md index 6f7fb49ba3f1..a98e83d1b4d2 100644 --- a/src/CognitiveServices/CognitiveServices/help/Get-AzCognitiveServicesAccountSkus.md +++ b/src/CognitiveServices/CognitiveServices/help/Get-AzCognitiveServicesAccountSku.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.CognitiveServices.dll-Help.xml Module Name: Az.CognitiveServices ms.assetid: 386F09F0-2EEC-4B55-825C-F2E88D3B60AA -online version: https://docs.microsoft.com/en-us/powershell/module/az.cognitiveservices/get-azcognitiveservicesaccountskus +online version: https://docs.microsoft.com/en-us/powershell/module/az.cognitiveservices/get-azcognitiveservicesaccountsku schema: 2.0.0 --- -# Get-AzCognitiveServicesAccountSkus +# Get-AzCognitiveServicesAccountSku ## SYNOPSIS Gets the available SKUs for an account. @@ -14,12 +14,12 @@ Gets the available SKUs for an account. ## SYNTAX ``` -Get-AzCognitiveServicesAccountSkus [-Type ] [-Location ] +Get-AzCognitiveServicesAccountSku [-Type ] [-Location ] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzCognitiveServicesAccountSkus** cmdlet gets the available SKUs for a Cognitive Services account. +The **Get-AzCognitiveServicesAccountSku** cmdlet gets the available SKUs for a Cognitive Services account. The SKU is the tier plan for an account. It defines the price, call limit, and rate for the account. The F0 SKU is a free tier. @@ -29,7 +29,7 @@ Paid tiers include S0, S1, S2, and so on. ### Example 1 ```powershell -PS C:\> (Get-AzCognitiveServicesAccountSkus -Type 'TextAnalytics' -Location "westus").Value | Select-Object -E +PS C:\> (Get-AzCognitiveServicesAccountSku -Type 'TextAnalytics' -Location "westus").Value | Select-Object -E xpandProperty Sku; Name Tier diff --git a/src/Compute/Compute/Az.Compute.psd1 b/src/Compute/Compute/Az.Compute.psd1 index fba1a311c294..b7f62515de39 100644 --- a/src/Compute/Compute/Az.Compute.psd1 +++ b/src/Compute/Compute/Az.Compute.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/20/2019 +# Generated on: 4/4/2019 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.6.0' +ModuleVersion = '1.7.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.Management.Compute.dll', @@ -99,7 +99,7 @@ CmdletsToExport = 'Remove-AzAvailabilitySet', 'Get-AzAvailabilitySet', 'Save-AzVMImage', 'Set-AzVM', 'Add-AzVMAdditionalUnattendContent', 'Add-AzVMSshPublicKey', 'Add-AzVMSecret', 'Remove-AzVMSecret', 'Remove-AzVMNetworkInterface', 'Remove-AzVMDataDisk', - 'Set-AzVMBootDiagnostics', 'Set-AzVMDataDisk', 'Set-AzVMPlan', + 'Set-AzVMBootDiagnostic', 'Set-AzVMDataDisk', 'Set-AzVMPlan', 'Set-AzVMSourceImage', 'Set-AzVMOSDisk', 'Get-AzVMBootDiagnosticsData', 'Get-AzVM', 'Update-AzVM', 'Restart-AzVM', 'New-AzVM', 'Start-AzVM', 'Stop-AzVM', 'Remove-AzVM', @@ -152,7 +152,7 @@ CmdletsToExport = 'Remove-AzAvailabilitySet', 'Get-AzAvailabilitySet', 'Set-AzVmssDiskEncryptionExtension', 'Disable-AzVmssDiskEncryption', 'Get-AzVmssDiskEncryption', 'Get-AzVmssVMDiskEncryption', 'Export-AzLogAnalyticRequestRateByInterval', - 'Export-AzLogAnalyticThrottledRequests', + 'Export-AzLogAnalyticThrottledRequest', 'Repair-AzVmssServiceFabricUpdateDomain', 'New-AzVMDataDisk', 'Update-AzVmssVM', 'New-AzVmssIpTagConfig', 'Invoke-AzVmssVMRunCommand', 'New-AzGallery', 'Update-AzGallery', @@ -168,7 +168,7 @@ CmdletsToExport = 'Remove-AzAvailabilitySet', 'Get-AzAvailabilitySet', # Aliases 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 aliases to export. AliasesToExport = 'Get-AzVmssDiskEncryptionStatus', - 'Get-AzVmssVMDiskEncryptionStatus', 'Repair-AzVmssServiceFabricUD' + 'Get-AzVmssVMDiskEncryptionStatus', 'Repair-AzVmssServiceFabricUD', 'Export-AzLogAnalyticThrottledRequests', 'Set-AzVMBootDiagnostics' # DSC resources to export from this module # DscResourcesToExport = @() @@ -197,8 +197,8 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Fix issue with path resolution in Get-AzVmBootDiagnosticsData -* Update Compute client library to 25.0.0.' + ReleaseNotes = '* Add HyperVGeneration parameter to New-AzDiskConfig and New-AzSnapshotConfig +* Allow VM creation with galley image from other tenants. ' # Prerelease string of this module # Prerelease = '' diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index e47f29518450..202d08218dbb 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -19,6 +19,9 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. + +## Version 1.7.0 * Add HyperVGeneration parameter to New-AzDiskConfig and New-AzSnapshotConfig * Allow VM creation with galley image from other tenants. diff --git a/src/Compute/Compute/Generated/LogAnalytic/LogAnalyticExportThrottledRequestsMethod.cs b/src/Compute/Compute/Generated/LogAnalytic/LogAnalyticExportThrottledRequestsMethod.cs index d8b0c9d5d0f2..75d51820019e 100644 --- a/src/Compute/Compute/Generated/LogAnalytic/LogAnalyticExportThrottledRequestsMethod.cs +++ b/src/Compute/Compute/Generated/LogAnalytic/LogAnalyticExportThrottledRequestsMethod.cs @@ -23,6 +23,7 @@ using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System; using System.Collections; using System.Collections.Generic; @@ -31,8 +32,10 @@ namespace Microsoft.Azure.Commands.Compute.Automation { - [Cmdlet(VerbsData.Export, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "LogAnalyticThrottledRequests", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)] + [GenericBreakingChange("Export-AzLogAnalyticThrottledRequests alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet(VerbsData.Export, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "LogAnalyticThrottledRequest", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)] [OutputType(typeof(PSLogAnalyticsOperationResult))] + [Alias("Export-AzLogAnalyticThrottledRequests")] public partial class ExportAzureRmLogAnalyticThrottledRequests : ComputeAutomationBaseCmdlet { public override void ExecuteCmdlet() diff --git a/src/Compute/Compute/Properties/AssemblyInfo.cs b/src/Compute/Compute/Properties/AssemblyInfo.cs index 35e8828bf131..555f7eff00a4 100644 --- a/src/Compute/Compute/Properties/AssemblyInfo.cs +++ b/src/Compute/Compute/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("91792853-487B-4DC2-BE6C-DD09A0A1BC10")] -[assembly: AssemblyVersion("1.6.0")] -[assembly: AssemblyFileVersion("1.6.0")] +[assembly: AssemblyVersion("1.7.0")] +[assembly: AssemblyFileVersion("1.7.0")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Compute.Test")] #endif diff --git a/src/Compute/Compute/VirtualMachine/Config/SetAzureVMBootDiagnosticsCommand.cs b/src/Compute/Compute/VirtualMachine/Config/SetAzureVMBootDiagnosticsCommand.cs index 318ca60160d3..7e4e181b333e 100644 --- a/src/Compute/Compute/VirtualMachine/Config/SetAzureVMBootDiagnosticsCommand.cs +++ b/src/Compute/Compute/VirtualMachine/Config/SetAzureVMBootDiagnosticsCommand.cs @@ -27,7 +27,9 @@ namespace Microsoft.Azure.Commands.Compute { - [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VMBootDiagnostics"),OutputType(typeof(PSVirtualMachine))] + [GenericBreakingChange("Set-AzVMBootDiagnostics alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VMBootDiagnostic"),OutputType(typeof(PSVirtualMachine))] + [Alias("Set-AzVMBootDiagnostics")] public class SetAzureVMBootDiagnosticsCommand : Microsoft.Azure.Commands.ResourceManager.Common.AzureRMCmdlet { private const string EnableParameterSet = "EnableBootDiagnostics"; diff --git a/src/Compute/Compute/help/Az.Compute.md b/src/Compute/Compute/help/Az.Compute.md index ad8d212e4730..d9701fc60d6f 100644 --- a/src/Compute/Compute/help/Az.Compute.md +++ b/src/Compute/Compute/help/Az.Compute.md @@ -74,7 +74,7 @@ Disables disk encryption on a VM scale set. ### [Export-AzLogAnalyticRequestRateByInterval](Export-AzLogAnalyticRequestRateByInterval.md) Export logs that show Api requests made by this subscription in the given time window to show throttling activities. -### [Export-AzLogAnalyticThrottledRequests](Export-AzLogAnalyticThrottledRequests.md) +### [Export-AzLogAnalyticThrottledRequest](Export-AzLogAnalyticThrottledRequest.md) Export logs that show total throttled Api requests for this subscription in the given time window. ### [Get-AzAvailabilitySet](Get-AzAvailabilitySet.md) @@ -446,7 +446,7 @@ Sets the backup extension properties on a virtual machine. ### [Set-AzVMBginfoExtension](Set-AzVMBginfoExtension.md) Adds the BGInfo extension to a virtual machine. -### [Set-AzVMBootDiagnostics](Set-AzVMBootDiagnostics.md) +### [Set-AzVMBootDiagnostic](Set-AzVMBootDiagnostic.md) Modifies boot diagnostics properties of a virtual machine. ### [Set-AzVMChefExtension](Set-AzVMChefExtension.md) diff --git a/src/Compute/Compute/help/Export-AzLogAnalyticThrottledRequests.md b/src/Compute/Compute/help/Export-AzLogAnalyticThrottledRequest.md similarity index 91% rename from src/Compute/Compute/help/Export-AzLogAnalyticThrottledRequests.md rename to src/Compute/Compute/help/Export-AzLogAnalyticThrottledRequest.md index 575a87c32eae..2c41b0a091d3 100644 --- a/src/Compute/Compute/help/Export-AzLogAnalyticThrottledRequests.md +++ b/src/Compute/Compute/help/Export-AzLogAnalyticThrottledRequest.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml Module Name: Az.Compute -online version: https://docs.microsoft.com/en-us/powershell/module/az.compute/export-azloganalyticthrottledrequests +online version: https://docs.microsoft.com/en-us/powershell/module/az.compute/export-azloganalyticthrottledrequest schema: 2.0.0 --- -# Export-AzLogAnalyticThrottledRequests +# Export-AzLogAnalyticThrottledRequest ## SYNOPSIS Export logs that show total throttled Api requests for this subscription in the given time window. @@ -13,7 +13,7 @@ Export logs that show total throttled Api requests for this subscription in the ## SYNTAX ``` -Export-AzLogAnalyticThrottledRequests [-Location] [-FromTime] [-ToTime] +Export-AzLogAnalyticThrottledRequest [-Location] [-FromTime] [-ToTime] [-BlobContainerSasUri] [-GroupByOperationName] [-GroupByResourceName] [-GroupByThrottlePolicy] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -29,7 +29,7 @@ For an overview of the Compute Resource Provider's API throttling, see https://d ### Example 1 ``` -PS C:\> Export-AzLogAnalyticThrottledRequests -Location 'West Central US' -FromTime '2018-02-20T17:54:14.8806951-08:00' -ToTime '2018-02-22T17:54:17.5832413-08:00' -BlobContainerSasUri 'https://wkuotest1.blob.core.windows.net/mylogs?someSasUri' -GroupByOperationName +PS C:\> Export-AzLogAnalyticThrottledRequest -Location 'West Central US' -FromTime '2018-02-20T17:54:14.8806951-08:00' -ToTime '2018-02-22T17:54:17.5832413-08:00' -BlobContainerSasUri 'https://wkuotest1.blob.core.windows.net/mylogs?someSasUri' -GroupByOperationName ``` This command stores the total throttled Microsoft.Compute API calls between 2018-02-20T17:54:14 and 2018-02-22T17:54:17 in the given SAS URI, aggregated by operation name. diff --git a/src/Compute/Compute/help/Set-AzVMBootDiagnostics.md b/src/Compute/Compute/help/Set-AzVMBootDiagnostic.md similarity index 88% rename from src/Compute/Compute/help/Set-AzVMBootDiagnostics.md rename to src/Compute/Compute/help/Set-AzVMBootDiagnostic.md index 08f37653d0e2..308470a5b218 100644 --- a/src/Compute/Compute/help/Set-AzVMBootDiagnostics.md +++ b/src/Compute/Compute/help/Set-AzVMBootDiagnostic.md @@ -1,12 +1,12 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml Module Name: Az.Compute ms.assetid: 9A6F140C-9F1C-4701-9603-FC6107FCAF92 -online version: https://docs.microsoft.com/en-us/powershell/module/az.compute/set-azvmbootdiagnostics +online version: https://docs.microsoft.com/en-us/powershell/module/az.compute/set-azvmbootdiagnostic schema: 2.0.0 --- -# Set-AzVMBootDiagnostics +# Set-AzVMBootDiagnostic ## SYNOPSIS Modifies boot diagnostics properties of a virtual machine. @@ -15,25 +15,25 @@ Modifies boot diagnostics properties of a virtual machine. ### EnableBootDiagnostics ``` -Set-AzVMBootDiagnostics [-VM] [-Enable] [-ResourceGroupName] +Set-AzVMBootDiagnostic [-VM] [-Enable] [-ResourceGroupName] [[-StorageAccountName] ] [-DefaultProfile ] [] ``` ### DisableBootDiagnostics ``` -Set-AzVMBootDiagnostics [-VM] [-Disable] [-DefaultProfile ] +Set-AzVMBootDiagnostic [-VM] [-Disable] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Set-AzVMBootDiagnostics** cmdlet modifies boot diagnostics properties of a virtual machine. +The **Set-AzVMBootDiagnostic** cmdlet modifies boot diagnostics properties of a virtual machine. ## EXAMPLES ### Example 1: Enable boot diagnostics ``` PS C:\> $VM = Get-AzVM -ResourceGroupName "ResourceGroup11" -Name "ContosoVM07" -PS C:\> Set-AzVMBootDiagnostics -VM $VM -Enable -ResourceGroupName "ResourceGroup11" -StorageAccountName "DiagnosticStorage" +PS C:\> Set-AzVMBootDiagnostic -VM $VM -Enable -ResourceGroupName "ResourceGroup11" -StorageAccountName "DiagnosticStorage" ``` The first command gets the virtual machine named ContosoVM07 by using **Get-AzVM**. diff --git a/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 b/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 index cc060e633304..ae30456c43d3 100644 --- a/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 +++ b/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 @@ -1,9 +1,9 @@ # -# Module manifest for module 'Az.ContainerInstance' +# Module manifest for module 'PSGet_Az.ContainerInstance' # # Generated by: Microsoft Corporation # -# Generated on: 12/12/2018 +# Generated on: 4/4/2019 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.0.0' +ModuleVersion = '1.0.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\AutoMapper.dll', @@ -111,7 +111,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = 'General availability for Az.ContainerInstance module.' + ReleaseNotes = '* Fixed issue in the -Command parameter of New-AzContainerGroup which added a trailing empty argument' # Prerelease string of this module # Prerelease = '' diff --git a/src/ContainerInstance/ContainerInstance/ChangeLog.md b/src/ContainerInstance/ContainerInstance/ChangeLog.md index 159d837c842a..7a325dd29bb3 100644 --- a/src/ContainerInstance/ContainerInstance/ChangeLog.md +++ b/src/ContainerInstance/ContainerInstance/ChangeLog.md @@ -19,6 +19,8 @@ --> ## Upcoming Release + +## Version 1.0.1 * Fixed issue in the -Command parameter of New-AzContainerGroup which added a trailing empty argument ## Version 1.0.0 diff --git a/src/ContainerInstance/ContainerInstance/Properties/AssemblyInfo.cs b/src/ContainerInstance/ContainerInstance/Properties/AssemblyInfo.cs index 7419406cc7ad..720219f5536e 100644 --- a/src/ContainerInstance/ContainerInstance/Properties/AssemblyInfo.cs +++ b/src/ContainerInstance/ContainerInstance/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ // // 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.0")] -[assembly: AssemblyVersion("1.0.0")] -[assembly: AssemblyFileVersion("1.0.0")] +// [assembly: AssemblyVersion("1.0.1")] +[assembly: AssemblyVersion("1.0.1")] +[assembly: AssemblyFileVersion("1.0.1")] diff --git a/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 b/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 index d04cefe148b0..911c4e753b93 100644 --- a/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 +++ b/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.ContainerRegistry.dll' diff --git a/src/DataFactory/DataFactoryV2.Test/DataFactoryV2.Test.csproj b/src/DataFactory/DataFactoryV2.Test/DataFactoryV2.Test.csproj index db26323a202b..c60a3114be9d 100644 --- a/src/DataFactory/DataFactoryV2.Test/DataFactoryV2.Test.csproj +++ b/src/DataFactory/DataFactoryV2.Test/DataFactoryV2.Test.csproj @@ -1,4 +1,4 @@ - + DataFactoryV2 @@ -11,7 +11,7 @@ - + diff --git a/src/DataFactory/DataFactoryV2.Test/ScenarioTests/DataFactoryTests.cs b/src/DataFactory/DataFactoryV2.Test/ScenarioTests/DataFactoryTests.cs index 5908a2faeff2..e594477dcff8 100644 --- a/src/DataFactory/DataFactoryV2.Test/ScenarioTests/DataFactoryTests.cs +++ b/src/DataFactory/DataFactoryV2.Test/ScenarioTests/DataFactoryTests.cs @@ -49,6 +49,20 @@ public void TestCreateDataFactoryV2() RunPowerShellTest(_logger, "Test-CreateDataFactory"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateDataFactoryV2WithVSTSRepoConfig() + { + RunPowerShellTest(_logger, "Test-CreateDataFactoryV2WithVSTSRepoConfig"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateDataFactoryV2WithGitHubRepoConfig() + { + RunPowerShellTest(_logger, "Test-CreateDataFactoryV2WithGitHubRepoConfig"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestDeleteDataFactoryWithDataFactoryParameterV2() diff --git a/src/DataFactory/DataFactoryV2.Test/ScenarioTests/DataFactoryTests.ps1 b/src/DataFactory/DataFactoryV2.Test/ScenarioTests/DataFactoryTests.ps1 index 3a5a8a28a527..d8c735ceaf30 100644 --- a/src/DataFactory/DataFactoryV2.Test/ScenarioTests/DataFactoryTests.ps1 +++ b/src/DataFactory/DataFactoryV2.Test/ScenarioTests/DataFactoryTests.ps1 @@ -181,3 +181,55 @@ function ValidateFactoryProperties ($expected, $actual) Assert-AreEqualObjectProperties $expected $actual } +<# +.SYNOPSIS +Creates a data factory with VSTS repo config and then does a Get to verify that both are identical. +#> +function Test-CreateDataFactoryV2WithVSTSRepoConfig +{ + $dfname = Get-DataFactoryName + $rgname = Get-ResourceGroupName + $rglocation = Get-ProviderLocation ResourceManagement + $dflocation = Get-ProviderLocation DataFactoryManagement + + New-AzResourceGroup -Name $rgname -Location $rglocation -Force + + try + { + $actual = Set-AzDataFactoryV2 -ResourceGroupName $rgname -Name $dfname -Location $dflocation -Force -AccountName "an" -RepositoryName "rn" -CollaborationBranch "cb" -RootFolder "rf" -LastCommitId "lci" -ProjectName "pn" + $expected = Get-AzDataFactoryV2 -ResourceGroupName $rgname -Name $dfname + + ValidateFactoryProperties $expected $actual + } + finally + { + CleanUp $rgname $dfname + } +} + +<# +.SYNOPSIS +Creates a data factory with VSTS repo config and then does a Get to verify that both are identical. +#> +function Test-CreateDataFactoryV2WithGitHubRepoConfig +{ + $dfname = Get-DataFactoryName + $rgname = Get-ResourceGroupName + $rglocation = Get-ProviderLocation ResourceManagement + $dflocation = Get-ProviderLocation DataFactoryManagement + + New-AzResourceGroup -Name $rgname -Location $rglocation -Force + + try + { + $actual = Set-AzDataFactoryV2 -ResourceGroupName $rgname -Name $dfname -Location $dflocation -Force -AccountName "an" -RepositoryName "rn" -CollaborationBranch "cb" -RootFolder "rf" -LastCommitId "lci" -HostName "hn" + $expected = Get-AzDataFactoryV2 -ResourceGroupName $rgname -Name $dfname + + ValidateFactoryProperties $expected $actual + } + finally + { + CleanUp $rgname $dfname + } +} + diff --git a/src/DataFactory/DataFactoryV2.Test/SessionRecords/Microsoft.Azure.Commands.DataFactoryV2.Test.DataFactoryTests/TestCreateDataFactoryV2WithGitHubRepoConfig.json b/src/DataFactory/DataFactoryV2.Test/SessionRecords/Microsoft.Azure.Commands.DataFactoryV2.Test.DataFactoryTests/TestCreateDataFactoryV2WithGitHubRepoConfig.json new file mode 100644 index 000000000000..f267fa12c3aa --- /dev/null +++ b/src/DataFactory/DataFactoryV2.Test/SessionRecords/Microsoft.Azure.Commands.DataFactoryV2.Test.DataFactoryTests/TestCreateDataFactoryV2WithGitHubRepoConfig.json @@ -0,0 +1,559 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourcegroups/ps5639?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L3Jlc291cmNlZ3JvdXBzL3BzNTYzOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61a6071f-368c-41ef-b677-01f4f81be5d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.17" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "6ef1e8b5-c28a-4a2a-b3a9-1a106aee5934" + ], + "x-ms-correlation-request-id": [ + "6ef1e8b5-c28a-4a2a-b3a9-1a106aee5934" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T000820Z:6ef1e8b5-c28a-4a2a-b3a9-1a106aee5934" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 00:08:19 GMT" + ], + "Content-Length": [ + "169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourceGroups/ps5639\",\r\n \"name\": \"ps5639\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourceGroups/ps5639/providers/Microsoft.DataFactory/factories/ps5424?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L3Jlc291cmNlR3JvdXBzL3BzNTYzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9wczU0MjQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"repoConfiguration\": {\r\n \"type\": \"FactoryGitHubConfiguration\",\r\n \"accountName\": \"an\",\r\n \"repositoryName\": \"rn\",\r\n \"collaborationBranch\": \"cb\",\r\n \"rootFolder\": \"rf\",\r\n \"lastCommitId\": \"lci\"\r\n }\r\n },\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad7b0a59-1843-424f-ada7-e4afccae4224" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/3.0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "342" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "2cfadb01-0a5f-4d1f-8882-723d143d8e80" + ], + "x-ms-correlation-request-id": [ + "2cfadb01-0a5f-4d1f-8882-723d143d8e80" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T000828Z:2cfadb01-0a5f-4d1f-8882-723d143d8e80" + ], + "Date": [ + "Wed, 13 Mar 2019 00:08:28 GMT" + ], + "Content-Length": [ + "692" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5424\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a0b25038-49b0-4d4f-8343-777b4f3151b4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourceGroups/ps5639/providers/Microsoft.DataFactory/factories/ps5424\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2019-03-13T00:08:27.2788344Z\",\r\n \"version\": \"2018-06-01\",\r\n \"repoConfiguration\": {\r\n \"type\": \"FactoryGitHubConfiguration\",\r\n \"accountName\": \"an\",\r\n \"repositoryName\": \"rn\",\r\n \"collaborationBranch\": \"cb\",\r\n \"rootFolder\": \"rf\",\r\n \"lastCommitId\": \"lci\"\r\n }\r\n },\r\n \"eTag\": \"\\\"0600719b-0000-0000-0000-5c8849fb0000\\\"\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourceGroups/ps5639/providers/Microsoft.DataFactory/factories/ps5424?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L3Jlc291cmNlR3JvdXBzL3BzNTYzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9wczU0MjQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9579e089-45a4-4f25-a533-820ccd2a2d6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "fc0a207d-4645-4fc8-a106-767b32e82189" + ], + "x-ms-correlation-request-id": [ + "fc0a207d-4645-4fc8-a106-767b32e82189" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T000828Z:fc0a207d-4645-4fc8-a106-767b32e82189" + ], + "Date": [ + "Wed, 13 Mar 2019 00:08:28 GMT" + ], + "Content-Length": [ + "692" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5424\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a0b25038-49b0-4d4f-8343-777b4f3151b4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourceGroups/ps5639/providers/Microsoft.DataFactory/factories/ps5424\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2019-03-13T00:08:27.2788344Z\",\r\n \"version\": \"2018-06-01\",\r\n \"repoConfiguration\": {\r\n \"type\": \"FactoryGitHubConfiguration\",\r\n \"accountName\": \"an\",\r\n \"repositoryName\": \"rn\",\r\n \"collaborationBranch\": \"cb\",\r\n \"rootFolder\": \"rf\",\r\n \"lastCommitId\": \"lci\"\r\n }\r\n },\r\n \"eTag\": \"\\\"0600719b-0000-0000-0000-5c8849fb0000\\\"\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourceGroups/ps5639/providers/Microsoft.DataFactory/factories/ps5424?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L3Jlc291cmNlR3JvdXBzL3BzNTYzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9wczU0MjQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64e4df91-e532-40b8-b958-96e40103c2cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "ff16ce7b-00be-48d7-bcd7-e3c2186bf799" + ], + "x-ms-correlation-request-id": [ + "ff16ce7b-00be-48d7-bcd7-e3c2186bf799" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T000831Z:ff16ce7b-00be-48d7-bcd7-e3c2186bf799" + ], + "Date": [ + "Wed, 13 Mar 2019 00:08:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourcegroups/ps5639?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L3Jlc291cmNlZ3JvdXBzL3BzNTYzOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc368295-200a-4ad8-af18-1c9b91751dd3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU2MzktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "0c27fa15-3546-4588-95f6-cf65ff3c131c" + ], + "x-ms-correlation-request-id": [ + "0c27fa15-3546-4588-95f6-cf65ff3c131c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T000833Z:0c27fa15-3546-4588-95f6-cf65ff3c131c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 00:08:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU2MzktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMk16a3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU2MzktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "d89f1de3-a1e6-4410-9241-0bf7753f85d3" + ], + "x-ms-correlation-request-id": [ + "d89f1de3-a1e6-4410-9241-0bf7753f85d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T000849Z:d89f1de3-a1e6-4410-9241-0bf7753f85d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 00:08:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU2MzktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMk16a3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU2MzktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "0f5197f0-889e-4f44-be09-a747baced247" + ], + "x-ms-correlation-request-id": [ + "0f5197f0-889e-4f44-be09-a747baced247" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T000905Z:0f5197f0-889e-4f44-be09-a747baced247" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 00:09:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU2MzktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMk16a3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "989100b5-7378-4a17-80ae-413339896e88" + ], + "x-ms-correlation-request-id": [ + "989100b5-7378-4a17-80ae-413339896e88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T000920Z:989100b5-7378-4a17-80ae-413339896e88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 00:09:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU2MzktV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMk16a3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "01367ca7-2cd9-4753-b5d8-99d0ad045abb" + ], + "x-ms-correlation-request-id": [ + "01367ca7-2cd9-4753-b5d8-99d0ad045abb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T000921Z:01367ca7-2cd9-4753-b5d8-99d0ad045abb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 00:09:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateDataFactoryV2WithGitHubRepoConfig": [ + "ps5424", + "ps5639" + ] + }, + "Variables": { + "SubscriptionId": "1e42591f-1f0c-4c5a-b7f2-a268f6105ec5" + } +} \ No newline at end of file diff --git a/src/DataFactory/DataFactoryV2.Test/SessionRecords/Microsoft.Azure.Commands.DataFactoryV2.Test.DataFactoryTests/TestCreateDataFactoryV2WithVSTSRepoConfig.json b/src/DataFactory/DataFactoryV2.Test/SessionRecords/Microsoft.Azure.Commands.DataFactoryV2.Test.DataFactoryTests/TestCreateDataFactoryV2WithVSTSRepoConfig.json new file mode 100644 index 000000000000..8d6e25c335f3 --- /dev/null +++ b/src/DataFactory/DataFactoryV2.Test/SessionRecords/Microsoft.Azure.Commands.DataFactoryV2.Test.DataFactoryTests/TestCreateDataFactoryV2WithVSTSRepoConfig.json @@ -0,0 +1,559 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourcegroups/ps7508?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L3Jlc291cmNlZ3JvdXBzL3BzNzUwOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3aff40b8-fb32-41c3-af87-db81e9d95e65" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.17" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "927b206e-012a-4694-a812-9c921b122eac" + ], + "x-ms-correlation-request-id": [ + "927b206e-012a-4694-a812-9c921b122eac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T001019Z:927b206e-012a-4694-a812-9c921b122eac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 00:10:19 GMT" + ], + "Content-Length": [ + "169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourceGroups/ps7508\",\r\n \"name\": \"ps7508\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourceGroups/ps7508/providers/Microsoft.DataFactory/factories/ps7804?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L3Jlc291cmNlR3JvdXBzL3BzNzUwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9wczc4MDQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"repoConfiguration\": {\r\n \"type\": \"FactoryVSTSConfiguration\",\r\n \"projectName\": \"pn\",\r\n \"accountName\": \"an\",\r\n \"repositoryName\": \"rn\",\r\n \"collaborationBranch\": \"cb\",\r\n \"rootFolder\": \"rf\",\r\n \"lastCommitId\": \"lci\"\r\n }\r\n },\r\n \"location\": \"West Europe\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3356e2ea-0241-4b35-b387-d7fb958aa190" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/3.0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "368" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "ebc54d8a-1b62-414f-ab86-77ea454acb50" + ], + "x-ms-correlation-request-id": [ + "ebc54d8a-1b62-414f-ab86-77ea454acb50" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T001027Z:ebc54d8a-1b62-414f-ab86-77ea454acb50" + ], + "Date": [ + "Wed, 13 Mar 2019 00:10:26 GMT" + ], + "Content-Length": [ + "709" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7804\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a2fc22fd-0558-4a27-abfb-2c987ee0016f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourceGroups/ps7508/providers/Microsoft.DataFactory/factories/ps7804\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2019-03-13T00:10:26.5285843Z\",\r\n \"version\": \"2018-06-01\",\r\n \"repoConfiguration\": {\r\n \"type\": \"FactoryVSTSConfiguration\",\r\n \"projectName\": \"pn\",\r\n \"accountName\": \"an\",\r\n \"repositoryName\": \"rn\",\r\n \"collaborationBranch\": \"cb\",\r\n \"rootFolder\": \"rf\",\r\n \"lastCommitId\": \"lci\"\r\n }\r\n },\r\n \"eTag\": \"\\\"0600cf9b-0000-0000-0000-5c884a720000\\\"\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourceGroups/ps7508/providers/Microsoft.DataFactory/factories/ps7804?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L3Jlc291cmNlR3JvdXBzL3BzNzUwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9wczc4MDQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "180b4b5a-b74e-4e28-88c1-8e366a311cf5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "27fcb23e-e24f-4459-aba2-3c33fa742935" + ], + "x-ms-correlation-request-id": [ + "27fcb23e-e24f-4459-aba2-3c33fa742935" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T001028Z:27fcb23e-e24f-4459-aba2-3c33fa742935" + ], + "Date": [ + "Wed, 13 Mar 2019 00:10:27 GMT" + ], + "Content-Length": [ + "709" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7804\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a2fc22fd-0558-4a27-abfb-2c987ee0016f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"id\": \"/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourceGroups/ps7508/providers/Microsoft.DataFactory/factories/ps7804\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createTime\": \"2019-03-13T00:10:26.5285843Z\",\r\n \"version\": \"2018-06-01\",\r\n \"repoConfiguration\": {\r\n \"type\": \"FactoryVSTSConfiguration\",\r\n \"projectName\": \"pn\",\r\n \"accountName\": \"an\",\r\n \"repositoryName\": \"rn\",\r\n \"collaborationBranch\": \"cb\",\r\n \"rootFolder\": \"rf\",\r\n \"lastCommitId\": \"lci\"\r\n }\r\n },\r\n \"eTag\": \"\\\"0600cf9b-0000-0000-0000-5c884a720000\\\"\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourceGroups/ps7508/providers/Microsoft.DataFactory/factories/ps7804?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L3Jlc291cmNlR3JvdXBzL3BzNzUwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFGYWN0b3J5L2ZhY3Rvcmllcy9wczc4MDQ/YXBpLXZlcnNpb249MjAxOC0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90de4d29-3595-438c-a075-bf4a48f4178f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "4e0c2f1b-75bd-46d1-870f-bf7119d4c53f" + ], + "x-ms-correlation-request-id": [ + "4e0c2f1b-75bd-46d1-870f-bf7119d4c53f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T001030Z:4e0c2f1b-75bd-46d1-870f-bf7119d4c53f" + ], + "Date": [ + "Wed, 13 Mar 2019 00:10:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/resourcegroups/ps7508?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L3Jlc291cmNlZ3JvdXBzL3BzNzUwOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6460edef-d300-4530-9e8c-41774d84436c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MDgtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "a3535a7f-5e21-47d6-af1e-41f3ac450b11" + ], + "x-ms-correlation-request-id": [ + "a3535a7f-5e21-47d6-af1e-41f3ac450b11" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T001033Z:a3535a7f-5e21-47d6-af1e-41f3ac450b11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 00:10:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MDgtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU1EZ3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MDgtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "76acce6c-bb0e-4326-a799-30cfb972da9a" + ], + "x-ms-correlation-request-id": [ + "76acce6c-bb0e-4326-a799-30cfb972da9a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T001049Z:76acce6c-bb0e-4326-a799-30cfb972da9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 00:10:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MDgtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU1EZ3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MDgtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "9970e4d3-6278-4116-8a7f-7a1a5dec1950" + ], + "x-ms-correlation-request-id": [ + "9970e4d3-6278-4116-8a7f-7a1a5dec1950" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T001104Z:9970e4d3-6278-4116-8a7f-7a1a5dec1950" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 00:11:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MDgtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU1EZ3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "7fe6ac7b-e27e-4a42-9341-9a6cf94dfdef" + ], + "x-ms-correlation-request-id": [ + "7fe6ac7b-e27e-4a42-9341-9a6cf94dfdef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T001120Z:7fe6ac7b-e27e-4a42-9341-9a6cf94dfdef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 00:11:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1e42591f-1f0c-4c5a-b7f2-a268f6105ec5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc1MDgtV0VTVEVVUk9QRSIsImpvYkxvY2F0aW9uIjoid2VzdGV1cm9wZSJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWU0MjU5MWYtMWYwYy00YzVhLWI3ZjItYTI2OGY2MTA1ZWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMU1EZ3RWMFZUVkVWVlVrOVFSU0lzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEdWMWNtOXdaU0o5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "8b34fa50-614f-4d41-a82b-34cf77239ecc" + ], + "x-ms-correlation-request-id": [ + "8b34fa50-614f-4d41-a82b-34cf77239ecc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190313T001120Z:8b34fa50-614f-4d41-a82b-34cf77239ecc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 13 Mar 2019 00:11:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateDataFactoryV2WithVSTSRepoConfig": [ + "ps7804", + "ps7508" + ] + }, + "Variables": { + "SubscriptionId": "1e42591f-1f0c-4c5a-b7f2-a268f6105ec5" + } +} \ No newline at end of file diff --git a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 index dcdb5dde0180..d5abf8a45554 100644 --- a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 +++ b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/5/2019 +# Generated on: 4/4/2019 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.0.2' +ModuleVersion = '1.1.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.DataFactory.dll', @@ -159,7 +159,8 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Updated ADF .Net SDK version to 3.0.1' + ReleaseNotes = '* Updated ADF .Net SDK version to 3.0.2 +* Updated Set-AzDataFactoryV2 cmdlet with extra parameters for RepoConfiguration related settings.' # Prerelease string of this module # Prerelease = '' diff --git a/src/DataFactory/DataFactoryV2/Changelog.md b/src/DataFactory/DataFactoryV2/Changelog.md index 6c54d7072e94..e8ef25e6cacc 100644 --- a/src/DataFactory/DataFactoryV2/Changelog.md +++ b/src/DataFactory/DataFactoryV2/Changelog.md @@ -20,6 +20,10 @@ ## Upcoming Release +## Version 1.1.0 +* Updated ADF .Net SDK version to 3.0.2 +* Updated Set-AzDataFactoryV2 cmdlet with extra parameters for RepoConfiguration related settings. + ## Version 1.0.2 * Updated ADF .Net SDK version to 3.0.1 diff --git a/src/DataFactory/DataFactoryV2/Constants.cs b/src/DataFactory/DataFactoryV2/Constants.cs index f63b870e6f7e..c34a2089d4b6 100644 --- a/src/DataFactory/DataFactoryV2/Constants.cs +++ b/src/DataFactory/DataFactoryV2/Constants.cs @@ -52,6 +52,8 @@ internal static class Constants public const string HelpResourceId = "The Azure resource ID."; + public const string HelpDataFactoryV2ResourceId = "The Azure resource ID of V2 data factory."; + public const string HelpResourceGroup = "The resource group name."; public const string HelpFactoryObject = "The data factory object."; @@ -198,5 +200,24 @@ internal static class Constants public const string HelpFactoryLocation = "The geographic region of the data factory."; + public const string HelpRepoConfigurationProjectName = "The project name for repo configuration."; + + public const string HelpRepoConfigurationTenantId = "The tenant id for repo configuration."; + + public const string HelpRepoConfigurationAccountName = "The account name for repo configuration."; + + public const string HelpRepoConfigurationRepositoryName = "The repository name for repo configuration."; + + public const string HelpRepoConfigurationHostName = "The host name for repo configuration."; + + public const string HelpRepoConfigurationCollaborationBranch = "The collaboration branch for repo configuration."; + + public const string HelpRepoConfigurationRootFolder = "The root folder for repo configuration."; + + public const string HelpRepoConfigurationLastCommitId = "The last commit id for repo configuration."; + + public const string Id = "Id"; + + public const string DataFactoryId = "DataFactoryId"; } } diff --git a/src/DataFactory/DataFactoryV2/DataFactories/SetAzureDataFactoryCommand.cs b/src/DataFactory/DataFactoryV2/DataFactories/SetAzureDataFactoryCommand.cs index d758c96cd6d3..4fd828b8e5a0 100644 --- a/src/DataFactory/DataFactoryV2/DataFactories/SetAzureDataFactoryCommand.cs +++ b/src/DataFactory/DataFactoryV2/DataFactories/SetAzureDataFactoryCommand.cs @@ -14,43 +14,445 @@ using System.Collections; using System.Management.Automation; -using System.Security.Permissions; using Microsoft.Azure.Commands.DataFactoryV2.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.DataFactory.Models; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; namespace Microsoft.Azure.Commands.DataFactoryV2 { - [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataFactoryV2", SupportsShouldProcess = true), OutputType(typeof(PSDataFactory))] + [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataFactoryV2", DefaultParameterSetName = ParameterSetNames.ByFactoryName, SupportsShouldProcess = true), OutputType(typeof(PSDataFactory))] [Alias("New-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataFactoryV2")] public class SetAzureDataFactoryCommand : DataFactoryBaseCmdlet { - [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, + #region Attributes + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceId, + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = Constants.HelpDataFactoryV2ResourceId)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoVstsConfig, + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = Constants.HelpDataFactoryV2ResourceId)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoGitConfig, + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = Constants.HelpDataFactoryV2ResourceId)] + [ValidateNotNullOrEmpty] + [Alias(Constants.Id, Constants.DataFactoryId)] + [ResourceIdCompleter("Microsoft.DataFactory/factories")] + #endregion // Attributes + public string ResourceId { get; set; } + + #region Attributes + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryName, + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = Constants.HelpResourceGroup)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoGitConfig, + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = Constants.HelpResourceGroup)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoVstsConfig, + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = Constants.HelpResourceGroup)] [ResourceGroupCompleter()] [ValidateNotNullOrEmpty] + #endregion // Attributes public string ResourceGroupName { get; set; } - [Parameter(Position = 1, Mandatory = true, ValueFromPipelineByPropertyName = true, + #region Attributes + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryName, + Position = 1, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = Constants.HelpFactoryName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoGitConfig, + Position = 1, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = Constants.HelpFactoryName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoVstsConfig, + Position = 1, + Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = Constants.HelpFactoryName)] [ValidateNotNullOrEmpty] [Alias(Constants.DataFactoryName)] + #endregion // Attributes public string Name { get; set; } - [Parameter(Position = 2, Mandatory = true, ValueFromPipelineByPropertyName = true, + #region Attributes + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObject, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = Constants.HelpFactoryObject)] + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoVstsConfig, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = Constants.HelpFactoryObject)] + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoGitConfig, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = Constants.HelpFactoryObject)] + [ValidateNotNull] + #endregion // Attributes + public PSDataFactory InputObject { get; set; } + + #region Attributes + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryName, + Position = 2, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = Constants.HelpFactoryLocation)] + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObject, + Mandatory = false, + HelpMessage = Constants.HelpFactoryLocation)] + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoVstsConfig, + Mandatory = false, + HelpMessage = Constants.HelpFactoryLocation)] + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoGitConfig, + Mandatory = false, + HelpMessage = Constants.HelpFactoryLocation)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoGitConfig, + Position = 2, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = Constants.HelpFactoryLocation)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoVstsConfig, + Position = 2, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = Constants.HelpFactoryLocation)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceId, + Position = 1, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = Constants.HelpFactoryLocation)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoVstsConfig, + Position = 1, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = Constants.HelpFactoryLocation)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoGitConfig, + Position = 1, + Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = Constants.HelpFactoryLocation)] - [LocationCompleter(Constants.DataFactoryQualifiedType)] [ValidateNotNullOrEmpty] + [LocationCompleter(Constants.DataFactoryQualifiedType)] + #endregion // Attributes public string Location { get; set; } - [Parameter(Position = 3, Mandatory = false, ValueFromPipelineByPropertyName = true, + #region Attributes + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryName, + Position = 3, + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = Constants.HelpTagsForFactory)] + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObject, + Mandatory = false, + HelpMessage = Constants.HelpTagsForFactory)] + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoVstsConfig, + Mandatory = false, + HelpMessage = Constants.HelpTagsForFactory)] + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoGitConfig, + Mandatory = false, + HelpMessage = Constants.HelpTagsForFactory)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoGitConfig, + Position = 3, + ValueFromPipelineByPropertyName = true, + Mandatory = false, HelpMessage = Constants.HelpTagsForFactory)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoVstsConfig, + Position = 3, + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = Constants.HelpTagsForFactory)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceId, + Position = 2, + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = Constants.HelpTagsForFactory)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoVstsConfig, + Position = 2, + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = Constants.HelpTagsForFactory)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoGitConfig, + Position = 2, + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = Constants.HelpTagsForFactory)] + #endregion // Attributes public Hashtable Tag { get; set; } [Parameter(Mandatory = false, HelpMessage = Constants.HelpDontAskConfirmation)] public SwitchParameter Force { get; set; } + #region Attributes + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoGitConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationAccountName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoVstsConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationAccountName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoGitConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationAccountName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoVstsConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationAccountName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoVstsConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationAccountName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoGitConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationAccountName)] + [ValidateNotNullOrEmpty] + #endregion // Attributes + public string AccountName { get; set; } + + #region Attributes + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoGitConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationRepositoryName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoVstsConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationRepositoryName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoGitConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationRepositoryName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoVstsConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationRepositoryName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoVstsConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationRepositoryName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoGitConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationRepositoryName)] + [ValidateNotNullOrEmpty] + #endregion // Attributes + public string RepositoryName { get; set; } + + #region Attributes + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoGitConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationCollaborationBranch)] + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoVstsConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationCollaborationBranch)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoGitConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationCollaborationBranch)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoVstsConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationCollaborationBranch)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoVstsConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationCollaborationBranch)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoGitConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationCollaborationBranch)] + [ValidateNotNullOrEmpty] + #endregion // Attributes + public string CollaborationBranch { get; set; } + + #region Attributes + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoGitConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationRootFolder)] + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoVstsConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationRootFolder)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoGitConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationRootFolder)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoVstsConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationRootFolder)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoVstsConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationRootFolder)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoGitConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationRootFolder)] + [ValidateNotNullOrEmpty] + #endregion // Attributes + public string RootFolder { get; set; } + + #region Attributes + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoVstsConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationLastCommitId)] + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoGitConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationLastCommitId)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoGitConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationLastCommitId)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoVstsConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationLastCommitId)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoVstsConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationLastCommitId)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoGitConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationLastCommitId)] + [ValidateNotNullOrEmpty] + #endregion // Attributes + public string LastCommitId { get; set; } + + #region Attributes + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoVstsConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationProjectName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoVstsConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationProjectName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoVstsConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationProjectName)] + [ValidateNotNullOrEmpty] + #endregion // Attributes + public string ProjectName { get; set; } + + #region Attributes + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoVstsConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationTenantId)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoVstsConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationTenantId)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoVstsConfig, + Mandatory = false, + HelpMessage = Constants.HelpRepoConfigurationTenantId)] + [ValidateNotNullOrEmpty] + #endregion // Attributes + public string TenantId { get; set; } + + #region Attributes + [Parameter( + ParameterSetName = ParameterSetNames.ByInputObjectFactoryRepoGitConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationHostName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByFactoryNameFactoryRepoGitConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationHostName)] + [Parameter( + ParameterSetName = ParameterSetNames.ByResourceIdFactoryRepoGitConfig, + Mandatory = true, + HelpMessage = Constants.HelpRepoConfigurationHostName)] + [ValidateNotNullOrEmpty] + #endregion // Attributes + public string HostName { get; set; } + public override void ExecuteCmdlet() { + this.ValidateParameters(); + + FactoryRepoConfiguration repoConfiguration = null; + if (!string.IsNullOrWhiteSpace(this.ProjectName) || !string.IsNullOrWhiteSpace(this.TenantId)) + { + var factoryVSTSConfiguration = new FactoryVSTSConfiguration(); + factoryVSTSConfiguration.ProjectName = this.ProjectName; + factoryVSTSConfiguration.TenantId = this.TenantId; + + repoConfiguration = factoryVSTSConfiguration; + } + else if (!string.IsNullOrWhiteSpace(this.HostName)) + { + var factoryGitHubConfiguration = new FactoryGitHubConfiguration(); + factoryGitHubConfiguration.HostName = this.HostName; + + repoConfiguration = factoryGitHubConfiguration; + } + + if (repoConfiguration != null) + { + repoConfiguration.CollaborationBranch = this.CollaborationBranch; + repoConfiguration.AccountName = this.AccountName; + repoConfiguration.LastCommitId = this.LastCommitId; + repoConfiguration.RootFolder = this.RootFolder; + repoConfiguration.RepositoryName = this.RepositoryName; + } + var parameters = new CreatePSDataFactoryParameters() { ResourceGroupName = ResourceGroupName, @@ -58,10 +460,52 @@ public override void ExecuteCmdlet() Location = Location, Tags = Tag, Force = Force.IsPresent, + RepoConfiguration = repoConfiguration, ConfirmAction = ConfirmAction }; WriteObject(DataFactoryClient.CreatePSDataFactory(parameters)); } + + private void ValidateParameters() + { + if (InputObject != null) + { + this.ResourceGroupName = InputObject.ResourceGroupName; + this.Name = InputObject.DataFactoryName; + this.Location = this.Location ?? InputObject.Location; + this.Tag = this.Tag ?? new Hashtable((IDictionary)InputObject.Tags); + if (InputObject.RepoConfiguration != null) + { + this.AccountName = this.AccountName ?? InputObject.RepoConfiguration.AccountName; + this.CollaborationBranch = this.CollaborationBranch ?? InputObject.RepoConfiguration.CollaborationBranch; + this.LastCommitId = this.LastCommitId ?? InputObject.RepoConfiguration.LastCommitId; + this.RepositoryName = this.RepositoryName ?? InputObject.RepoConfiguration.RepositoryName; + this.RootFolder = this.RootFolder ?? InputObject.RepoConfiguration.RootFolder; + + var factoryVSTSConfiguration = InputObject.RepoConfiguration as FactoryVSTSConfiguration; + if (factoryVSTSConfiguration != null) + { + this.ProjectName = this.ProjectName ?? factoryVSTSConfiguration.ProjectName; + this.TenantId = this.TenantId ?? factoryVSTSConfiguration.TenantId; + } + else + { + var factoryGitHubConfiguration = InputObject.RepoConfiguration as FactoryGitHubConfiguration; + if (factoryGitHubConfiguration != null) + { + this.HostName = this.HostName ?? factoryGitHubConfiguration.HostName; + } + } + } + } + + if (!string.IsNullOrWhiteSpace(ResourceId)) + { + var parsedResourceId = new ResourceIdentifier(ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.Name = parsedResourceId.ResourceName; + } + } } } diff --git a/src/DataFactory/DataFactoryV2/DataFactoryV2.csproj b/src/DataFactory/DataFactoryV2/DataFactoryV2.csproj index 22cc2ce607ff..657e9e42d3ff 100644 --- a/src/DataFactory/DataFactoryV2/DataFactoryV2.csproj +++ b/src/DataFactory/DataFactoryV2/DataFactoryV2.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/DataFactory/DataFactoryV2/Models/CreatePSDataFactoryParameters.cs b/src/DataFactory/DataFactoryV2/Models/CreatePSDataFactoryParameters.cs index 545899eb9443..299dae71f5a6 100644 --- a/src/DataFactory/DataFactoryV2/Models/CreatePSDataFactoryParameters.cs +++ b/src/DataFactory/DataFactoryV2/Models/CreatePSDataFactoryParameters.cs @@ -12,6 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Management.DataFactory.Models; using System.Collections; namespace Microsoft.Azure.Commands.DataFactoryV2 @@ -21,5 +22,7 @@ public class CreatePSDataFactoryParameters : DataFactoryParametersBase public string Location { get; set; } public Hashtable Tags { get; set; } + + public FactoryRepoConfiguration RepoConfiguration { get; set; } } } diff --git a/src/DataFactory/DataFactoryV2/Models/DataFactoryClient.DataFactories.cs b/src/DataFactory/DataFactoryV2/Models/DataFactoryClient.DataFactories.cs index 07e14c0cbcd4..c929769b9def 100644 --- a/src/DataFactory/DataFactoryV2/Models/DataFactoryClient.DataFactories.cs +++ b/src/DataFactory/DataFactoryV2/Models/DataFactoryClient.DataFactories.cs @@ -138,6 +138,7 @@ public PSDataFactory CreatePSDataFactory(CreatePSDataFactoryParameters parameter { Location = parameters.Location, Tags = parameters.Tags?.ToDictionary(), + RepoConfiguration = parameters.RepoConfiguration, Identity = new FactoryIdentity() }), parameters.ResourceGroupName); diff --git a/src/DataFactory/DataFactoryV2/Models/PSActivityRun.cs b/src/DataFactory/DataFactoryV2/Models/PSActivityRun.cs index 99e17cb4f75f..a4c8137fbc25 100644 --- a/src/DataFactory/DataFactoryV2/Models/PSActivityRun.cs +++ b/src/DataFactory/DataFactoryV2/Models/PSActivityRun.cs @@ -42,6 +42,14 @@ public PSActivityRun(ActivityRun activityRun, string resourceGroupName, string f public string DataFactoryName { get; private set; } + public string ActivityRunId + { + get + { + return this.activityRun.ActivityRunId; + } + } + public string ActivityName { get diff --git a/src/DataFactory/DataFactoryV2/Models/PSDataFactory.cs b/src/DataFactory/DataFactoryV2/Models/PSDataFactory.cs index af716de50786..26724767d6d1 100644 --- a/src/DataFactory/DataFactoryV2/Models/PSDataFactory.cs +++ b/src/DataFactory/DataFactoryV2/Models/PSDataFactory.cs @@ -96,5 +96,17 @@ public string ProvisioningState { get { return dataFactory.ProvisioningState; } } + + public FactoryRepoConfiguration RepoConfiguration + { + get + { + return dataFactory.RepoConfiguration; + } + set + { + dataFactory.RepoConfiguration = value; + } + } } } diff --git a/src/DataFactory/DataFactoryV2/ParameterSetNames.cs b/src/DataFactory/DataFactoryV2/ParameterSetNames.cs index 2bba5f119737..3ae022a8a86f 100644 --- a/src/DataFactory/DataFactoryV2/ParameterSetNames.cs +++ b/src/DataFactory/DataFactoryV2/ParameterSetNames.cs @@ -34,5 +34,11 @@ internal static class ParameterSetNames internal const string ByLinkedIntegrationRuntimeName = "ByLinkedIntegrationRuntimeName"; internal const string ByLinkedIntegrationRuntimeResourceId = "ByLinkedIntegrationRuntimeResourceId"; internal const string ByLinkedIntegrationRuntimeObject = "ByLinkedIntegrationRuntimeObject"; + internal const string ByResourceIdFactoryRepoVstsConfig = "ByResourceIdFactoryRepoVstsConfig"; + internal const string ByResourceIdFactoryRepoGitConfig = "ByResourceIdFactoryRepoGitConfig"; + internal const string ByFactoryNameFactoryRepoVstsConfig = "ByFactoryNameFactoryRepoVstsConfig"; + internal const string ByFactoryNameFactoryRepoGitConfig = "ByFactoryNameFactoryRepoGitConfig"; + internal const string ByInputObjectFactoryRepoVstsConfig = "ByInputObjectFactoryRepoVstsConfig"; + internal const string ByInputObjectFactoryRepoGitConfig = "ByInputObjectFactoryRepoGitConfig"; } } diff --git a/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs b/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs index cb0f7822249d..2ce7494c0332 100644 --- a/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs +++ b/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("5d024af0-81c9-44f0-b3b0-7080f103fb4d")] -[assembly: AssemblyVersion("1.0.2")] -[assembly: AssemblyFileVersion("1.0.2")] +[assembly: AssemblyVersion("1.1.0")] +[assembly: AssemblyFileVersion("1.1.0")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.Test")] #endif diff --git a/src/DataFactory/DataFactoryV2/help/Set-AzDataFactoryV2.md b/src/DataFactory/DataFactoryV2/help/Set-AzDataFactoryV2.md index acd3d75f7754..74a561d9f6c8 100644 --- a/src/DataFactory/DataFactoryV2/help/Set-AzDataFactoryV2.md +++ b/src/DataFactory/DataFactoryV2/help/Set-AzDataFactoryV2.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll-Help.xml Module Name: Az.DataFactory online version: https://docs.microsoft.com/en-us/powershell/module/az.datafactory/set-azdatafactoryv2 @@ -12,11 +12,72 @@ Creates a data factory. ## SYNTAX +### ByFactoryName (Default) ``` Set-AzDataFactoryV2 [-ResourceGroupName] [-Name] [-Location] [[-Tag] ] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` +### ByResourceId +``` +Set-AzDataFactoryV2 [-ResourceId] [-Location] [[-Tag] ] [-Force] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdFactoryRepoVstsConfig +``` +Set-AzDataFactoryV2 [-ResourceId] [-Location] [[-Tag] ] [-Force] + -AccountName -RepositoryName -CollaborationBranch -RootFolder + [-LastCommitId ] -ProjectName [-TenantId ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdFactoryRepoGitConfig +``` +Set-AzDataFactoryV2 [-ResourceId] [-Location] [[-Tag] ] [-Force] + -AccountName -RepositoryName -CollaborationBranch -RootFolder + [-LastCommitId ] -HostName [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByFactoryNameFactoryRepoGitConfig +``` +Set-AzDataFactoryV2 [-ResourceGroupName] [-Name] [-Location] [[-Tag] ] + [-Force] -AccountName -RepositoryName -CollaborationBranch -RootFolder + [-LastCommitId ] -HostName [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByFactoryNameFactoryRepoVstsConfig +``` +Set-AzDataFactoryV2 [-ResourceGroupName] [-Name] [-Location] [[-Tag] ] + [-Force] -AccountName -RepositoryName -CollaborationBranch -RootFolder + [-LastCommitId ] -ProjectName [-TenantId ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByInputObject +``` +Set-AzDataFactoryV2 -InputObject [[-Location] ] [[-Tag] ] [-Force] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByInputObjectFactoryRepoVstsConfig +``` +Set-AzDataFactoryV2 -InputObject [[-Location] ] [[-Tag] ] [-Force] + [-AccountName ] [-RepositoryName ] [-CollaborationBranch ] [-RootFolder ] + [-LastCommitId ] -ProjectName [-TenantId ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByInputObjectFactoryRepoGitConfig +``` +Set-AzDataFactoryV2 -InputObject [[-Location] ] [[-Tag] ] [-Force] + [-AccountName ] [-RepositoryName ] [-CollaborationBranch ] [-RootFolder ] + [-LastCommitId ] -HostName [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + ## DESCRIPTION The **Set-AzDataFactoryV2** cmdlet creates a data factory with the specified resource group name and location. Perform these operations in the following order: @@ -38,12 +99,81 @@ PS C:\> Set-AzDataFactoryV2 -ResourceGroupName "ADF" -Name "WikiADF" -Location " Tags : {} Identity : Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity ProvisioningState : Succeeded + RepoConfiguration : +``` + +### Example 2: Create a data factory with repoconfiguration details using an existing factory object. +``` +PS C:\> Get-AzDataFactoryV2 -ResourceGroupName "ADF" -Name "WikiADF" | Set-AzDataFactoryV2 -AccountName msdata -RepositoryName ADFRepo -CollaborationBranch master -RootFolder / -ProjectName "Azure Data Factory" + + DataFactoryName : WikiADF + DataFactoryId : /subscriptions/3e8e61b5-9a7d-4952-bfae-545ab997b9ea/resourceGroups/adf/providers/Microsoft.DataFactory/factories/wikiadf + ResourceGroupName : ADF + Location : EastUS + Tags : {} + Identity : Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity + ProvisioningState : Succeeded + RepoConfiguration : Microsoft.Azure.Management.DataFactory.Models.FactoryVSTSConfiguration ``` This command creates a data factory named WikiADF in the resource group named ADF in the WestUS location. ## PARAMETERS +### -AccountName +The account name for repo configuration. + +```yaml +Type: System.String +Parameter Sets: ByResourceIdFactoryRepoVstsConfig, ByResourceIdFactoryRepoGitConfig, ByFactoryNameFactoryRepoGitConfig, ByFactoryNameFactoryRepoVstsConfig +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: System.String +Parameter Sets: ByInputObjectFactoryRepoVstsConfig, ByInputObjectFactoryRepoGitConfig +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CollaborationBranch +The collaboration branch for repo configuration. + +```yaml +Type: System.String +Parameter Sets: ByResourceIdFactoryRepoVstsConfig, ByResourceIdFactoryRepoGitConfig, ByFactoryNameFactoryRepoGitConfig, ByFactoryNameFactoryRepoVstsConfig +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: System.String +Parameter Sets: ByInputObjectFactoryRepoVstsConfig, ByInputObjectFactoryRepoGitConfig +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with azure. @@ -74,12 +204,57 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HostName +The host name for repo configuration. + +```yaml +Type: System.String +Parameter Sets: ByResourceIdFactoryRepoGitConfig, ByFactoryNameFactoryRepoGitConfig, ByInputObjectFactoryRepoGitConfig +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The data factory object. + +```yaml +Type: Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory +Parameter Sets: ByInputObject, ByInputObjectFactoryRepoVstsConfig, ByInputObjectFactoryRepoGitConfig +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -LastCommitId +The last commit id for repo configuration. + +```yaml +Type: System.String +Parameter Sets: ByResourceIdFactoryRepoVstsConfig, ByResourceIdFactoryRepoGitConfig, ByFactoryNameFactoryRepoGitConfig, ByFactoryNameFactoryRepoVstsConfig, ByInputObjectFactoryRepoVstsConfig, ByInputObjectFactoryRepoGitConfig +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Location The data factory is created in this region. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByFactoryName, ByResourceId, ByResourceIdFactoryRepoVstsConfig, ByResourceIdFactoryRepoGitConfig, ByFactoryNameFactoryRepoGitConfig, ByFactoryNameFactoryRepoVstsConfig Aliases: Required: True @@ -89,12 +264,24 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +```yaml +Type: System.String +Parameter Sets: ByInputObject, ByInputObjectFactoryRepoVstsConfig, ByInputObjectFactoryRepoGitConfig +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Name The data factory name. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByFactoryName, ByFactoryNameFactoryRepoGitConfig, ByFactoryNameFactoryRepoVstsConfig Aliases: DataFactoryName Required: True @@ -104,12 +291,54 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -ProjectName +The project name for repo configuration. + +```yaml +Type: System.String +Parameter Sets: ByResourceIdFactoryRepoVstsConfig, ByFactoryNameFactoryRepoVstsConfig, ByInputObjectFactoryRepoVstsConfig +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RepositoryName +The repository name for repo configuration. + +```yaml +Type: System.String +Parameter Sets: ByResourceIdFactoryRepoVstsConfig, ByResourceIdFactoryRepoGitConfig, ByFactoryNameFactoryRepoGitConfig, ByFactoryNameFactoryRepoVstsConfig +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: System.String +Parameter Sets: ByInputObjectFactoryRepoVstsConfig, ByInputObjectFactoryRepoGitConfig +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The resource group name. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByFactoryName, ByFactoryNameFactoryRepoGitConfig, ByFactoryNameFactoryRepoVstsConfig Aliases: Required: True @@ -119,12 +348,66 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -ResourceId +The Azure resource ID of V2 data factory. + +```yaml +Type: System.String +Parameter Sets: ByResourceId, ByResourceIdFactoryRepoVstsConfig, ByResourceIdFactoryRepoGitConfig +Aliases: Id, DataFactoryId + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RootFolder +The root folder for repo configuration. + +```yaml +Type: System.String +Parameter Sets: ByResourceIdFactoryRepoVstsConfig, ByResourceIdFactoryRepoGitConfig, ByFactoryNameFactoryRepoGitConfig, ByFactoryNameFactoryRepoVstsConfig +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: System.String +Parameter Sets: ByInputObjectFactoryRepoVstsConfig, ByInputObjectFactoryRepoGitConfig +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Tag The tags of the data factory. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: ByFactoryName, ByResourceId, ByResourceIdFactoryRepoVstsConfig, ByResourceIdFactoryRepoGitConfig, ByFactoryNameFactoryRepoGitConfig, ByFactoryNameFactoryRepoVstsConfig +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: ByInputObject, ByInputObjectFactoryRepoVstsConfig, ByInputObjectFactoryRepoGitConfig Aliases: Required: False @@ -134,6 +417,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -TenantId +The tenant id for repo configuration. + +```yaml +Type: System.String +Parameter Sets: ByResourceIdFactoryRepoVstsConfig, ByFactoryNameFactoryRepoVstsConfig, ByInputObjectFactoryRepoVstsConfig +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. diff --git a/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 b/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 index 4123608c3670..a788a37de8d8 100644 --- a/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 +++ b/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.DataLake.Analytics.dll' diff --git a/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 b/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 index 588f5936c210..2a0ed81df0d1 100644 --- a/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 +++ b/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.DataLake.Store.dll', @@ -101,7 +101,7 @@ CmdletsToExport = 'Get-AzDataLakeStoreTrustedIdProvider', 'Set-AzDataLakeStoreItemAcl', 'Set-AzDataLakeStoreItemExpiry', 'Set-AzDataLakeStoreItemOwner', 'Set-AzDataLakeStoreItemPermission', 'Test-AzDataLakeStoreAccount', 'Test-AzDataLakeStoreItem', - 'Export-AzDataLakeStoreChildItemProperties', + 'Export-AzDataLakeStoreChildItemProperty', 'Get-AzDataLakeStoreChildItemSummary', 'Get-AzDataLakeStoreDeletedItem', 'Restore-AzDataLakeStoreDeletedItem' @@ -129,7 +129,7 @@ AliasesToExport = 'Get-AdlStoreTrustedIdProvider', 'Remove-AdlStoreTrustedIdProv 'Set-AdlStoreItemOwner', 'Set-AdlStoreItemPermission', 'Test-AdlStore', 'Test-AdlStoreItem', 'Get-AdlStoreChildItemSummary', 'Export-AdlStoreChildItemProperties', 'Get-AdlStoreDeletedItem', - 'Restore-AdlStoreDeletedItem' + 'Restore-AdlStoreDeletedItem', 'Export-AzDataLakeStoreChildItemProperties' # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/DataLakeStore/DataLakeStore/ChangeLog.md b/src/DataLakeStore/DataLakeStore/ChangeLog.md index 137941c48b71..caa2e995d6c9 100644 --- a/src/DataLakeStore/DataLakeStore/ChangeLog.md +++ b/src/DataLakeStore/DataLakeStore/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.1.0 * Add cmdlets for ADL deleted item enumerate and restore diff --git a/src/DataLakeStore/DataLakeStore/DataPlaneCommands/ExportAzureRmDataLakeStoreChildItemProperties.cs b/src/DataLakeStore/DataLakeStore/DataPlaneCommands/ExportAzureRmDataLakeStoreChildItemProperties.cs index 888468c26c9b..07015c794b1c 100644 --- a/src/DataLakeStore/DataLakeStore/DataPlaneCommands/ExportAzureRmDataLakeStoreChildItemProperties.cs +++ b/src/DataLakeStore/DataLakeStore/DataPlaneCommands/ExportAzureRmDataLakeStoreChildItemProperties.cs @@ -1,10 +1,12 @@ using System.Management.Automation; using Microsoft.Azure.Commands.DataLakeStore.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.DataLakeStore { - [Cmdlet("Export", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataLakeStoreChildItemProperties", SupportsShouldProcess = true), OutputType(typeof(bool))] - [Alias("Export-AdlStoreChildItemProperties")] + [GenericBreakingChange("Export-AzDataLakeStoreChildItemProperties alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Export", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataLakeStoreChildItemProperty", SupportsShouldProcess = true), OutputType(typeof(bool))] + [Alias("Export-AdlStoreChildItemProperties", "Export-AzDataLakeStoreChildItemProperties")] public class ExportAzureRmDataLakeStoreChildItemProperties : DataLakeStoreFileSystemCmdletBase { internal const string BaseParameterSetName = "GetDiskUsage"; diff --git a/src/DataLakeStore/DataLakeStore/help/Az.DataLakeStore.md b/src/DataLakeStore/DataLakeStore/help/Az.DataLakeStore.md index 48450c0d2207..81d4c979e031 100644 --- a/src/DataLakeStore/DataLakeStore/help/Az.DataLakeStore.md +++ b/src/DataLakeStore/DataLakeStore/help/Az.DataLakeStore.md @@ -26,7 +26,7 @@ Adds a virtual network rule to the specified Data Lake Store account. ### [Enable-AzDataLakeStoreKeyVault](Enable-AzDataLakeStoreKeyVault.md) Attempts to enable a user managed Key Vault for encryption of the specified Data Lake Store account. -### [Export-AzDataLakeStoreChildItemProperties](Export-AzDataLakeStoreChildItemProperties.md) +### [Export-AzDataLakeStoreChildItemProperty](Export-AzDataLakeStoreChildItemProperty.md) Exports the properties (Disk usage and Acl) for the entire tree from the specified path to a ouput path ### [Export-AzDataLakeStoreItem](Export-AzDataLakeStoreItem.md) diff --git a/src/DataLakeStore/DataLakeStore/help/Export-AzDataLakeStoreChildItemProperties.md b/src/DataLakeStore/DataLakeStore/help/Export-AzDataLakeStoreChildItemProperty.md similarity index 89% rename from src/DataLakeStore/DataLakeStore/help/Export-AzDataLakeStoreChildItemProperties.md rename to src/DataLakeStore/DataLakeStore/help/Export-AzDataLakeStoreChildItemProperty.md index fb23ba8f7127..29cdae340140 100644 --- a/src/DataLakeStore/DataLakeStore/help/Export-AzDataLakeStoreChildItemProperties.md +++ b/src/DataLakeStore/DataLakeStore/help/Export-AzDataLakeStoreChildItemProperty.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll-Help.xml Module Name: Az.DataLakeStore -online version: https://docs.microsoft.com/en-us/powershell/module/az.datalakestore/export-azdatalakestorechilditemproperties +online version: https://docs.microsoft.com/en-us/powershell/module/az.datalakestore/export-azdatalakestorechilditemproperty schema: 2.0.0 --- -# Export-AzDataLakeStoreChildItemProperties +# Export-AzDataLakeStoreChildItemProperty ## SYNOPSIS Exports the properties (Disk usage and Acl) for the entire tree from the specified path to a ouput path @@ -14,7 +14,7 @@ Exports the properties (Disk usage and Acl) for the entire tree from the specifi ### GetDiskUsage ``` -Export-AzDataLakeStoreChildItemProperties [-Account] [-Path] +Export-AzDataLakeStoreChildItemProperty [-Account] [-Path] [-OutputPath] [-SaveToAdl] [-IncludeFile] [-MaximumDepth ] [-Concurrency ] [-GetDiskUsage] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -22,7 +22,7 @@ Export-AzDataLakeStoreChildItemProperties [-Account] [-Path] [-Path] +Export-AzDataLakeStoreChildItemProperty [-Account] [-Path] [-OutputPath] [-SaveToAdl] [-IncludeFile] [-MaximumDepth ] [-Concurrency ] [-GetDiskUsage] [-GetAcl] [-HideConsistentAcl] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -30,20 +30,20 @@ Export-AzDataLakeStoreChildItemProperties [-Account] [-Path] [-Path] +Export-AzDataLakeStoreChildItemProperty [-Account] [-Path] [-OutputPath] [-SaveToAdl] [-IncludeFile] [-MaximumDepth ] [-Concurrency ] [-GetAcl] [-HideConsistentAcl] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Export-AzDataLakeStoreChildItemProperties** is used to report the ADLS space usage or/and ACL usage for the given directory and it's sub directories and files. +The **Export-AzDataLakeStoreChildItemProperty** is used to report the ADLS space usage or/and ACL usage for the given directory and it's sub directories and files. ## EXAMPLES ### Example 1: Get the disk usage and ACL usage for all subdirectories and files ``` -PS C:\> Export-AzDataLakeStoreChildItemProperties -Account ContosoADL -Path /a -OutputPath "C:\Users\contoso\Desktop\DumpFile.txt" -GetAcl -GetDiskUsage -IncludeFile +PS C:\> Export-AzDataLakeStoreChildItemProperty -Account ContosoADL -Path /a -OutputPath "C:\Users\contoso\Desktop\DumpFile.txt" -GetAcl -GetDiskUsage -IncludeFile ``` Get the disk usage and ACL usage for all subdirectories and files under /a. IncludeFile ensures the usage is reported for files also @@ -54,7 +54,7 @@ PS C:\> $fullAcl="user:contoso-userid:--x|user::rwx|other::---|group::rwx" PS C:\> $newFullAcl = $fullAcl.Split("{|}"); PS C:\> Set-AzDataLakeStoreItemAcl -Account ContosoADL -Path /a -Acl $newFullAcl -Recurse -Debug -PS C:\> Export-AzDataLakeStoreChildItemProperties -Account ContosoADL -Path /a -OutputPath "C:\Users\contoso\Desktop\DumpFile.txt" -GetAcl -HideConsistentAcl -IncludeFile +PS C:\> Export-AzDataLakeStoreChildItemProperty -Account ContosoADL -Path /a -OutputPath "C:\Users\contoso\Desktop\DumpFile.txt" -GetAcl -HideConsistentAcl -IncludeFile ``` Get the ACL usage for all subdirectories and files under /a. IncludeFile ensures the usage is reported for files also. HideconsistentAcl in this case will show the Acl of /a, not it's children since all of the children has same acl as /a. This flag skips the acl ouput of subtree if all it's acls are same as the root. diff --git a/src/DataMigration/DataMigration/Az.DataMigration.psd1 b/src/DataMigration/DataMigration/Az.DataMigration.psd1 index b1068ad78430..138e67338a6e 100644 --- a/src/DataMigration/DataMigration/Az.DataMigration.psd1 +++ b/src/DataMigration/DataMigration/Az.DataMigration.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.DataMigration.dll' diff --git a/src/DeploymentManager/DeploymentManager.Test/DeploymentManager.Test.csproj b/src/DeploymentManager/DeploymentManager.Test/DeploymentManager.Test.csproj new file mode 100644 index 000000000000..8be0e6c80579 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager.Test/DeploymentManager.Test.csproj @@ -0,0 +1,51 @@ + + + + DeploymentManager + + + + + + $(LegacyAssemblyPrefix)$(PsModuleName)$(AzTestAssemblySuffix) + + + + + + + + + + + + + + + + + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + + \ No newline at end of file diff --git a/src/DeploymentManager/DeploymentManager.Test/Properties/AssemblyInfo.cs b/src/DeploymentManager/DeploymentManager.Test/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..f00448ca33dc --- /dev/null +++ b/src/DeploymentManager/DeploymentManager.Test/Properties/AssemblyInfo.cs @@ -0,0 +1,37 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Reflection; +using System.Runtime.InteropServices; +using Xunit; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Microsoft.Azure.Commands.DeploymentManager.Test")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Microsoft.Azure.Commands.DeploymentManager.Test")] +[assembly: AssemblyCopyright("Copyright © Microsoft")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +[assembly: ComVisible(false)] + +[assembly: Guid("C01CC766-EAA4-4CA3-A595-6C4681316532")] + +[assembly: AssemblyVersion("4.0.1")] +[assembly: AssemblyFileVersion("4.0.1")] +[assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/ArtifactRoot/Storage.Copy.Parameters.json b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/ArtifactRoot/Storage.Copy.Parameters.json new file mode 100644 index 000000000000..5eb044ee71b8 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/ArtifactRoot/Storage.Copy.Parameters.json @@ -0,0 +1,24 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "location": { + "value": "centralus" + }, + "storageAccountName": { + "value": "__STORAGEACCOUNTNAME__" + }, + "accountType": { + "value": "Standard_RAGRS" + }, + "kind": { + "value": "StorageV2" + }, + "accessTier": { + "value": "Hot" + }, + "supportsHttpsTrafficOnly": { + "value": true + } + } +} diff --git a/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/ArtifactRoot/Storage.Copy.Template.json b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/ArtifactRoot/Storage.Copy.Template.json new file mode 100644 index 000000000000..f6e275dbcb00 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/ArtifactRoot/Storage.Copy.Template.json @@ -0,0 +1,43 @@ +{ + "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "location": { + "type": "string" + }, + "storageAccountName": { + "type": "string" + }, + "accountType": { + "type": "string" + }, + "kind": { + "type": "string" + }, + "accessTier": { + "type": "string" + }, + "supportsHttpsTrafficOnly": { + "type": "bool" + } + }, + "variables": {}, + "resources": [ + { + "name": "[parameters('storageAccountName')]", + "type": "Microsoft.Storage/storageAccounts", + "apiVersion": "2018-07-01", + "location": "[parameters('location')]", + "properties": { + "accessTier": "[parameters('accessTier')]", + "supportsHttpsTrafficOnly": "[parameters('supportsHttpsTrafficOnly')]" + }, + "dependsOn": [], + "sku": { + "name": "[parameters('accountType')]" + }, + "kind": "[parameters('kind')]" + } + ], + "outputs": {} +} \ No newline at end of file diff --git a/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/ArtifactRoot/Storage.Parameters.json b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/ArtifactRoot/Storage.Parameters.json new file mode 100644 index 000000000000..b77371db22b8 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/ArtifactRoot/Storage.Parameters.json @@ -0,0 +1,24 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "location": { + "value": "centralus" + }, + "storageAccountName": { + "value": "__STORAGEACCOUNTNAME__" + }, + "accountType": { + "value": "Standard_RAGRS" + }, + "kind": { + "value": "StorageV2" + }, + "accessTier": { + "value": "Hot" + }, + "supportsHttpsTrafficOnly": { + "value": true + } + } +} \ No newline at end of file diff --git a/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/ArtifactRoot/Storage.Template.json b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/ArtifactRoot/Storage.Template.json new file mode 100644 index 000000000000..f6e275dbcb00 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/ArtifactRoot/Storage.Template.json @@ -0,0 +1,43 @@ +{ + "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "location": { + "type": "string" + }, + "storageAccountName": { + "type": "string" + }, + "accountType": { + "type": "string" + }, + "kind": { + "type": "string" + }, + "accessTier": { + "type": "string" + }, + "supportsHttpsTrafficOnly": { + "type": "bool" + } + }, + "variables": {}, + "resources": [ + { + "name": "[parameters('storageAccountName')]", + "type": "Microsoft.Storage/storageAccounts", + "apiVersion": "2018-07-01", + "location": "[parameters('location')]", + "properties": { + "accessTier": "[parameters('accessTier')]", + "supportsHttpsTrafficOnly": "[parameters('supportsHttpsTrafficOnly')]" + }, + "dependsOn": [], + "sku": { + "name": "[parameters('accountType')]" + }, + "kind": "[parameters('kind')]" + } + ], + "outputs": {} +} \ No newline at end of file diff --git a/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/ArtifactRoot/Storage_Invalid.Parameters.json b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/ArtifactRoot/Storage_Invalid.Parameters.json new file mode 100644 index 000000000000..309b5a270681 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/ArtifactRoot/Storage_Invalid.Parameters.json @@ -0,0 +1,24 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "location": { + "value": "centralus" + }, + "storageAccountName": { + "value": "(Invalid_Storage.Account/Name)" + }, + "accountType": { + "value": "Standard_RAGRS" + }, + "kind": { + "value": "StorageV2" + }, + "accessTier": { + "value": "Hot" + }, + "supportsHttpsTrafficOnly": { + "value": true + } + } +} \ No newline at end of file diff --git a/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/CreateRollout.json b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/CreateRollout.json new file mode 100644 index 000000000000..e5968dfdef17 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/CreateRollout.json @@ -0,0 +1,34 @@ +{ + "$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json", + "resources": [ + { + "location": "Central US", + "apiVersion": "2018-09-01-preview", + "type": "Microsoft.DeploymentManager/rollouts", + "name": "__ROLLOUT_NAME__", + "Identity": { + "type": "userAssigned", + "identityIds": [ + "__USER_ASSIGNED_IDENTITY__" + ] + }, + "properties": { + "buildVersion": "1.0.0", + "targetServiceTopologyId": "__TARGET_SERVICE_TOPOLOGY__", + "artifactSourceId": "__ARTIFACT_SOURCE_ID__", + "stepGroups": [ + { + "name": "PilotRegion", + "preDeploymentSteps": [ + { + "stepId": "__STEP_ID__" + } + ], + "deploymentTargetId": "__SERVICE_UNIT_ID__" + } + ] + } + } + ], + "contentVersion": "1.0.0.0" +} diff --git a/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/CreateRollout_FailureRollout.json b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/CreateRollout_FailureRollout.json new file mode 100644 index 000000000000..ad246fa84125 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/CreateRollout_FailureRollout.json @@ -0,0 +1,29 @@ +{ + "$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json", + "resources": [ + { + "location": "Central US", + "apiVersion": "2018-09-01-preview", + "type": "Microsoft.DeploymentManager/rollouts", + "name": "__ROLLOUT_NAME__", + "Identity": { + "type": "userAssigned", + "identityIds": [ + "__USER_ASSIGNED_IDENTITY__" + ] + }, + "properties": { + "buildVersion": "1.0.0", + "targetServiceTopologyId": "__TARGET_SERVICE_TOPOLOGY__", + "artifactSourceId": "__ARTIFACT_SOURCE_ID__", + "stepGroups": [ + { + "name": "PilotRegion", + "deploymentTargetId": "__SERVICE_UNIT_ID__" + } + ] + } + } + ], + "contentVersion": "1.0.0.0" +} diff --git a/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerController.cs b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerController.cs new file mode 100644 index 000000000000..b8d104e7424b --- /dev/null +++ b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerController.cs @@ -0,0 +1,147 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Common.Authentication; +using Microsoft.Azure.Test.HttpRecorder; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using System; +using System.IO; +using System.Linq; +using TestEnvironmentFactory = Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestEnvironmentFactory; +using Microsoft.Azure.Management.Storage.Version2017_10_01; +using System.Collections.Generic; +using System.Diagnostics; +using Microsoft.Azure.ServiceManagement.Common.Models; +using Microsoft.Azure.Management.DeploymentManager; +using Microsoft.Azure.Management.ManagedServiceIdentity; +using Microsoft.Azure.Graph.RBAC; +using Microsoft.Azure.Management.Authorization; +using Microsoft.Azure.Management.ResourceManager; + +namespace Microsoft.Azure.Commands.DeploymentManager.Test.ScenarioTests +{ + public class DeploymentManagerController + { + private readonly EnvironmentSetupHelper _helper; + + public ResourceManagementClient ResourceManagementClient { get; private set; } + + public AzureDeploymentManagerClient DeploymentManagerClient { get; private set; } + + public StorageManagementClient StorageClient { get; private set; } + + public ManagedServiceIdentityClient ManagedServiceIdentityClient { get; private set; } + + public GraphRbacManagementClient GraphManagementClient { get; private set; } + + public AuthorizationManagementClient AuthorizationManagementClient { get; private set; } + + public DeploymentManagerController() + { + _helper = new EnvironmentSetupHelper(); + } + + public static DeploymentManagerController NewInstance => new DeploymentManagerController(); + + private void SetupManagementClients(MockContext context) + { + DeploymentManagerClient = GetDeploymentManagementClient(context); + ResourceManagementClient = GetResourceManagementClient(context); + StorageClient = GetStorageManagementClient(context); + ManagedServiceIdentityClient = GetManagedServiceIdentityClient(context); + GraphManagementClient = GetGraphManagementClient(context); + AuthorizationManagementClient = GetAuthorizationManagementClient(context); + + _helper.SetupManagementClients( + DeploymentManagerClient, + StorageClient, + ResourceManagementClient, + ManagedServiceIdentityClient, + GraphManagementClient, + AuthorizationManagementClient); + } + + public void RunPowerShellTest(XunitTracingInterceptor logger, params string[] scripts) + { + var sf = new StackTrace().GetFrame(1); + var callingClassType = sf.GetMethod().ReflectedType?.ToString(); + var mockName = sf.GetMethod().Name; + + _helper.TracingInterceptor = logger; + + var d = new Dictionary + { + {"Microsoft.Resources", null}, + {"Microsoft.Features", null}, + {"Microsoft.Authorization", null} + }; + var providersToIgnore = new Dictionary(); + HttpMockServer.Matcher = new PermissiveRecordMatcherWithApiExclusion(true, d, providersToIgnore); + + HttpMockServer.RecordsDirectory = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "SessionRecords"); + using (var context = MockContext.Start(callingClassType, mockName)) + { + SetupManagementClients(context); + + var callingClassName = callingClassType?.Split(new[] { "." }, StringSplitOptions.RemoveEmptyEntries).Last(); + _helper.SetupEnvironment(AzureModule.AzureResourceManager); + _helper.SetupModules(AzureModule.AzureResourceManager, + "ScenarioTests\\DeploymentManagerTestsCommon.ps1", + "ScenarioTests\\" + callingClassName + ".ps1", + _helper.RMProfileModule, + "AzureRM.Storage.ps1", + _helper.GetRMModulePath(@"Az.ManagedServiceIdentity.psd1"), + _helper.GetRMModulePath(@"Az.Storage.psd1"), + _helper.GetRMModulePath(@"Az.Resources.psd1"), + _helper.GetRMModulePath(@"Az.DeploymentManager.psd1")); + + if (scripts != null) + { + _helper.RunPowerShellTest(scripts); + } + } + } + + private static AuthorizationManagementClient GetAuthorizationManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + + private static GraphRbacManagementClient GetGraphManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + + private static ManagedServiceIdentityClient GetManagedServiceIdentityClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + + private static StorageManagementClient GetStorageManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + + private static AzureDeploymentManagerClient GetDeploymentManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + + private static ResourceManagementClient GetResourceManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTests.cs b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTests.cs new file mode 100644 index 000000000000..c686812bfe0d --- /dev/null +++ b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTests.cs @@ -0,0 +1,40 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Test.ScenarioTests +{ + using Microsoft.Azure.ServiceManagement.Common.Models; + using Microsoft.WindowsAzure.Commands.ScenarioTest; + using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; + using Xunit; + using Xunit.Abstractions; + + public class DeploymentManagerTests : RMTestBase + { + public XunitTracingInterceptor _logger; + + public DeploymentManagerTests(ITestOutputHelper output) + { + _logger = new XunitTracingInterceptor(output); + XunitTracingInterceptor.AddToContext(_logger); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void EndToEndFunctionalTests() + { + DeploymentManagerController.NewInstance.RunPowerShellTest(_logger, "Test-EndToEndFunctionalTests"); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTests.ps1 b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTests.ps1 new file mode 100644 index 000000000000..a2b000a3ca27 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTests.ps1 @@ -0,0 +1,618 @@ +$global:createRolloutTemplate = ".\ScenarioTests\CreateRollout.json" +$global:failureCreateRolloutTemplate = ".\ScenarioTests\CreateRollout_FailureRollout.json" + +$global:parametersFileName = "Storage.Parameters.json" +$global:invalidParametersFileName = "Storage_Invalid.Parameters.json" +$global:templateFileName = "Storage.Template.json" +$global:parametersCopyFileName = "Storage.Copy.Parameters.json" +$global:templateCopyFileName = "Storage.Copy.Template.json" + +$global:parametersArtifactSourceRelativePath = "ScenarioTests\ArtifactRoot\" + $global:parametersFileName +$global:templateArtifactSourceRelativePath = "ScenarioTests\ArtifactRoot\" + $global:templateFileName +$global:invalidParametersArtifactSourceRelativePath = "ScenarioTests\ArtifactRoot\" + $global:invalidParametersFileName +$global:parametersCopyArtifactSourceRelativePath = "ScenarioTests\ArtifactRoot\" + $global:parametersCopyFileName +$global:templateCopyArtifactSourceRelativePath = "ScenarioTests\ArtifactRoot\" + $global:templateCopyFileName + +<# +.SYNOPSIS +Test all resource operations +#> +function Test-EndToEndFunctionalTests +{ + # Setup + $resourceGroupName = Get-AdmAssetName + $subscriptionId = $(getVariable "SubscriptionId") + $artifactSourceName = $resourceGroupName + "ArtifactSource" + $updatedArtifactSourceName = $resourceGroupName + "ArtifactSourceUpdated" + $location = Get-ProviderLocation "Microsoft.DeploymentManager/serviceTopologies" + $storageAccountName = $resourceGroupName + "psstgacct" + + # Create resource group + $resourceGroup = New-AzResourceGroup -Name $resourceGroupName -Location $location + # $resourceGroup = TestSetup-CreateResourceGroup + Assert-NotNull $resourceGroup "Created resource group is null." + Assert-AreEqual $resourceGroupName $resourceGroup.ResourceGroupName + + $resourceGroupName = $resourceGroup.ResourceGroupName + + # Create and set managed identity + Set-ManagedIdentity $subscriptionId $resourceGroupName + + # Create artifact source + $artifactSource = New-ArtifactSource $resourceGroupName $storageAccountName $artifactSourceName true + + # Test all service topology and rollout operation + Test-ServiceTopology $resourceGroupName $location $artifactSource $updatedArtifactSourceName $storageAccountName $subscriptionId + + Remove-AzDeploymentManagerArtifactSource -ResourceGroupName $resourceGroupName -Name $artifactSourceName + + $getArtifactSource = $null + try + { + $getArtifactSource = Get-AzDeploymentManagerArtifactSource -ResourceGroupName $resourceGroupName -Name $artifactSourceName + } + catch + { + $errorString = $_.Exception.Message + Assert-True { $errorString.Contains("was not found") } + } + + Assert-Null $getArtifactSource +} + +function Test-ServiceTopology +{ + param + ( + $resourceGroupName, + $location, + $artifactSource, + $updatedArtifactSourceName, + $storageAccountName, + $subscriptionId) + + $serviceTopologyName = $resourceGroupName + "ServiceTopology" + + $serviceTopology = New-AzDeploymentManagerServiceTopology -ResourceGroupName $resourceGroupName -Location $location -Name $serviceTopologyName -ArtifactSourceId $artifactSource.Id + Validate-Topology $serviceTopology $resourceGroupName $location $serviceTopologyName $artifactSource.Id + $getResponse = Get-AzDeploymentManagerServiceTopology -ResourceGroupName $resourceGroupName -Name $serviceTopologyName + + Validate-Topology $getResponse $resourceGroupName $location $serviceTopologyName $artifactSource.Id + + # Test Service CRUD operations + Test-Service $resourceGroupName $location $artifactSource $serviceTopology $subscriptionId + + # Test Set-ServiceTopology + $updatedArtifactSource = New-ArtifactSource $resourceGroupName $storageAccountName $updatedArtifactSourceName $false + $getResponse.ArtifactSourceId = $updatedArtifactSource.Id + + $updatedServiceTopology = Set-AzDeploymentManagerServiceTopology $getResponse + Validate-Topology $updatedServiceTopology $resourceGroupName $location $serviceTopologyName $updatedArtifactSource.Id + + # Test Remove-ServiceTopology + Remove-AzDeploymentManagerServiceTopology -ResourceGroupName $resourceGroupName -Name $serviceTopologyName + $getResponse = $null + try + { + $getResponse = Get-AzDeploymentManagerServiceTopology -ResourceGroupName $resourceGroupName -Name $serviceTopologyName + } + catch + { + $errorString = $_.Exception.Message + Assert-True { $errorString.Contains("was not found") } + } + + Assert-Null $getResponse +} + +function Validate-Topology +{ + param + ( + $serviceTopology, + $resourceGroupName, + $location, + $serviceTopologyName, + $artifactSourceId + ) + + Assert-NotNull $serviceTopology "Created ServiceTopology is null" + Assert-AreEqual $serviceTopologyName $serviceTopology.Name + Assert-AreEqual $artifactSourceId $serviceTopology.ArtifactSourceId +} + +function Test-Service +{ + param + ( + $resourceGroupName, + $location, + $artifactSource, + $serviceTopology, + $subscriptionId) + + $serviceName = $resourceGroupName + "Service" + $targetLocation = $location + + $service = New-AzDeploymentManagerService -ResourceGroupName $resourceGroupName -Location $location -Name $serviceName -ServiceTopologyObject $serviceTopology -TargetLocation $targetLocation -TargetSubscriptionId $subscriptionId + + Validate-Service $service $resourceGroupName $location $serviceTopology.Name $serviceName $targetLocation $subscriptionId + + $getResponse = Get-AzDeploymentManagerService -ResourceGroupName $resourceGroupName -Name $serviceName -ServiceTopologyName $serviceTopology.Name + + Validate-Service $getResponse $resourceGroupName $location $serviceTopology.Name $serviceName $targetLocation $subscriptionId + + # Test Service Unit CRUD operations + Test-ServiceUnit $resourceGroupName $location $artifactSource $serviceTopology $getResponse + + # Test Set-Service + $getResponse.TargetSubscriptionId = "29843263-a568-4db8-899f-10977b9d5c7b" + $updatedService = Set-AzDeploymentManagerService $getResponse + + Validate-Service $updatedService $resourceGroupName $location $serviceTopologyName $serviceName $targetLocation $getResponse.TargetSubscriptionId + + # Test Remove-Service + Remove-AzDeploymentManagerService -ResourceGroupName $resourceGroupName -Name $serviceName -ServiceTopologyName $serviceTopology.Name + + $getResponse = $null + + try + { + $getResponse = Get-AzDeploymentManagerService -ResourceGroupName $resourceGroupName -Name $serviceName -ServiceTopologyName $serviceTopology.Name + } + catch + { + $errorString = $_.Exception.Message + Assert-True { $errorString.Contains("not found") } + } + + Assert-Null $getResponse +} + +function Validate-Service +{ + param + ( + $service, + $resourceGroupName, + $location, + $serviceTopologyName, + $serviceName, + $targetLocation, + $subscriptionId + ) + + Assert-NotNull $service "Created service is null" + Assert-AreEqual $serviceName $service.Name + Assert-AreEqual $serviceTopologyName $service.ServiceTopologyName + Assert-AreEqual $subscriptionId $service.TargetSubscriptionId +} + +function Test-ServiceUnit +{ + param + ( + $resourceGroupName, + $location, + $artifactSource, + $serviceTopology, + $service) + + $serviceUnitName = $resourceGroupName + "ServiceUnit" + $deploymentMode = "Incremental" + + $serviceUnit = New-AzDeploymentManagerServiceUnit ` + -ResourceGroupName $resourceGroupName ` + -Location $location ` + -ServiceTopologyObject $serviceTopology ` + -ServiceName $service.Name ` + -Name $serviceUnitName ` + -TargetResourceGroup $resourceGroupName ` + -DeploymentMode $deploymentMode ` + -ParametersArtifactSourceRelativePath $global:parametersFileName ` + -TemplateArtifactSourceRelativePath $global:templateFileName + + Validate-ServiceUnit $serviceUnit $resourceGroupName $location $serviceTopology.Name $service.Name $serviceUnitName $resourceGroupName $deploymentMode $global:templateFileName $global:parametersFileName + + $getResponse = Get-AzDeploymentManagerServiceUnit ` + -ResourceGroupName $resourceGroupName ` + -ServiceTopologyName $serviceTopology.Name ` + -ServiceName $serviceName ` + -Name $serviceUnitName + + Validate-ServiceUnit $getResponse $resourceGroupName $location $serviceTopology.Name $service.Name $serviceUnitName $resourceGroupName $deploymentMode $global:templateFileName $global:parametersFileName + + # Test rollout CRUD operations + # Create a service unit with invalid parameters file for testing restart-rollout scenari + $invalidServiceUnitName = $resourceGroupName + "InvalidServiceUnit" + + $invalidServiceUnit = New-AzDeploymentManagerServiceUnit ` + -ResourceGroupName $resourceGroupName ` + -Location $location ` + -ServiceTopologyObject $serviceTopology ` + -ServiceName $service.Name ` + -Name $invalidServiceUnitName ` + -TargetResourceGroup $resourceGroupName ` + -DeploymentMode $deploymentMode ` + -ParametersArtifactSourceRelativePath $global:invalidParametersFileName ` + -TemplateArtifactSourceRelativePath $global:templateFileName + Validate-ServiceUnit $invalidServiceUnit $resourceGroupName $location $serviceTopology.Name $service.Name $invalidServiceUnitName $resourceGroupName $deploymentMode $global:templateFileName $global:invalidParametersFileName + + # Test Step operations and rollout CRUD operations that depend on Service Units + Test-Steps $resourceGroupName $location $serviceTopology $artifactSource $serviceUnit $invalidServiceUnit + + # Test Set-ServiceUnit + $getResponse.DeploymentMode = "Complete" + $getResponse.ParametersArtifactSourceRelativePath = $global:parametersCopyFileName + $getResponse.TemplateArtifactSourceRelativePath = $global:templateCopyFileName + + $updatedServiceUnit = Set-AzDeploymentManagerServiceUnit $getResponse + + Validate-ServiceUnit $updatedServiceUnit $resourceGroupName $location $serviceTopology.Name $service.Name $serviceUnitName $resourceGroupName $getResponse.DeploymentMode $getResponse.TemplateArtifactSourceRelativePath $getResponse.ParametersArtifactSourceRelativePath + + # Test Remove-ServiceUnit + Remove-AzDeploymentManagerServiceUnit -ResourceGroupName $resourceGroupName -ServiceTopologyName $serviceTopology.Name -ServiceName $service.Name -Name $serviceUnitName + + # Remove second service unit created for failure rollout case + Remove-AzDeploymentManagerServiceUnit -ResourceGroupName $resourceGroupName -ServiceTopologyName $serviceTopology.Name -ServiceName $service.Name -Name $invalidServiceUnitName + + $getResponse = $null + try + { + $getResponse = Get-AzDeploymentManagerServiceUnit -ResourceGroupName $resourceGroupName -ServiceTopologyName $serviceTopology.Name -ServiceName $service.Name -Name $serviceUnitName + } + catch + { + $errorString = $_.Exception.Message + Assert-True { $errorString.Contains("was not found") } + } + + Assert-Null $getResponse +} + +function Validate-Serviceunit +{ + param + ( + $serviceUnit, + $resourceGroupName, + $location, + $serviceTopologyName, + $serviceName, + $serviceUnitName, + $targetResourceGroup, + $deploymentMode, + $templateArtifactSourceRelativePath, + $parametersArtifactSourceRelativePath) + Assert-NotNull $serviceUnit "Created service unit is null" + Assert-AreEqual $serviceUnitName $serviceUnit.Name + Assert-AreEqual $serviceTopologyName $serviceUnit.ServiceTopologyName + Assert-AreEqual $serviceName $serviceUnit.ServiceName + Assert-AreEqual $targetResourceGroup $serviceUnit.TargetResourceGroup + Assert-AreEqual $deploymentMode $serviceUnit.DeploymentMode + Assert-AreEqual $parametersArtifactSourceRelativePath $serviceUnit.ParametersArtifactSourceRelativePath + Assert-AreEqual $templateArtifactSourceRelativePath $serviceUnit.TemplateArtifactSourceRelativePath +} + +function Test-Steps +{ + param + ( + $resourceGroupName, + $location, + $serviceTopology, + $artifactSource, + $serviceUnit, + $invalidServiceUnit) + + $stepName = "WaitStep" + $duration = "PT5M" + $updatedDuration = "PT10M" + + $step = New-AzDeploymentManagerStep -Name $stepName -ResourceGroupName $resourceGroupName -Location $location -Duration $duration + Validate-Step $step $stepName $location $resourceGroupName $duration + + $getResponse = Get-AzDeploymentManagerStep -ResourceGroupName $resourceGroupName -Name $stepName + Validate-Step $getResponse $stepName $location $resourceGroupName $duration + + Test-Rollout $resourceGroupName $location $serviceTopology $artifactSource $serviceUnit $invalidServiceUnit $step + + # Test Set-Step + $getResponse.StepProperties.Duration = $updatedDuration + + $updatedStep = Set-AzDeploymentManagerStep $getResponse + Validate-Step $updatedStep $stepName $location $resourceGroupName $updatedDuration + + # Test Remove-Step + Remove-AzDeploymentManagerStep -ResourceGroupName $resourceGroupName -Name $stepName + $getResponse = $null + + try + { + $getResponse = Get-AzDeploymentManagerStep -ResourceGroupName $resourceGroupName -Name $stepName + } + catch + { + $errorString = $_.Exception.Message + Assert-True { $errorString.Contains("was not found") } + } + + Assert-Null $getResponse +} + +function Validate-Step +{ + param + ( + $step, + $stepName, + $location, + $resourceGroupName, + $duration) + + Assert-NotNull $step "Created step is null" + Assert-AreEqual $resourceGroupName $step.ResourceGroupName + Assert-AreEqual $stepName $step.Name + Assert-AreEqual $duration $step.StepProperties.Duration +} + +function Test-Rollout +{ + param + ( + $resourceGroupName, + $location, + $serviceTopology, + $artifactSource, + $serviceUnit, + $invalidServiceUnit, + $step) + + $rolloutName = $resourceGroupName + "Rollout" + $failedRolloutName = $resourceGroupName + "InvalidRollout" + + Replace-RolloutPlaceholders $rolloutName $userAssignedIdentity $serviceTopology.Id $artifactSource.Id $step.Id $serviceUnit.Id $global:createRolloutTemplate + + $deployment = New-AzResourceGroupDeployment -Name $rolloutName -ResourceGroupName $resourceGroupName -TemplateFile $global:createRolloutTemplate + + $getResponse = Get-AzDeploymentManagerRollout -ResourceGroupName $resourceGroupName -Name $rolloutName + Validate-Rollout $getResponse $resourceGroupName $location $rolloutName @('Running') $serviceTopology $artifactSource + + # Test Stop-Rollout + $canceledRollout = Stop-AzDeploymentManagerRollout -InputObject $getResponse -Force + Validate-Rollout $canceledRollout $resourceGroupName $location $rolloutName @('Canceling', 'Canceled') $serviceTopology $artifactSource + + # Wait for rollout to finish + while ($canceledRollout.Status -eq "Canceling") + { + Start-TestSleep 120000 + $canceledRollout = Get-AzDeploymentManagerRollout -ResourceGroupName $resourceGroupName -Name $rolloutName + } + + Assert-AreEqual "Canceled" $canceledRollout.Status + + Replace-RolloutPlaceholders $failedRolloutName $userAssignedIdentity $serviceTopology.Id $artifactSource.Id $step.Id $invalidServiceUnit.Id $global:failureCreateRolloutTemplate + + $failedDeployment = New-AzResourceGroupDeployment -Name $failedRolloutName -ResourceGroupName $resourceGroupName -TemplateFile $global:failureCreateRolloutTemplate + + $ErrorActionPreference = "SilentlyContinue" + $Error.Clear() + $failedRollout = Get-AzDeploymentManagerRollout -ResourceGroupName $resourceGroupName -Name $failedRolloutName 2>$null + + # Wait for the invalid rollout to fail + while ($failedRollout.Status -eq "Running") + { + Start-TestSleep 60000 + $failedRollout = Get-AzDeploymentManagerRollout -ResourceGroupName $resourceGroupName -Name $failedRolloutName 2>$null + } + + $Error.Clear() + Assert-AreEqual "Failed" $failedRollout.Status + + $restartRollout = Restart-AzDeploymentManagerRollout -ResourceGroupName $resourceGroupName -Name $failedRolloutName -SkipSucceeded + Validate-Rollout $restartRollout $resourceGroupName $location $failedRolloutName @('Running') $serviceTopology $artifactSource $true 1 + + Remove-AzDeploymentManagerRollout -ResourceGroupName $resourceGroupName -Name $rolloutName + $getResponse = Get-AzDeploymentManagerRollout -ResourceGroupName $resourceGroupName -Name $rolloutName + Assert-Null $getResponse +} + +function Validate-Rollout +{ + param + ( + $rollout, + $resourceGroupName, + $location, + $rolloutName, + $rolloutStatus, + $serviceTopology, + $artifactSource, + $skipSucceeded = $false, + $retryAttempt = 0) + + Assert-NotNull $rollout "Created rollout is null" + Assert-AreEqual $location $rollout.Location + Assert-AreEqual $resourceGroupName $rollout.ResourceGroupName + Assert-True { $rolloutStatus.Contains($rollout.Status) } + Assert-AreEqual $serviceTopology.Id $rollout.TargetServiceTopologyId + Assert-AreEqual $artifactSource.Id $rollout.ArtifactSourceId + Assert-AreEqual $retryAttempt $rollout.OperationInfo.RetryAttempt + Assert-AreEqual $skipSucceeded $rollout.OperationInfo.SkipSucceededOnRetry +} + +function New-ArtifactSource +{ + param + ( + $resourceGroupName, + $storageAccountName, + $artifactSourceName, + $setupContainer) + + # Artifacts setup information + $artifactRoot = "ScenarioTests\ArtifactRoot" + $containerName = "artifacts" + + $sasKeyForContainer = "" + Get-SasForContainer $resourceGroupName $storageAccountName $containerName $artifactRoot $setupContainer ([ref]$sasKeyForContainer) + $artifactSource = New-AzDeploymentManagerArtifactSource -ResourceGroupName $resourceGroupName -Name $artifactSourceName -Location $location -SasUri $sasKeyForContainer -ArtifactRoot $artifactRoot + + Assert-AreEqual $artifactSourceName $artifactSource.Name + Assert-AreEqual $resourceGroupName $artifactSource.ResourceGroupName + Assert-AreEqual "Microsoft.DeploymentManager/artifactSources" $artifactSource.Type + Assert-AreEqual $artifactRoot $artifactSource.ArtifactRoot + + return $artifactSource +} + +function Get-SasForContainer +{ + param + ( + $resourceGroupName, + $storageName, + $storageContainerName, + $artifactRoot, + $setupContainer, + [ref] $sasKeyForContainer + ) + if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecorderMode]::Playback) + { + if ($setupContainer -eq $true) + { + $storageAccount = New-AzureRmStorageAccount -ResourceGroupName $resourceGroupName -Name $storageName -Location "Central US" + Assert-NotNull $storageAccount + } + + # Get storage account context + $storageAccountContext = New-AzStorageContext -StorageAccountName $storageName -StorageAccountKey (Get-AzStorageAccountKey -ResourceGroupName $resourceGroupName -Name $storageName).Value[0] + + if ($setupContainer -eq $true) + { + Setup-StorageContainerForTest $resourceGroupName $storageName $containerName $artifactRoot $storageAccountContext + } + + # Get SAS token for container + $sasKeyForContainer.Value = New-AzStorageContainerSASToken -Name $storageContainerName -Permission "rl" -StartTime ([System.DateTime]::Now).AddHours(-20) -ExpiryTime ([System.DateTime]::Now).AddHours(48) -Context $storageAccountContext -FullUri + } + else + { + $sasKeyForContainer.Value = "dummysasforcontainer" + } +} + +function Setup-StorageContainerForTest +{ + param + ( + $resourceGroupName, + $storageName, + $storageContainerName, + $artifactRoot, + $storageAccountContext) + + if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecorderMode]::Playback) + { + $stgAcctForTemplate = $resourceGroupName + "stgtemplate" + $storageAcountReplacementSymbol = "__STORAGEACCOUNTNAME__" + + Replace-String $storageAcountReplacementSymbol $stgAcctForTemplate $global:parametersArtifactSourceRelativePath + Replace-String $storageAcountReplacementSymbol $stgAcctForTemplate $global:templateArtifactSourceRelativePath + Replace-String $storageAcountReplacementSymbol $stgAcctForTemplate $global:parametersCopyArtifactSourceRelativePath + Replace-String $storageAcountReplacementSymbol $stgAcctForTemplate $global:templateCopyArtifactSourceRelativePath + + $container = New-AzStorageContainer -Name $storageContainerName -Context $storageAccountContext + + Set-AzStorageBlobContent -Container $storageContainerName -Context $storageAccountContext -File $global:parametersArtifactSourceRelativePath -Blob $global:parametersArtifactSourceRelativePath + Set-AzStorageBlobContent -Container $storageContainerName -Context $storageAccountContext -File $global:parametersCopyArtifactSourceRelativePath -Blob $global:parametersCopyArtifactSourceRelativePath + Set-AzStorageBlobContent -Container $storageContainerName -Context $storageAccountContext -File $global:templateArtifactSourceRelativePath -Blob $global:templateArtifactSourceRelativePath + Set-AzStorageBlobContent -Container $storageContainerName -Context $storageAccountContext -File $global:templateCopyArtifactSourceRelativePath -Blob $global:templateCopyArtifactSourceRelativePath + Set-AzStorageBlobContent -Container $storageContainerName -Context $storageAccountContext -File $global:invalidParametersArtifactSourceRelativePath -Blob $global:invalidParametersArtifactSourceRelativePath + } +} + +function Replace-RolloutPlaceholders +{ + param( + $rolloutName, + $userAssignedIdentity, + $targetServiceTopologyId, + $artifactSourceId, + $stepId, + $serviceUnitId, + $file + ) + + if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecorderMode]::Playback) + { + Replace-String "__ROLLOUT_NAME__" $rolloutName $file + Replace-String "__TARGET_SERVICE_TOPOLOGY__" $targetServiceTopologyId $file + Replace-String "__ARTIFACT_SOURCE_ID__" $artifactSourceId $file + Replace-String "__STEP_ID__" $stepId $file + Replace-String "__SERVICE_UNIT_ID__" $serviceUnitId $file + } +} + +function Replace-String +{ + param ( + $replacementSymbol, + $replacementValue, + $file) + + if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecorderMode]::Playback) + { + $content = Get-Content($file) + $content = $content.replace($replacementSymbol, $replacementValue) + $content | out-file $file -encoding UTF8 + } +} + +function Set-ManagedIdentity +{ + param( + $subscriptionId, + $resourceGroupName + ) + + if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecorderMode]::Playback) + { + # Create identity for rollouts + $identityName = $resourceGroupName + "Identity" + $identityLocation = Get-ProviderLocation "Microsoft.ManagedIdentity/userAssignedIdentities" + $identity = New-AzUserAssignedIdentity -ResourceGroupName $resourceGroupName -Name $identityName -Location $identityLocation + $identityScope = "/subscriptions/" + $subscriptionId + + # Allow MSI to percolate + Start-TestSleep 120000 + $roleAssignment = $null + try + { + New-AzRoleAssignment -ObjectId $identity.PrincipalId -RoleDefinitionName "Contributor" -Scope $identityScope + } + catch + { + # Swallow failure after creating assignment in graph operation as cmdlet fails while making a graph call with error + # "The request did not have a subscription or a valid tenant level resource provider". The graph call is made after creating the assignment. + $errorString = $_.Exception.Message + Write-Verbose $errorString + } + + Start-TestSleep 30000 + Replace-String "__USER_ASSIGNED_IDENTITY__" $identity.Id $global:createRolloutTemplate + Replace-String "__USER_ASSIGNED_IDENTITY__" $identity.Id $global:failureCreateRolloutTemplate + } +} + +<# +.SYNOPSIS +Sleeps but only during recording. +#> +function Start-TestSleep($milliseconds) +{ + if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecorderMode]::Playback) + { + Start-Sleep -Milliseconds $milliseconds + } +} diff --git a/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTestsCommon.ps1 b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTestsCommon.ps1 new file mode 100644 index 000000000000..469f0921385b --- /dev/null +++ b/src/DeploymentManager/DeploymentManager.Test/ScenarioTests/DeploymentManagerTestsCommon.ps1 @@ -0,0 +1,77 @@ +# ---------------------------------------------------------------------------------- +# +# 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 +Gets valid resource group name +#> +function Get-ResourceGroupName +{ + return "RG-" + (getAssetName) +} + +function Get-AdmAssetName +{ + return "adm" + (getAssetName) +} + +<# +.SYNOPSIS +Gets the default location for a provider +#> +function Get-ProviderLocation($provider) +{ + if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecorderMode]::Playback) + { + $namespace = $provider.Split("/")[0] + if($provider.Contains("/")) + { + $type = $provider.Substring($namespace.Length + 1) + $location = Get-AzResourceProvider -ProviderNamespace $namespace | where {$_.ResourceTypes[0].ResourceTypeName -eq $type} + + if ($location -eq $null) + { + return "Central US" + } else + { + return $location.Locations[0] + } + } + + return "Central US" + } + + return "Central US" +} + +<# +.SYNOPSIS +Creates a resource group to use in tests +#> +function TestSetup-CreateResourceGroup +{ + $resourceGroupName = getAssetName + $rglocation = Get-ProviderLocation "Central US" + $resourceGroup = New-AzResourceGroup -Name $resourceGroupName -location $rglocation -Force + return $resourceGroup +} + +<# +.SYNOPSIS +Cleans the created resource groups +#> +function TestCleanup-RemoveResourceGroup($rgname) +{ + Remove-AzResourceGroup -Name $rgname -Force +} diff --git a/src/DeploymentManager/DeploymentManager.Test/SessionRecords/Microsoft.Azure.Commands.DeploymentManager.Test.ScenarioTests.DeploymentManagerTests/EndToEndFunctionalTests.json b/src/DeploymentManager/DeploymentManager.Test/SessionRecords/Microsoft.Azure.Commands.DeploymentManager.Test.ScenarioTests.DeploymentManagerTests/EndToEndFunctionalTests.json new file mode 100644 index 000000000000..f06599c6cc1b --- /dev/null +++ b/src/DeploymentManager/DeploymentManager.Test/SessionRecords/Microsoft.Azure.Commands.DeploymentManager.Test.ScenarioTests.DeploymentManagerTests/EndToEndFunctionalTests.json @@ -0,0 +1,68640 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b9268db3-b7ea-4b27-a219-263fdb092ea3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "8792386d-90e3-43c8-9b7d-58442d32dad3" + ], + "x-ms-correlation-request-id": [ + "8792386d-90e3-43c8-9b7d-58442d32dad3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200437Z:8792386d-90e3-43c8-9b7d-58442d32dad3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:04:36 GMT" + ], + "Content-Length": [ + "101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90320af6-4899-4c89-b33a-9c46b916fe08" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a676026f-8079-4a1d-b8b2-792f1ad2b67a" + ], + "x-ms-correlation-request-id": [ + "a676026f-8079-4a1d-b8b2-792f1ad2b67a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200438Z:a676026f-8079-4a1d-b8b2-792f1ad2b67a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:04:37 GMT" + ], + "Content-Length": [ + "174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123\",\r\n \"name\": \"admps2123\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de0d0a23-c31f-4a41-8244-46fe229e090b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "c1ea0914-c36a-4b32-a889-774a6f05120b" + ], + "x-ms-correlation-request-id": [ + "c1ea0914-c36a-4b32-a889-774a6f05120b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200440Z:c1ea0914-c36a-4b32-a889-774a6f05120b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:04:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "543939" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2018-11-02-privatepreview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\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 \"2018-06-01-preview\",\r\n \"2018-01-01\",\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 \"2018-06-01-preview\",\r\n \"2018-01-01\",\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 \"2018-06-01-preview\",\r\n \"2018-01-01\",\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 \"2018-06-01-preview\",\r\n \"2018-01-01\",\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-12-01-preview\",\r\n \"2018-09-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-09-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"Australia East\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-12-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 \"2018-12-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 \"2018-12-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-15\",\r\n \"2017-11-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-01-01\"\r\n ],\r\n \"defaultApiVersion\": \"2014-06-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-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-01-01\"\r\n ],\r\n \"defaultApiVersion\": \"2014-06-01\"\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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-15\",\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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\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 \"defaultApiVersion\": \"2014-06-01\",\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\": \"domainNames/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\": \"domainNames/serviceCertificates\",\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 \"France Central\",\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 Africa West\",\r\n \"South Africa North\",\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 \"France Central\",\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 Africa West\",\r\n \"South Africa North\",\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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\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 \"defaultApiVersion\": \"2014-06-01\",\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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\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\": \"storageAccounts/vmImages\",\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-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-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-beta\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"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 \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"defaultApiVersion\": \"2018-06-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"defaultApiVersion\": \"2018-06-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"defaultApiVersion\": \"2018-06-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"defaultApiVersion\": \"2018-06-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"defaultApiVersion\": \"2015-06-15\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ],\r\n \"defaultApiVersion\": \"2018-06-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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\": \"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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"South Africa North\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\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 \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serviceAssociationLinks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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 \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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 \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cachedImages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n },\r\n {\r\n \"applicationId\": \"918d0db8-4a38-4938-93c1-9313bdfe0272\",\r\n \"roleDefinitionId\": \"dcd2d2c9-3f80-4d72-95a8-2593111b4b12\"\r\n }\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 \"Korea Central\",\r\n \"France Central\",\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/importImage\",\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 \"Korea Central\",\r\n \"France Central\",\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/listBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/scheduleRun\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/listLogSasUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\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 \"Korea Central\",\r\n \"France Central\",\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 \"Korea Central\",\r\n \"France Central\",\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 \"Korea Central\",\r\n \"France Central\",\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 \"Korea Central\",\r\n \"France Central\",\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 \"Korea Central\",\r\n \"France Central\",\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/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\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 \"Korea Central\",\r\n \"France Central\",\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/deleteVirtualNetworkOrSubnets\",\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 \"Korea Central\",\r\n \"France Central\",\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 \"Korea Central\",\r\n \"France Central\",\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 \"Korea Central\",\r\n \"France Central\",\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 \"Korea Central\",\r\n \"France Central\",\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/listPolicies\",\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 \"Korea Central\",\r\n \"France Central\",\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 ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\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 \"Korea Central\",\r\n \"France Central\",\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 ]\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\": \"registries/eventGridFilters\",\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 \"Korea Central\",\r\n \"France Central\",\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\": \"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 \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\"\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 \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\"\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 \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\"\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\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 \"Korea South\",\r\n \"Korea 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 \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\r\n \"2018-08-01-preview\",\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"defaultApiVersion\": \"2018-03-31\",\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/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West 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 \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\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 \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31\",\r\n \"2018-03-31\",\r\n \"2017-08-31\",\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 \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DeploymentManager\",\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5b306cba-9c71-49db-96c3-d17ca2379c4d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"artifactSources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services/serviceUnits\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"steps\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\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 \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\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 \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\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 \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\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 \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\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\": \"locations/deleteVirtualNetworkOrSubnets\",\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 \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\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 \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\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 \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bccf540-eb86-4037-af03-7fa058c2db75\",\r\n \"roleDefinitionId\": \"89dcede2-9219-403a-9723-d3c6473f9472\"\r\n },\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 \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n },\r\n {\r\n \"applicationId\": \"b503eb83-1222-4dcc-b116-b98ed5216e05\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n },\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n },\r\n {\r\n \"applicationId\": \"6a0a243c-0886-468a-a4c2-eff52c7445da\",\r\n \"roleDefinitionId\": \"d2eda64b-c5e6-4930-8642-2d80ecd7c2e2\"\r\n },\r\n {\r\n \"applicationId\": \"707be275-6b9d-4ee7-88f9-c0c2bd646e0f\",\r\n \"roleDefinitionId\": \"fa027d90-6ba0-4c33-9a54-59edaf2327e7\"\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 \"UK South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\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\": \"components/query\",\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 \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\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 \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\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 \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\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 \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\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 \"Central India\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\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 \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\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 \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\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 \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"France 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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\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\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\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 \"France 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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\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 \"France 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\",\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North 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 \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"Central US EUAP\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\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 \"Central US EUAP\"\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 \"Central US EUAP\"\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 \"Central US EUAP\"\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-11-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"interfaceEndpoints\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\",\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-01-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\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 \"France Central\",\r\n \"France South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-04-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-10-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-09-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-09-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-09-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2018-12-01\",\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"locations/availableDelegations\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-05-01\"\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-05-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-08-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-08-01\"\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\"\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2016-12-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"resourceType\": \"virtualWans\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-09-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-09-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-11-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-11-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\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 \"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 \"France Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-04-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-05-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\"\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-03-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-03-01\"\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\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 \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\"\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 \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\"\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 \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\"\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 \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\"\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 \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\"\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\": \"views\",\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 \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"asyncOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"remediations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyTrackedResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-01-preview\",\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 \"2018-10-01\",\r\n \"2017-12-01-preview\",\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 \"2018-10-01\",\r\n \"2017-12-01-preview\",\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 \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\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 \"2018-10-01\",\r\n \"2017-12-01-preview\",\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 \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-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 \"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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\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\": \"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\": \"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\": \"regulatoryComplianceStandards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls/regulatoryComplianceAssessments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-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 \"2019-01-01\",\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 \"2018-06-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\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\": \"Compliances\",\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\": \"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\": \"discoveredSecuritySolutions\",\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/discoveredSecuritySolutions\",\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\": \"allowedConnections\",\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/allowedConnections\",\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\": \"topologies\",\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/topologies\",\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\": \"northSouthHardenings\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"northSouthHardenings/alerts\",\r\n \"locations\": [\r\n \"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 \"North Europe\",\r\n \"West Europe\",\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 \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\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\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West 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/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West 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/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"resourceType\": \"InformationProtectionPolicies\",\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\": \"advancedThreatProtectionSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\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 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deviceSecurityGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"settings\",\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\": \"adaptiveNetworkHardenings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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\": \"clusters/applications\",\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 \"France Central\"\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\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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/environments\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ServiceHealth\",\r\n \"namespace\": \"Microsoft.ServiceHealth\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"healthChecks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2016-03-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2016-03-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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/managedInstanceKeyAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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/geoBackupPolicies\",\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 \"France Central\",\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 Africa North\",\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 ]\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-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/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 \"France Central\",\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 Africa North\",\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/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 \"France Central\",\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 Africa North\",\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/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 \"France Central\",\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 Africa North\",\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/extendedAuditingSettings\",\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 \"France Central\",\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 Africa North\",\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/auditingSettingsAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/auditingSettingsOperationResults\",\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 \"France Central\",\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 Africa North\",\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/extendedAuditingSettingsAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/extendedAuditingSettingsOperationResults\",\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 \"France Central\",\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 Africa North\",\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/elasticPoolAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\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 \"France Central\",\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 Africa North\",\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/jobAgentAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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/interfaceEndpointProfiles\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/interfaceEndpointProfileOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/interfaceEndpointProfileAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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/vulnerabilityAssessments\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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/vulnerabilityAssessmentScanAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/recommendedSensitivityLabels\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 Africa North\",\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\": \"managedInstances/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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 Africa North\",\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-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 Africa North\",\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-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/managedDatabaseOperationResults\",\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 \"France Central\",\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 Africa North\",\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/managedDatabaseRestoreAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/managedDatabaseRestoreOperationResults\",\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 \"France Central\",\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 Africa North\",\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/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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\": \"managedInstances/tdeCertificates\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\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 \"France Central\",\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 Africa North\",\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/securityAlertPoliciesAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/securityAlertPoliciesOperationResults\",\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 \"France Central\",\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 Africa North\",\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\": \"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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterOperationResults\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/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 \"France Central\",\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 Africa North\",\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/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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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/longTermRetentionServers\",\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 \"France Central\",\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 Africa North\",\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/longTermRetentionBackups\",\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 \"France Central\",\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 Africa North\",\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/longTermRetentionPolicyOperationResults\",\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 \"France Central\",\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 Africa North\",\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/longTermRetentionPolicyAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/longTermRetentionBackupOperationResults\",\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 \"France Central\",\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 Africa North\",\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/longTermRetentionBackupAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/shortTermRetentionPolicyOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyOperationResults\",\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 \"France Central\",\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 Africa North\",\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/managedShortTermRetentionPolicyAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/instanceFailoverGroups\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-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 \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\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 \"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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-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 \"France Central\",\r\n \"South Africa North\"\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 \"France Central\",\r\n \"South Africa North\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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\": \"operations\",\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 },\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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\": \"publishingUsers\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-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 \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"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 \"South 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 Asia (Stage)\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-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 \"2015-01-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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-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 \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-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 \"2015-01-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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-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 \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-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 \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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 ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-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 \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-11-01\",\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 \"defaultApiVersion\": \"2018-02-01\"\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 \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\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 \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-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-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualMachineTemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/resourcePools\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-07-01\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\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 \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\"\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\": \"DomainServices/oucontainer\",\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 \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\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 \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\"\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 \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\"\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 \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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-preview\",\r\n \"2017-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-03-01\",\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 \"2018-03-01\",\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 \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\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 \"defaultApiVersion\": \"2017-08-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-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 \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"defaultApiVersion\": \"2017-08-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\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 \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\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 \"defaultApiVersion\": \"2017-08-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\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 \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\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 \"defaultApiVersion\": \"2017-08-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\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 \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\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 \"defaultApiVersion\": \"2017-08-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.AppConfiguration\",\r\n \"namespace\": \"Microsoft.AppConfiguration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"configurationStores\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"configurationStores/eventGridFilters\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"billingPeriods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listBillingAccountsWithCreateProjectPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listBillingAccountsWithCreateInvoiceSectionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts/createInvoiceSectionOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts/InvoiceSections/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts/InvoiceSections/productMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts/InvoiceSections/billingSubscriptionMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/listProjectsWithCreateSubscriptionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/listInvoiceSectionsWithCreateSubscriptionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts/BillingProfiles/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/eligibleOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/availableBalance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"OperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects/operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"OperationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/UpdateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects/initiateImportRequest\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/initiateImportRequest\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects/importRequests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/importRequests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"importRequests/acceptImportRequest\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/acceptTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"importRequests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"importRequests/declineImportRequest\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/declineTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usagePlans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingProperty\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheetDownloadOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productTransfersResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Blockchain\",\r\n \"namespace\": \"Microsoft.Blockchain\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"78827f38-7b69-4d5e-a627-d6fdd9c759a0\",\r\n \"roleDefinitionId\": \"9c68eaf3-8315-4e5c-b857-641b16b21f8f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/assignmentOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-12-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-12-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-12-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-12-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-12-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-12-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateExchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"exchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commercialReservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\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 \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"defaultApiVersion\": \"2014-06-01\",\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 \"France Central\",\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 \"France Central\",\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 \"France Central\",\r\n \"South Africa North\"\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 \"defaultApiVersion\": \"2014-06-01\",\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-beta\",\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 \"France Central\",\r\n \"South Africa North\"\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 \"defaultApiVersion\": \"2015-06-01\",\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 \"resourceType\": \"expressRouteCrossConnections\",\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\": \"expressRouteCrossConnections/peerings\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"defaultApiVersion\": \"2017-06-01\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\"\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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\"\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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\"\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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AggregatedCost\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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\": \"Charges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"credits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lots\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"OperationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"OperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3184af01-7a88-49e0-8b55-8ecdce0aa950\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CloudConnectors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"showbackRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-02-03-alpha\",\r\n \"2019-02-02-alpha\",\r\n \"2019-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Exports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.CustomerLockbox\",\r\n \"namespace\": \"Microsoft.CustomerLockbox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a0551534-cfc9-4e1f-9a7a-65093b32bb38\"\r\n },\r\n {\r\n \"applicationId\": \"01fc33a7-78ba-4d2f-a4b7-768e336e890e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\",\r\n \"managedByRoleDefinitionId\": \"f4c0a4f9-768c-4927-ab83-d319111d6ef4\"\r\n },\r\n {\r\n \"applicationId\": \"c9dbed16-85b2-456e-87b9-9bc0302918b3\",\r\n \"roleDefinitionId\": \"f4c0a4f9-768c-4927-ab83-d319111d6ef4\",\r\n \"managedByRoleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateAddress\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2368d027-f996-4edb-bf48-928f98f2ab8c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"authorization\": {\r\n \"applicationId\": \"213f5f78-fb30-46c7-9e98-91c720a1c026\"\r\n },\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 \"2018-12-01-preview\",\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 \"2018-12-01-preview\",\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 \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0947a342-ab4a-43be-93b3-b8243fc161e5\",\r\n \"roleDefinitionId\": \"f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da\"\r\n },\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\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 \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\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 US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\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 \"2018-06-01\",\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 \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getFeatureValue\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-11-01\",\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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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\": \"locations/usages\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-11-01\",\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 \"West Europe\"\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/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\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\": \"locations/usages\",\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/deleteVirtualNetworkOrSubnets\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-15-preview\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-15-preview\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DataShare\",\r\n \"namespace\": \"Microsoft.DataShare\",\r\n \"authorization\": {\r\n \"applicationId\": \"799f1985-1517-4fe1-af2b-ba3d87d4996b\",\r\n \"roleDefinitionId\": \"0146496b-e06f-439a-83be-49fac884edf5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"listinvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-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 \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/rejectInvitation\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consumerInvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DBforMariaDB\",\r\n \"namespace\": \"Microsoft.DBforMariaDB\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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 \"defaultApiVersion\": \"2018-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-01-22\"\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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 \"defaultApiVersion\": \"2018-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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 \"defaultApiVersion\": \"2018-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\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 \"defaultApiVersion\": \"2018-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\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 \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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 \"defaultApiVersion\": \"2018-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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 \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-01-22\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DevSpaces\",\r\n \"namespace\": \"Microsoft.DevSpaces\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"controllers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"controllers/listConnectionDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkContainerHostMapping\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"managedByRoleDefinitionId\": \"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 Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\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 \"2018-10-15-preview\",\r\n \"2018-09-15\",\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 Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\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 \"2018-10-15-preview\",\r\n \"2018-09-15\",\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 Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\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 \"2018-10-15-preview\",\r\n \"2018-09-15\",\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 \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\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 \"2018-10-15-preview\",\r\n \"2018-09-15\",\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 \"2018-10-15-preview\",\r\n \"2018-09-15\",\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 \"2018-10-15-preview\",\r\n \"2018-09-15\",\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 Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\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 \"2018-10-15-preview\",\r\n \"2018-09-15\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.EnterpriseKnowledgeGraph\",\r\n \"namespace\": \"Microsoft.EnterpriseKnowledgeGraph\",\r\n \"authorization\": {\r\n \"applicationId\": \"df8484e9-6636-4a37-a7ad-3ebfe7924fad\",\r\n \"roleDefinitionId\": \"413ada86-6aa5-4470-992a-7e965a5ecc1b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\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 Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\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 Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\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 Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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\": \"domains\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"software\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdates\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdateProfile\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.HanaOnAzure\",\r\n \"namespace\": \"Microsoft.HanaOnAzure\",\r\n \"authorization\": {\r\n \"applicationId\": \"cc5476ec-3074-44d1-8461-711f5d9b0e39\",\r\n \"roleDefinitionId\": \"4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hanaInstances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-10-31-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\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 \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\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 \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.HealthcareApis\",\r\n \"namespace\": \"Microsoft.HealthcareApis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4f6778d8-5aef-43dc-a1ff-b073724b9495\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-20-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"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 \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-11-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\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 \"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 \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-11-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\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 \"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 \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-11-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\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 \"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 \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-11-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"checkSubdomainAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.IoTSpaces\",\r\n \"namespace\": \"Microsoft.IoTSpaces\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-01-preview\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"Graph\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-01-preview\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-01-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/dataconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\"\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\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 \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01-beta\",\r\n \"2019-01-01-alpha\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\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 \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-07-01-preview\",\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, SystemAssignedResourceIdentity\"\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 \"2018-07-01-preview\",\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 \"2018-07-01-preview\",\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 \"2018-07-01-preview\",\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 \"2018-07-01-preview\",\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\": \"integrationServiceEnvironments\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\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\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-03-01-preview\",\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/computes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\",\r\n \"2018-03-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 \"2018-11-19\",\r\n \"2018-03-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 \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/computeOperationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workspaceOperationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmsizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"608f6f31-fed0-4f7b-809f-90f6c9b3de78\",\r\n \"roleDefinitionId\": \"3431F0E6-63BC-482D-A96E-0AB819610A5F\"\r\n },\r\n {\r\n \"applicationId\": \"ba1ea022-5807-41d5-bbeb-292c7e1cf5f6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest 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 \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-05\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets/assetFilters\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/accountFilters\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\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 \"defaultApiVersion\": \"2015-10-01\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.MixedReality\",\r\n \"namespace\": \"Microsoft.MixedReality\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c7ddd9b4-5172-4e28-bd29-1e0792947d18\",\r\n \"roleDefinitionId\": \"b67ee066-e058-4ddb-92bc-83cdd74bc38a\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-28-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 \"2019-02-28-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 \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"spatialAnchorsAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"12fb057d-b751-47cd-857c-f2934bb677b4\",\r\n \"roleDefinitionId\": \"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"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 ],\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 \"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 ],\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 \"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 ],\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 \"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 ],\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 \"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 ],\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 \"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 ],\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"728a93e3-065d-4678-93b1-3cc281223341\",\r\n \"roleDefinitionId\": \"b9967bf7-a345-4af8-95f0-49916f760fc6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"defaultApiVersion\": \"2016-01-29\",\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 \"defaultApiVersion\": \"2016-01-29\"\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 \"defaultApiVersion\": \"2016-01-29\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\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 \"defaultApiVersion\": \"2017-01-01-preview\",\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 \"defaultApiVersion\": \"2017-01-01-preview\"\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 \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\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 \"defaultApiVersion\": \"2017-01-01-preview\"\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 \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\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 \"defaultApiVersion\": \"2017-01-01-preview\"\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 \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\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 \"defaultApiVersion\": \"2017-01-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East 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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10\",\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01-preview\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"defaultApiVersion\": \"2017-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"defaultApiVersion\": \"2017-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"authorization\": {\r\n \"applicationId\": \"f738ef14-47dc-4564-b53b-45069484ccc7\",\r\n \"roleDefinitionId\": \"b131dd2d-387a-4cae-bb9b-3d021f80d1e6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkModernEligibility\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"saasresources\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\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 \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\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 \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\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 \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\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 \"France Central\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\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-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.SecurityInsights\",\r\n \"namespace\": \"Microsoft.SecurityInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"98785600-1bb7-4fb9-b9fa-19afe2c8a360\",\r\n \"roleDefinitionId\": \"ef1c46aa-ae81-4091-ab83-f75f28efb7b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertRules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bookmarks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataConnectors\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"officeConsents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d10de03d-5ba3-497a-90e6-7ff8c9736059\",\r\n \"roleDefinitionId\": \"BC13595A-E262-4621-929E-56FF90E6BF18\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"secrets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-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 \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/networkOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/volumeOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/gatewayOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/secretOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-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 \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-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 \"West US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"managedByResourceRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitRequests\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-04-02\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-06-05-preview\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-06-05-preview\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-06-05-preview\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-06-05-preview\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-06-05-preview\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-06-05-preview\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ],\r\n \"defaultApiVersion\": \"2018-04-02\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ],\r\n \"defaultApiVersion\": \"2018-04-02\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-11-01\",\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, SystemAssignedResourceIdentity\"\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 \"2018-11-01\",\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 \"2018-11-01\",\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 \"2018-11-01\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n },\r\n {\r\n \"applicationId\": \"5da7367f-09c8-493e-8fd4-638089cddec3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cancel\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rename\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\",\r\n \"roleDefinitionId\": \"81a3dd11-5123-4ec3-9485-772b0a27d1bd\"\r\n }\r\n ],\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"West US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\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 \"West US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\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 \"West US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\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 \"West US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\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 \"West US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.WindowsDefenderATP\",\r\n \"namespace\": \"Microsoft.WindowsDefenderATP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"componentsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstancesSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notificationSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3986b786-3d9b-4c11-9bb7-0bdbd22c9dff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "36d6d228-92cc-4457-9ebb-154a57202459" + ], + "x-ms-correlation-request-id": [ + "36d6d228-92cc-4457-9ebb-154a57202459" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200801Z:36d6d228-92cc-4457-9ebb-154a57202459" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:08:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "543939" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2018-11-02-privatepreview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\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 \"2018-06-01-preview\",\r\n \"2018-01-01\",\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 \"2018-06-01-preview\",\r\n \"2018-01-01\",\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 \"2018-06-01-preview\",\r\n \"2018-01-01\",\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 \"2018-06-01-preview\",\r\n \"2018-01-01\",\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-12-01-preview\",\r\n \"2018-09-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-09-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"Australia East\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-12-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 \"2018-12-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 \"2018-12-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-15\",\r\n \"2017-11-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-01-01\"\r\n ],\r\n \"defaultApiVersion\": \"2014-06-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-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-01-01\"\r\n ],\r\n \"defaultApiVersion\": \"2014-06-01\"\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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-15\",\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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\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 \"defaultApiVersion\": \"2014-06-01\",\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\": \"domainNames/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\": \"domainNames/serviceCertificates\",\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 \"France Central\",\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 Africa West\",\r\n \"South Africa North\",\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 \"France Central\",\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 Africa West\",\r\n \"South Africa North\",\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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\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 \"defaultApiVersion\": \"2014-06-01\",\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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\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 \"France Central\",\r\n \"South Africa West\",\r\n \"South Africa North\"\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\": \"storageAccounts/vmImages\",\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-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-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-beta\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"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 \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"defaultApiVersion\": \"2018-06-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"defaultApiVersion\": \"2018-06-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"defaultApiVersion\": \"2018-06-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"defaultApiVersion\": \"2018-06-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"defaultApiVersion\": \"2015-06-15\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ],\r\n \"defaultApiVersion\": \"2018-06-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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\": \"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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"South Africa North\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-30\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\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 \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serviceAssociationLinks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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 \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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 \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cachedImages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n },\r\n {\r\n \"applicationId\": \"918d0db8-4a38-4938-93c1-9313bdfe0272\",\r\n \"roleDefinitionId\": \"dcd2d2c9-3f80-4d72-95a8-2593111b4b12\"\r\n }\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 \"Korea Central\",\r\n \"France Central\",\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/importImage\",\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 \"Korea Central\",\r\n \"France Central\",\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/listBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/scheduleRun\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/listLogSasUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\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 \"Korea Central\",\r\n \"France Central\",\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 \"Korea Central\",\r\n \"France Central\",\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 \"Korea Central\",\r\n \"France Central\",\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 \"Korea Central\",\r\n \"France Central\",\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 \"Korea Central\",\r\n \"France Central\",\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/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\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 \"Korea Central\",\r\n \"France Central\",\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/deleteVirtualNetworkOrSubnets\",\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 \"Korea Central\",\r\n \"France Central\",\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 \"Korea Central\",\r\n \"France Central\",\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 \"Korea Central\",\r\n \"France Central\",\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 \"Korea Central\",\r\n \"France Central\",\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/listPolicies\",\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 \"Korea Central\",\r\n \"France Central\",\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 ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\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 \"Korea Central\",\r\n \"France Central\",\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 ]\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\": \"registries/eventGridFilters\",\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 \"Korea Central\",\r\n \"France Central\",\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\": \"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 \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\"\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 \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\"\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 \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\"\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\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 \"Korea South\",\r\n \"Korea 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 \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\r\n \"2018-08-01-preview\",\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"defaultApiVersion\": \"2018-03-31\",\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/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West 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 \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\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 \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\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 \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31\",\r\n \"2018-03-31\",\r\n \"2017-08-31\",\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 \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DeploymentManager\",\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5b306cba-9c71-49db-96c3-d17ca2379c4d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"artifactSources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services/serviceUnits\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"steps\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-09-01-preview\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\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 \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\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 \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\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 \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\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 \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\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\": \"locations/deleteVirtualNetworkOrSubnets\",\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 \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\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 \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\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 \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bccf540-eb86-4037-af03-7fa058c2db75\",\r\n \"roleDefinitionId\": \"89dcede2-9219-403a-9723-d3c6473f9472\"\r\n },\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 \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n },\r\n {\r\n \"applicationId\": \"b503eb83-1222-4dcc-b116-b98ed5216e05\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n },\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n },\r\n {\r\n \"applicationId\": \"6a0a243c-0886-468a-a4c2-eff52c7445da\",\r\n \"roleDefinitionId\": \"d2eda64b-c5e6-4930-8642-2d80ecd7c2e2\"\r\n },\r\n {\r\n \"applicationId\": \"707be275-6b9d-4ee7-88f9-c0c2bd646e0f\",\r\n \"roleDefinitionId\": \"fa027d90-6ba0-4c33-9a54-59edaf2327e7\"\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 \"UK South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\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\": \"components/query\",\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 \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\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 \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\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 \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\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 \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\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 \"Central India\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\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 \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\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 \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\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 \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"France 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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\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\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\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 \"France 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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\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 \"France 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\",\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North 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 \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-14\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"Central US EUAP\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\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 \"Central US EUAP\"\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 \"Central US EUAP\"\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 \"Central US EUAP\"\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-11-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"interfaceEndpoints\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\",\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-01-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\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 \"France Central\",\r\n \"France South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-04-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-10-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-09-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-09-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-09-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2018-12-01\",\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"locations/availableDelegations\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-05-01\"\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-05-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-08-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\"\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-08-01\"\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\"\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2017-09-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"defaultApiVersion\": \"2016-12-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"resourceType\": \"virtualWans\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-09-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-09-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-11-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-11-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\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 \"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 \"France Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-04-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-05-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\"\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-03-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-03-01\"\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-08-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\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 \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\"\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 \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\"\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 \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\"\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 \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\"\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 \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\"\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\": \"views\",\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 \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"asyncOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"remediations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyTrackedResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-01-preview\",\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 \"2018-10-01\",\r\n \"2017-12-01-preview\",\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 \"2018-10-01\",\r\n \"2017-12-01-preview\",\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 \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\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 \"2018-10-01\",\r\n \"2017-12-01-preview\",\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 \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-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 \"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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\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\": \"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\": \"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\": \"regulatoryComplianceStandards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls/regulatoryComplianceAssessments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-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 \"2019-01-01\",\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 \"2018-06-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\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\": \"Compliances\",\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\": \"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\": \"discoveredSecuritySolutions\",\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/discoveredSecuritySolutions\",\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\": \"allowedConnections\",\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/allowedConnections\",\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\": \"topologies\",\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/topologies\",\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\": \"northSouthHardenings\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"northSouthHardenings/alerts\",\r\n \"locations\": [\r\n \"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 \"North Europe\",\r\n \"West Europe\",\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 \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\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\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West 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/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West 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/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"resourceType\": \"InformationProtectionPolicies\",\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\": \"advancedThreatProtectionSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\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 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deviceSecurityGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"settings\",\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\": \"adaptiveNetworkHardenings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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\": \"clusters/applications\",\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 \"France Central\"\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\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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/environments\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ServiceHealth\",\r\n \"namespace\": \"Microsoft.ServiceHealth\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"healthChecks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2016-03-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2016-03-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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/managedInstanceKeyAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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/geoBackupPolicies\",\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 \"France Central\",\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 Africa North\",\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 ]\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-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/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 \"France Central\",\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 Africa North\",\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/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 \"France Central\",\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 Africa North\",\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/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 \"France Central\",\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 Africa North\",\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/extendedAuditingSettings\",\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 \"France Central\",\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 Africa North\",\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/auditingSettingsAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/auditingSettingsOperationResults\",\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 \"France Central\",\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 Africa North\",\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/extendedAuditingSettingsAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/extendedAuditingSettingsOperationResults\",\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 \"France Central\",\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 Africa North\",\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/elasticPoolAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\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 \"France Central\",\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 Africa North\",\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/jobAgentAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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/interfaceEndpointProfiles\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/interfaceEndpointProfileOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/interfaceEndpointProfileAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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/vulnerabilityAssessments\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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/vulnerabilityAssessmentScanAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/recommendedSensitivityLabels\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 Africa North\",\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\": \"managedInstances/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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 Africa North\",\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-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 Africa North\",\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-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/managedDatabaseOperationResults\",\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 \"France Central\",\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 Africa North\",\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/managedDatabaseRestoreAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/managedDatabaseRestoreOperationResults\",\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 \"France Central\",\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 Africa North\",\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/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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\": \"managedInstances/tdeCertificates\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\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 \"France Central\",\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 Africa North\",\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/securityAlertPoliciesAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/securityAlertPoliciesOperationResults\",\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 \"France Central\",\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 Africa North\",\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\": \"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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterOperationResults\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 Africa North\",\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 \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/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 \"France Central\",\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 Africa North\",\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/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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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 \"France Central\",\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 Africa North\",\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/longTermRetentionServers\",\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 \"France Central\",\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 Africa North\",\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/longTermRetentionBackups\",\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 \"France Central\",\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 Africa North\",\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/longTermRetentionPolicyOperationResults\",\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 \"France Central\",\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 Africa North\",\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/longTermRetentionPolicyAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/longTermRetentionBackupOperationResults\",\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 \"France Central\",\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 Africa North\",\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/longTermRetentionBackupAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/shortTermRetentionPolicyOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyOperationResults\",\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 \"France Central\",\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 Africa North\",\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/managedShortTermRetentionPolicyAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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/instanceFailoverGroups\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\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 \"France Central\",\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 Africa North\",\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-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-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 \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\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 \"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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-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 \"France Central\",\r\n \"South Africa North\"\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 \"France Central\",\r\n \"South Africa North\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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\": \"operations\",\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 },\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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\": \"publishingUsers\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-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 \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"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 \"South 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 Asia (Stage)\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-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 \"2015-01-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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-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 \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-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 \"2015-01-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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-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 \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-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 \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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 ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-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 \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"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 \"South 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 \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-11-01\",\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 \"defaultApiVersion\": \"2018-02-01\"\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 \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\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 \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\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 \"2018-03-01-preview\",\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 \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-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-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-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-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualMachineTemplates\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/resourcePools\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-07-01\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\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 \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\"\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\": \"DomainServices/oucontainer\",\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 \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\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 \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\"\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 \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\"\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 \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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-preview\",\r\n \"2017-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-03-01\",\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 \"2018-03-01\",\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 \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\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 \"defaultApiVersion\": \"2017-08-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-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 \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"defaultApiVersion\": \"2017-08-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\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 \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\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 \"defaultApiVersion\": \"2017-08-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\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 \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\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 \"defaultApiVersion\": \"2017-08-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\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 \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\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 \"defaultApiVersion\": \"2017-08-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.AppConfiguration\",\r\n \"namespace\": \"Microsoft.AppConfiguration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"configurationStores\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"configurationStores/eventGridFilters\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"billingPeriods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listBillingAccountsWithCreateProjectPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listBillingAccountsWithCreateInvoiceSectionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts/createInvoiceSectionOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts/InvoiceSections/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts/InvoiceSections/productMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts/InvoiceSections/billingSubscriptionMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/listProjectsWithCreateSubscriptionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/listInvoiceSectionsWithCreateSubscriptionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts/BillingProfiles/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/eligibleOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/availableBalance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"OperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects/operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"OperationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/UpdateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects/initiateImportRequest\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/initiateImportRequest\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects/importRequests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/importRequests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"importRequests/acceptImportRequest\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/acceptTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"importRequests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"importRequests/declineImportRequest\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/declineTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usagePlans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingProperty\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheetDownloadOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productTransfersResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Blockchain\",\r\n \"namespace\": \"Microsoft.Blockchain\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"78827f38-7b69-4d5e-a627-d6fdd9c759a0\",\r\n \"roleDefinitionId\": \"9c68eaf3-8315-4e5c-b857-641b16b21f8f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/assignmentOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-12-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-12-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-12-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-12-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-12-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-12-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateExchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"exchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commercialReservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\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 \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-12\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\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 \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"defaultApiVersion\": \"2014-06-01\",\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 \"France Central\",\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 \"France Central\",\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 \"France Central\",\r\n \"South Africa North\"\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 \"defaultApiVersion\": \"2014-06-01\",\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-beta\",\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 \"France Central\",\r\n \"South Africa North\"\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 \"defaultApiVersion\": \"2015-06-01\",\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 \"resourceType\": \"expressRouteCrossConnections\",\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\": \"expressRouteCrossConnections/peerings\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"defaultApiVersion\": \"2017-06-01\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\"\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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\"\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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\"\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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AggregatedCost\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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\": \"Charges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"credits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lots\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"OperationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"OperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3184af01-7a88-49e0-8b55-8ecdce0aa950\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CloudConnectors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"showbackRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-02-03-alpha\",\r\n \"2019-02-02-alpha\",\r\n \"2019-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Exports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.CustomerLockbox\",\r\n \"namespace\": \"Microsoft.CustomerLockbox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a0551534-cfc9-4e1f-9a7a-65093b32bb38\"\r\n },\r\n {\r\n \"applicationId\": \"01fc33a7-78ba-4d2f-a4b7-768e336e890e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\",\r\n \"managedByRoleDefinitionId\": \"f4c0a4f9-768c-4927-ab83-d319111d6ef4\"\r\n },\r\n {\r\n \"applicationId\": \"c9dbed16-85b2-456e-87b9-9bc0302918b3\",\r\n \"roleDefinitionId\": \"f4c0a4f9-768c-4927-ab83-d319111d6ef4\",\r\n \"managedByRoleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateAddress\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2368d027-f996-4edb-bf48-928f98f2ab8c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"authorization\": {\r\n \"applicationId\": \"213f5f78-fb30-46c7-9e98-91c720a1c026\"\r\n },\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 \"2018-12-01-preview\",\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 \"2018-12-01-preview\",\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 \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0947a342-ab4a-43be-93b3-b8243fc161e5\",\r\n \"roleDefinitionId\": \"f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da\"\r\n },\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\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 \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\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 US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\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 \"2018-06-01\",\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 \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getFeatureValue\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-11-01\",\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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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\": \"locations/usages\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-11-01\",\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 \"West Europe\"\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/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\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\": \"locations/usages\",\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/deleteVirtualNetworkOrSubnets\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-15-preview\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-15-preview\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DataShare\",\r\n \"namespace\": \"Microsoft.DataShare\",\r\n \"authorization\": {\r\n \"applicationId\": \"799f1985-1517-4fe1-af2b-ba3d87d4996b\",\r\n \"roleDefinitionId\": \"0146496b-e06f-439a-83be-49fac884edf5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"listinvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-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 \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/rejectInvitation\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consumerInvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DBforMariaDB\",\r\n \"namespace\": \"Microsoft.DBforMariaDB\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\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-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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 \"defaultApiVersion\": \"2018-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-01-22\"\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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 \"defaultApiVersion\": \"2018-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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 \"defaultApiVersion\": \"2018-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\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 \"defaultApiVersion\": \"2018-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\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 \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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 \"defaultApiVersion\": \"2018-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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 \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-01-22\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.DevSpaces\",\r\n \"namespace\": \"Microsoft.DevSpaces\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"controllers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"controllers/listConnectionDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkContainerHostMapping\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"managedByRoleDefinitionId\": \"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 Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\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 \"2018-10-15-preview\",\r\n \"2018-09-15\",\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 Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\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 \"2018-10-15-preview\",\r\n \"2018-09-15\",\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 Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\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 \"2018-10-15-preview\",\r\n \"2018-09-15\",\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 \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\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 \"2018-10-15-preview\",\r\n \"2018-09-15\",\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 \"2018-10-15-preview\",\r\n \"2018-09-15\",\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 \"2018-10-15-preview\",\r\n \"2018-09-15\",\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 Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\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 \"2018-10-15-preview\",\r\n \"2018-09-15\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.EnterpriseKnowledgeGraph\",\r\n \"namespace\": \"Microsoft.EnterpriseKnowledgeGraph\",\r\n \"authorization\": {\r\n \"applicationId\": \"df8484e9-6636-4a37-a7ad-3ebfe7924fad\",\r\n \"roleDefinitionId\": \"413ada86-6aa5-4470-992a-7e965a5ecc1b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\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 Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\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 Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\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 Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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\": \"domains\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"software\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdates\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdateProfile\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.HanaOnAzure\",\r\n \"namespace\": \"Microsoft.HanaOnAzure\",\r\n \"authorization\": {\r\n \"applicationId\": \"cc5476ec-3074-44d1-8461-711f5d9b0e39\",\r\n \"roleDefinitionId\": \"4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hanaInstances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-10-31-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\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 \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\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 \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2015-03-01-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.HealthcareApis\",\r\n \"namespace\": \"Microsoft.HealthcareApis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4f6778d8-5aef-43dc-a1ff-b073724b9495\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-20-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"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 \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-11-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\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 \"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 \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-11-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\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 \"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 \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-11-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\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 \"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 \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2016-11-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"checkSubdomainAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.IoTSpaces\",\r\n \"namespace\": \"Microsoft.IoTSpaces\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-01-preview\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"Graph\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-01-preview\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-10-01-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/dataconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\"\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-01-21\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\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 \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01-beta\",\r\n \"2019-01-01-alpha\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\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 \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-07-01-preview\",\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, SystemAssignedResourceIdentity\"\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 \"2018-07-01-preview\",\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 \"2018-07-01-preview\",\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 \"2018-07-01-preview\",\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 \"2018-07-01-preview\",\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\": \"integrationServiceEnvironments\",\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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\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\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-03-01-preview\",\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/computes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\",\r\n \"2018-03-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 \"2018-11-19\",\r\n \"2018-03-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 \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/computeOperationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workspaceOperationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmsizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"608f6f31-fed0-4f7b-809f-90f6c9b3de78\",\r\n \"roleDefinitionId\": \"3431F0E6-63BC-482D-A96E-0AB819610A5F\"\r\n },\r\n {\r\n \"applicationId\": \"ba1ea022-5807-41d5-bbeb-292c7e1cf5f6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest 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 \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ],\r\n \"defaultApiVersion\": \"2018-02-05\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets/assetFilters\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/accountFilters\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\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 \"defaultApiVersion\": \"2015-10-01\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\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 \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.MixedReality\",\r\n \"namespace\": \"Microsoft.MixedReality\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c7ddd9b4-5172-4e28-bd29-1e0792947d18\",\r\n \"roleDefinitionId\": \"b67ee066-e058-4ddb-92bc-83cdd74bc38a\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-28-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 \"2019-02-28-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 \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"spatialAnchorsAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"12fb057d-b751-47cd-857c-f2934bb677b4\",\r\n \"roleDefinitionId\": \"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"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 ],\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 \"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 ],\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 \"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 ],\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 \"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 ],\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 \"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 ],\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 \"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 ],\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"728a93e3-065d-4678-93b1-3cc281223341\",\r\n \"roleDefinitionId\": \"b9967bf7-a345-4af8-95f0-49916f760fc6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"defaultApiVersion\": \"2016-01-29\",\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 \"defaultApiVersion\": \"2016-01-29\"\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 \"defaultApiVersion\": \"2016-01-29\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\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 \"defaultApiVersion\": \"2017-01-01-preview\",\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 \"defaultApiVersion\": \"2017-01-01-preview\"\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 \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\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 \"defaultApiVersion\": \"2017-01-01-preview\"\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 \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\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 \"defaultApiVersion\": \"2017-01-01-preview\"\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 \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\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 \"defaultApiVersion\": \"2017-01-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East 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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10\",\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01-preview\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"defaultApiVersion\": \"2017-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\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 \"defaultApiVersion\": \"2017-04-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"authorization\": {\r\n \"applicationId\": \"f738ef14-47dc-4564-b53b-45069484ccc7\",\r\n \"roleDefinitionId\": \"b131dd2d-387a-4cae-bb9b-3d021f80d1e6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkModernEligibility\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"saasresources\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\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 \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\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 \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\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 \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\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 \"France Central\"\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\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-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.SecurityInsights\",\r\n \"namespace\": \"Microsoft.SecurityInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"98785600-1bb7-4fb9-b9fa-19afe2c8a360\",\r\n \"roleDefinitionId\": \"ef1c46aa-ae81-4091-ab83-f75f28efb7b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertRules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bookmarks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataConnectors\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"officeConsents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d10de03d-5ba3-497a-90e6-7ff8c9736059\",\r\n \"roleDefinitionId\": \"BC13595A-E262-4621-929E-56FF90E6BF18\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"secrets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-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 \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/networkOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/volumeOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/gatewayOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/secretOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-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 \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-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 \"West US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"managedByResourceRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitRequests\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-04-02\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-06-05-preview\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-06-05-preview\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-06-05-preview\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-06-05-preview\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-06-05-preview\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-06-05-preview\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ],\r\n \"defaultApiVersion\": \"2018-04-02\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ],\r\n \"defaultApiVersion\": \"2018-04-02\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"2018-11-01\",\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, SystemAssignedResourceIdentity\"\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 \"2018-11-01\",\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 \"2018-11-01\",\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 \"2018-11-01\",\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n },\r\n {\r\n \"applicationId\": \"5da7367f-09c8-493e-8fd4-638089cddec3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cancel\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rename\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\",\r\n \"roleDefinitionId\": \"81a3dd11-5123-4ec3-9485-772b0a27d1bd\"\r\n }\r\n ],\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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"West US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\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 \"West US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\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 \"West US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\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 \"West US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\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 \"West US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.WindowsDefenderATP\",\r\n \"namespace\": \"Microsoft.WindowsDefenderATP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-04-01-preview\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"componentsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstancesSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notificationSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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 \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ManagedIdentity?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlZElkZW50aXR5P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8d90141-f350-4854-8138-d2bcb5ec9789" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "bbe96d68-db70-4a19-b42c-e6ed272b4edf" + ], + "x-ms-correlation-request-id": [ + "bbe96d68-db70-4a19-b42c-e6ed272b4edf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200441Z:bbe96d68-db70-4a19-b42c-e6ed272b4edf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:04:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1805" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.ManagedIdentity/userAssignedIdentities/admps2123Identity?api-version=2015-08-31-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hbmFnZWRJZGVudGl0eS91c2VyQXNzaWduZWRJZGVudGl0aWVzL2FkbXBzMjEyM0lkZW50aXR5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMzEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"South Africa North\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0283566f-6cc8-40fe-a04c-2185277dd55e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ManagedServiceIdentity.ManagedServiceIdentityClient/0.10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "40" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.ManagedIdentity/userAssignedIdentities/admps2123Identity" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "bcd0d58f-da41-4d3f-bb6a-2238dfe56416" + ], + "x-ms-correlation-request-id": [ + "bcd0d58f-da41-4d3f-bb6a-2238dfe56416" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200445Z:bcd0d58f-da41-4d3f-bb6a-2238dfe56416" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:04:45 GMT" + ], + "Content-Length": [ + "815" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.ManagedIdentity/userAssignedIdentities/admps2123Identity\",\r\n \"name\": \"admps2123Identity\",\r\n \"type\": \"Microsoft.ManagedIdentity/userAssignedIdentities\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"8a328bd1-4bd1-4c79-b48b-07b70953c554\",\r\n \"clientId\": \"9bab63e8-8ae7-4093-90fb-4da0a4075019\",\r\n \"clientSecretUrl\": \"https://control-southafricanorth.identity.azure.net/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.ManagedIdentity/userAssignedIdentities/admps2123Identity/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=8a328bd1-4bd1-4c79-b48b-07b70953c554&aid=9bab63e8-8ae7-4093-90fb-4da0a4075019\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "//subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20'Contributor'&api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzUzMDEyZGNiLTUwMzktNGU5Ni04ZTZjLTVkOTEzZGExY2RiNS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9cm9sZU5hbWUlMjBlcSUyMCdDb250cmlidXRvcicmYXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4bb6c94e-7856-4b79-ae6d-74f7c5d14a27" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-request-id": [ + "df5f2201-ff74-4fbd-b8ac-89e4e8b83514" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "2494f084-4156-4dca-9115-7882dcfe08fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200645Z:2494f084-4156-4dca-9115-7882dcfe08fe" + ], + "Date": [ + "Wed, 27 Mar 2019 20:06:45 GMT" + ], + "Content-Length": [ + "832" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:38.458061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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}", + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Authorization/roleAssignments/2a18d206-30fa-4175-b28d-856d8c21524d?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzUzMDEyZGNiLTUwMzktNGU5Ni04ZTZjLTVkOTEzZGExY2RiNS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzLzJhMThkMjA2LTMwZmEtNDE3NS1iMjhkLTg1NmQ4YzIxNTI0ZD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"8a328bd1-4bd1-4c79-b48b-07b70953c554\",\r\n \"canDelegate\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "672ce87a-d45d-454e-868d-17021cd9e4a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.8.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "281" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "3" + ], + "x-ms-request-id": [ + "707de9b1-d68d-437a-8278-666f096f3a9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "c0e46160-5c45-40ce-b3d8-93a03d769d0e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200648Z:c0e46160-5c45-40ce-b3d8-93a03d769d0e" + ], + "Date": [ + "Wed, 27 Mar 2019 20:06:47 GMT" + ], + "Content-Length": [ + "721" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"8a328bd1-4bd1-4c79-b48b-07b70953c554\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5\",\r\n \"createdOn\": \"2019-03-27T20:06:46.4746176Z\",\r\n \"updatedOn\": \"2019-03-27T20:06:46.4746176Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f52e71ff-b5e8-41f3-a79e-ece2d7ccd615\"\r\n },\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Authorization/roleAssignments/2a18d206-30fa-4175-b28d-856d8c21524d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2a18d206-30fa-4175-b28d-856d8c21524d\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "//subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzUzMDEyZGNiLTUwMzktNGU5Ni04ZTZjLTVkOTEzZGExY2RiNS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zL2IyNDk4OGFjLTYxODAtNDJhMC1hYjg4LTIwZjczODJkZDI0Yz9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d90f242f-dcc8-4b00-9bdb-7c6d1ee63924" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.8.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-request-id": [ + "afdec230-efd3-4a22-931f-68d4e590f105" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "f62fe970-23c7-4ae3-bc03-7dd1066e7a3b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200648Z:f62fe970-23c7-4ae3-bc03-7dd1066e7a3b" + ], + "Date": [ + "Wed, 27 Mar 2019 20:06:47 GMT" + ], + "Content-Length": [ + "820" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:38.458061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/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}", + "StatusCode": 200 + }, + { + "RequestUri": "/72f988bf-86f1-41af-91ab-2d7cd011db47/getObjectsByObjectIds?api-version=1.6", + "EncodedRequestUri": "LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"8a328bd1-4bd1-4c79-b48b-07b70953c554\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3fba8d5-fcf2-4579-9fb9-925be4832661" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/3.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "116" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c7d1286e-5608-4151-b996-c45ac86a369f" + ], + "x-ms-correlation-request-id": [ + "c7d1286e-5608-4151-b996-c45ac86a369f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200648Z:c7d1286e-5608-4151-b996-c45ac86a369f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:06:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "135" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"MissingSubscription\",\r\n \"message\": \"The request did not have a subscription or a valid tenant level resource provider.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Storage/storageAccounts/admps2123psstgacct?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FkbXBzMjEyM3Bzc3RnYWNjdD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64428732-e84a-428f-9f1c-039c6d15db76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.1.17" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "100" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Storage/locations/centralus/asyncoperations/41d93c17-5fc7-41ef-b8c6-6d2b40611521?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "41d93c17-5fc7-41ef-b8c6-6d2b40611521" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "6b9900b6-1d30-477e-979b-1d70443e4957" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200720Z:6b9900b6-1d30-477e-979b-1d70443e4957" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:07:20 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Storage/locations/centralus/asyncoperations/41d93c17-5fc7-41ef-b8c6-6d2b40611521?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvY2VudHJhbHVzL2FzeW5jb3BlcmF0aW9ucy80MWQ5M2MxNy01ZmM3LTQxZWYtYjhjNi02ZDJiNDA2MTE1MjE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.1.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5fb8c981-9fa4-4458-bdba-ade88a22bdfc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "4445e975-f0c0-4c02-a695-40e13910d094" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200738Z:4445e975-f0c0-4c02-a695-40e13910d094" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:07:37 GMT" + ], + "Content-Length": [ + "1073" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Storage/storageAccounts/admps2123psstgacct\",\r\n \"name\": \"admps2123psstgacct\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-27T20:07:20.0635834Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-03-27T20:07:20.0635834Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-03-27T20:07:19.8921797Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://admps2123psstgacct.blob.core.windows.net/\",\r\n \"queue\": \"https://admps2123psstgacct.queue.core.windows.net/\",\r\n \"table\": \"https://admps2123psstgacct.table.core.windows.net/\",\r\n \"file\": \"https://admps2123psstgacct.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Storage/storageAccounts/admps2123psstgacct/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FkbXBzMjEyM3Bzc3RnYWNjdC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "daa0d2f9-046e-454f-a8c1-7d71a0b3731a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.1.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "34e7eec8-49d5-4f8c-b085-497a6e84111a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "6f035537-6b8e-4190-8b67-05ace2bdc401" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200738Z:6f035537-6b8e-4190-8b67-05ace2bdc401" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:07:37 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="This is the secret for a resource that has since been deleted.")] + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"2uiSqCIfNBcvS9WF2ZyOJ3kHHxzRJyGnUUqVgcd3hGlVd5xnANtufSuLRNxtJ9bYPCdRK4kMG8t3Xq2QkI/Dsw==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"lySiUKSJaPROmzFLOaC9bY6mq2wAEHnrijeu8Gnt8+bDzlGSm0ToBgsS2ub1GPbx8wNwCTV7UmqpArURy0KPNw==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Storage/storageAccounts/admps2123psstgacct/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FkbXBzMjEyM3Bzc3RnYWNjdC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "01d29f12-0bbd-4a0f-a83a-62ab77ae0c1a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.1.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "706b88cd-7269-4390-a04e-aabc037d4c21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "6e34b43f-ef5c-4e68-9873-442bb43cf03b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201532Z:6e34b43f-ef5c-4e68-9873-442bb43cf03b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:15:32 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="This is the secret for a resource that has since been deleted.")] + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"2uiSqCIfNBcvS9WF2ZyOJ3kHHxzRJyGnUUqVgcd3hGlVd5xnANtufSuLRNxtJ9bYPCdRK4kMG8t3Xq2QkI/Dsw==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"lySiUKSJaPROmzFLOaC9bY6mq2wAEHnrijeu8Gnt8+bDzlGSm0ToBgsS2ub1GPbx8wNwCTV7UmqpArURy0KPNw==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL2FydGlmYWN0U291cmNlcy9hZG1wczIxMjNBcnRpZmFjdFNvdXJjZT9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c94e06e-9562-40c9-bf95-e9e07333420e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d64974b9-6433-492b-8971-1d00b56dea6c" + ], + "x-ms-correlation-request-id": [ + "d64974b9-6433-492b-8971-1d00b56dea6c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200742Z:d64974b9-6433-492b-8971-1d00b56dea6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:07:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "180" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource' under resource group 'admps2123' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL2FydGlmYWN0U291cmNlcy9hZG1wczIxMjNBcnRpZmFjdFNvdXJjZT9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f03b5b18-d994-4ea3-a0b6-57cbb012d4e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "a6eb5530-2de1-403e-9645-38969ab914d8" + ], + "x-ms-correlation-request-id": [ + "a6eb5530-2de1-403e-9645-38969ab914d8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201630Z:a6eb5530-2de1-403e-9645-38969ab914d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:16:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "180" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource' under resource group 'admps2123' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL2FydGlmYWN0U291cmNlcy9hZG1wczIxMjNBcnRpZmFjdFNvdXJjZT9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="This is the secret for a resource that has since been deleted.")] + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceType\": \"AzureStorage\",\r\n \"artifactRoot\": \"ScenarioTests\\\\ArtifactRoot\",\r\n \"authentication\": {\r\n \"type\": \"Sas\",\r\n \"properties\": {\r\n \"sasUri\": \"https://admps2123psstgacct.blob.core.windows.net/artifacts?sv=2018-03-28&sr=c&sig=WGbzuDf25GvkqjVZuOhdlniESpDbF2KNzXDWhfUI4XI%3D&st=2019-03-27T00%3A07%3A42Z&se=2019-03-29T20%3A07%3A42Z&sp=rl\"\r\n }\r\n }\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88a5beea-8ae9-4154-a15f-158e4f4c14b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "442" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "88a5beea-8ae9-4154-a15f-158e4f4c14b4" + ], + "x-ms-correlation-request-id": [ + "f7e7db37-8f03-4677-84d8-c797fd82ca31" + ], + "x-ms-request-id": [ + "176411cc-ebbc-4f31-8250-4fc8c546bfab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200757Z:f7e7db37-8f03-4677-84d8-c797fd82ca31" + ], + "Date": [ + "Wed, 27 Mar 2019 20:07:57 GMT" + ], + "Content-Length": [ + "676" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="This is the secret for a resource that has since been deleted.")] + "ResponseBody": "{\r\n \"properties\": {\r\n \"sourceType\": \"AzureStorage\",\r\n \"artifactRoot\": \"ScenarioTests\\\\ArtifactRoot\",\r\n \"authentication\": {\r\n \"type\": \"Sas\",\r\n \"properties\": {\r\n \"sasUri\": \"https://admps2123psstgacct.blob.core.windows.net/artifacts?sv=2018-03-28&sr=c&sig=WGbzuDf25GvkqjVZuOhdlniESpDbF2KNzXDWhfUI4XI%3D&st=2019-03-27T00%3A07%3A42Z&se=2019-03-29T20%3A07%3A42Z&sp=rl\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/artifactSources\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource\",\r\n \"name\": \"admps2123ArtifactSource\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neT9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2a06868-8265-48b4-9da8-7b937561479d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "7f9d4d22-d094-4999-b0e0-d240f8530241" + ], + "x-ms-correlation-request-id": [ + "7f9d4d22-d094-4999-b0e0-d240f8530241" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200757Z:7f9d4d22-d094-4999-b0e0-d240f8530241" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:07:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "183" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology' under resource group 'admps2123' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neT9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0cea427-e20c-4b14-b6b9-9093f3e7f8dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "f0cea427-e20c-4b14-b6b9-9093f3e7f8dd" + ], + "x-ms-correlation-request-id": [ + "a591d1c3-ef68-46bb-93fd-d2aacc5dc23c" + ], + "x-ms-request-id": [ + "a7a0db1a-e5f7-4c55-bb91-4b81a48de674" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200759Z:a591d1c3-ef68-46bb-93fd-d2aacc5dc23c" + ], + "Date": [ + "Wed, 27 Mar 2019 20:07:59 GMT" + ], + "Content-Length": [ + "504" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/servicetopologies\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology\",\r\n \"name\": \"admps2123ServiceTopology\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neT9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd538cbe-6433-4fa9-9653-c76f1aabd12a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "aa94a47d-720f-46e0-b20c-ea3d3af5273b" + ], + "x-ms-correlation-request-id": [ + "aa94a47d-720f-46e0-b20c-ea3d3af5273b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201608Z:aa94a47d-720f-46e0-b20c-ea3d3af5273b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:16:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "183" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology' under resource group 'admps2123' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neT9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource\"\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72b6e55c-0670-463a-be4e-a6c086ce19b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "239" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "72b6e55c-0670-463a-be4e-a6c086ce19b5" + ], + "x-ms-correlation-request-id": [ + "6b8a7c3d-9de7-46ba-a375-1c6159b80416" + ], + "x-ms-request-id": [ + "63ba0ff7-d69c-4721-bed0-43e50e099427" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200758Z:6b8a7c3d-9de7-46ba-a375-1c6159b80416" + ], + "Date": [ + "Wed, 27 Mar 2019 20:07:58 GMT" + ], + "Content-Length": [ + "536" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/servicetopologies\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology\",\r\n \"name\": \"admps2123ServiceTopology\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neT9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSourceUpdated\"\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aab42fd6-8909-430d-9870-8a610810d6f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "246" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "aab42fd6-8909-430d-9870-8a610810d6f0" + ], + "x-ms-correlation-request-id": [ + "ed746f55-0448-4ea8-9817-e981bc6f0b5f" + ], + "x-ms-request-id": [ + "c1f228d3-6eb5-4811-b154-740607a7fa0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201605Z:ed746f55-0448-4ea8-9817-e981bc6f0b5f" + ], + "Date": [ + "Wed, 27 Mar 2019 20:16:04 GMT" + ], + "Content-Length": [ + "543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSourceUpdated\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/servicetopologies\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology\",\r\n \"name\": \"admps2123ServiceTopology\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Storage?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73e4f921-40cd-4cc6-8f1c-3b4f62013029" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "d3963f6a-789d-4147-af52-c31446c0941f" + ], + "x-ms-correlation-request-id": [ + "d3963f6a-789d-4147-af52-c31446c0941f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200801Z:d3963f6a-789d-4147-af52-c31446c0941f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:08:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "10414" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-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 \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\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 \"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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-07-01\"\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"defaultApiVersion\": \"2018-07-01\",\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-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 \"France Central\",\r\n \"South Africa North\"\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 \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c38175e-ce2b-4ba7-99e6-4fefa51fcfcd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "310ef343-963e-4c65-bcb2-85e4a577de94" + ], + "x-ms-correlation-request-id": [ + "310ef343-963e-4c65-bcb2-85e4a577de94" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200802Z:310ef343-963e-4c65-bcb2-85e4a577de94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:08:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "209" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service' under resource group 'admps2123' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d87a22fd-8978-402e-b3aa-2ee7ec68d6a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "d87a22fd-8978-402e-b3aa-2ee7ec68d6a7" + ], + "x-ms-correlation-request-id": [ + "6cbd82d2-7430-4f8e-9e6e-8cfadfa22632" + ], + "x-ms-request-id": [ + "f38a48bb-3110-4744-81df-8d882cab17fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200805Z:6cbd82d2-7430-4f8e-9e6e-8cfadfa22632" + ], + "Date": [ + "Wed, 27 Mar 2019 20:08:04 GMT" + ], + "Content-Length": [ + "476" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"targetSubscriptionId\": \"53012dcb-5039-4e96-8e6c-5d913da1cdb5\",\r\n \"targetLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/serviceTopologies/services\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service\",\r\n \"name\": \"admps2123Service\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2205951-dc2b-4f71-bffa-51c8fcac4b85" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "bedcf775-eba0-41ff-a39e-d4d7c2c3ccc1" + ], + "x-ms-correlation-request-id": [ + "bedcf775-eba0-41ff-a39e-d4d7c2c3ccc1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201532Z:bedcf775-eba0-41ff-a39e-d4d7c2c3ccc1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:15:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "209" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service' under resource group 'admps2123' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"targetLocation\": \"East US\",\r\n \"targetSubscriptionId\": \"53012dcb-5039-4e96-8e6c-5d913da1cdb5\"\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd8c174b-c080-4d3d-abba-2b1e197e84c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "159" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "fd8c174b-c080-4d3d-abba-2b1e197e84c0" + ], + "x-ms-correlation-request-id": [ + "2060e64b-d8ed-4245-9632-2a814e925f81" + ], + "x-ms-request-id": [ + "168e8b49-b4c0-4563-b9b8-94d2b1af1246" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200804Z:2060e64b-d8ed-4245-9632-2a814e925f81" + ], + "Date": [ + "Wed, 27 Mar 2019 20:08:03 GMT" + ], + "Content-Length": [ + "476" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"targetSubscriptionId\": \"53012dcb-5039-4e96-8e6c-5d913da1cdb5\",\r\n \"targetLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/serviceTopologies/services\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service\",\r\n \"name\": \"admps2123Service\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"targetLocation\": \"East US\",\r\n \"targetSubscriptionId\": \"29843263-a568-4db8-899f-10977b9d5c7b\"\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdf8ec05-da02-4313-8506-3f6e684446de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "159" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "fdf8ec05-da02-4313-8506-3f6e684446de" + ], + "x-ms-correlation-request-id": [ + "2eee7ecb-e428-40f4-93c6-3ae498183d57" + ], + "x-ms-request-id": [ + "7b6a1d8f-1484-48cc-b86b-09c3011be64c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201530Z:2eee7ecb-e428-40f4-93c6-3ae498183d57" + ], + "Date": [ + "Wed, 27 Mar 2019 20:15:29 GMT" + ], + "Content-Length": [ + "476" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"targetSubscriptionId\": \"29843263-a568-4db8-899f-10977b9d5c7b\",\r\n \"targetLocation\": \"East US\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/serviceTopologies/services\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service\",\r\n \"name\": \"admps2123Service\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlL3NlcnZpY2VVbml0cy9hZG1wczIxMjNTZXJ2aWNlVW5pdD9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ebe899bb-5f28-42cb-a85a-363281d7b796" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c1a018d1-02dd-4681-92ae-3f468e4d811d" + ], + "x-ms-correlation-request-id": [ + "c1a018d1-02dd-4681-92ae-3f468e4d811d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200805Z:c1a018d1-02dd-4681-92ae-3f468e4d811d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:08:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "243" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit' under resource group 'admps2123' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlL3NlcnZpY2VVbml0cy9hZG1wczIxMjNTZXJ2aWNlVW5pdD9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "75e1aa39-64a5-45ef-a500-e9460b765b3f" + ], + "x-ms-correlation-request-id": [ + "eed97722-9b12-486c-bc4e-6e3bfb68b290" + ], + "x-ms-request-id": [ + "02fba43c-2437-4fd7-8b0e-7f03d2e2f1b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200857Z:eed97722-9b12-486c-bc4e-6e3bfb68b290" + ], + "Date": [ + "Wed, 27 Mar 2019 20:08:57 GMT" + ], + "Content-Length": [ + "643" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"targetResourceGroup\": \"admps2123\",\r\n \"deploymentMode\": \"Incremental\",\r\n \"artifacts\": {\r\n \"templateArtifactSourceRelativePath\": \"Storage.Template.json\",\r\n \"parametersArtifactSourceRelativePath\": \"Storage.Parameters.json\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit\",\r\n \"name\": \"admps2123ServiceUnit\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlL3NlcnZpY2VVbml0cy9hZG1wczIxMjNTZXJ2aWNlVW5pdD9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71d35fad-84d0-4aff-8777-5f78f3100802" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "71d35fad-84d0-4aff-8777-5f78f3100802" + ], + "x-ms-correlation-request-id": [ + "e6d09509-6e2f-4550-9502-f2976d47139d" + ], + "x-ms-request-id": [ + "093b5df2-396b-49a9-9ea9-18a4cea2d0b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200859Z:e6d09509-6e2f-4550-9502-f2976d47139d" + ], + "Date": [ + "Wed, 27 Mar 2019 20:08:58 GMT" + ], + "Content-Length": [ + "643" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"targetResourceGroup\": \"admps2123\",\r\n \"deploymentMode\": \"Incremental\",\r\n \"artifacts\": {\r\n \"templateArtifactSourceRelativePath\": \"Storage.Template.json\",\r\n \"parametersArtifactSourceRelativePath\": \"Storage.Parameters.json\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit\",\r\n \"name\": \"admps2123ServiceUnit\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlL3NlcnZpY2VVbml0cy9hZG1wczIxMjNTZXJ2aWNlVW5pdD9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "8632d4c5-fa15-4d5b-8b65-c9d39150323e" + ], + "x-ms-correlation-request-id": [ + "10e313eb-4952-487a-90ec-e201e94d79cb" + ], + "x-ms-request-id": [ + "4cba3942-a744-4a00-a7b1-5f3918ffbe88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11412" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201523Z:10e313eb-4952-487a-90ec-e201e94d79cb" + ], + "Date": [ + "Wed, 27 Mar 2019 20:15:22 GMT" + ], + "Content-Length": [ + "650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"targetResourceGroup\": \"admps2123\",\r\n \"deploymentMode\": \"Complete\",\r\n \"artifacts\": {\r\n \"templateArtifactSourceRelativePath\": \"Storage.Copy.Template.json\",\r\n \"parametersArtifactSourceRelativePath\": \"Storage.Copy.Parameters.json\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit\",\r\n \"name\": \"admps2123ServiceUnit\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlL3NlcnZpY2VVbml0cy9hZG1wczIxMjNTZXJ2aWNlVW5pdD9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14ba56d2-5343-40f6-873f-21b6cc3cda06" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "80d9c646-6144-4d29-9e62-6c9c732fbbd8" + ], + "x-ms-correlation-request-id": [ + "80d9c646-6144-4d29-9e62-6c9c732fbbd8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201528Z:80d9c646-6144-4d29-9e62-6c9c732fbbd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:15:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "243" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit' under resource group 'admps2123' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlL3NlcnZpY2VVbml0cy9hZG1wczIxMjNTZXJ2aWNlVW5pdD9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"targetResourceGroup\": \"admps2123\",\r\n \"deploymentMode\": \"Incremental\",\r\n \"artifacts\": {\r\n \"templateArtifactSourceRelativePath\": \"Storage.Template.json\",\r\n \"parametersArtifactSourceRelativePath\": \"Storage.Parameters.json\"\r\n }\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f2e4860-5780-4a15-848e-0cc878b3ecd1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "306" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/operationResults/387e5fd2-49e8-414c-880f-7ce0aa28ea6b?api-version=2018-09-01-preview" + ], + "Retry-After": [ + "46" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/operationResults/387e5fd2-49e8-414c-880f-7ce0aa28ea6b?api-version=2018-09-01-preview" + ], + "x-ms-client-request-id": [ + "5f2e4860-5780-4a15-848e-0cc878b3ecd1" + ], + "x-ms-correlation-request-id": [ + "2bccd205-9549-44b6-a4cd-ccf7be9371e0" + ], + "x-ms-request-id": [ + "387e5fd2-49e8-414c-880f-7ce0aa28ea6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200809Z:2bccd205-9549-44b6-a4cd-ccf7be9371e0" + ], + "Date": [ + "Wed, 27 Mar 2019 20:08:09 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"targetResourceGroup\": \"admps2123\",\r\n \"deploymentMode\": \"Incremental\",\r\n \"artifacts\": {\r\n \"templateArtifactSourceRelativePath\": \"Storage.Template.json\",\r\n \"parametersArtifactSourceRelativePath\": \"Storage.Parameters.json\"\r\n },\r\n \"provisioningState\": \"Running\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit\",\r\n \"name\": \"admps2123ServiceUnit\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlL3NlcnZpY2VVbml0cy9hZG1wczIxMjNTZXJ2aWNlVW5pdD9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"targetResourceGroup\": \"admps2123\",\r\n \"deploymentMode\": \"Complete\",\r\n \"artifacts\": {\r\n \"templateArtifactSourceRelativePath\": \"Storage.Copy.Template.json\",\r\n \"parametersArtifactSourceRelativePath\": \"Storage.Copy.Parameters.json\"\r\n }\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47c3c550-1213-41cd-9d03-a3312fa9579b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "313" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/operationResults/316e84e1-68ca-483b-bd5c-0212af823a9e?api-version=2018-09-01-preview" + ], + "Retry-After": [ + "46" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/operationResults/316e84e1-68ca-483b-bd5c-0212af823a9e?api-version=2018-09-01-preview" + ], + "x-ms-client-request-id": [ + "47c3c550-1213-41cd-9d03-a3312fa9579b" + ], + "x-ms-correlation-request-id": [ + "39b982c0-01cd-41a2-b9cd-7c80ac5504ff" + ], + "x-ms-request-id": [ + "316e84e1-68ca-483b-bd5c-0212af823a9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201433Z:39b982c0-01cd-41a2-b9cd-7c80ac5504ff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:33 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"targetResourceGroup\": \"admps2123\",\r\n \"deploymentMode\": \"Complete\",\r\n \"artifacts\": {\r\n \"templateArtifactSourceRelativePath\": \"Storage.Copy.Template.json\",\r\n \"parametersArtifactSourceRelativePath\": \"Storage.Copy.Parameters.json\"\r\n },\r\n \"provisioningState\": \"Running\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit\",\r\n \"name\": \"admps2123ServiceUnit\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/operationResults/387e5fd2-49e8-414c-880f-7ce0aa28ea6b?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL29wZXJhdGlvblJlc3VsdHMvMzg3ZTVmZDItNDllOC00MTRjLTg4MGYtN2NlMGFhMjhlYTZiP2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit?api-version=2018-09-01-preview" + ], + "Retry-After": [ + "30" + ], + "x-ms-client-request-id": [ + "93ce6239-8551-4bf5-9606-505404698e28" + ], + "x-ms-correlation-request-id": [ + "0f475765-4181-4d20-89a4-c4fb3c6b6cf7" + ], + "x-ms-request-id": [ + "dd29eac0-aa4e-4960-a815-4a2f5c62e0e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200856Z:0f475765-4181-4d20-89a4-c4fb3c6b6cf7" + ], + "Date": [ + "Wed, 27 Mar 2019 20:08:56 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-27T20:08:07.208Z\",\r\n \"endTime\": \"2019-03-27T20:08:17.162Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123InvalidServiceUnit?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlL3NlcnZpY2VVbml0cy9hZG1wczIxMjNJbnZhbGlkU2VydmljZVVuaXQ/YXBpLXZlcnNpb249MjAxOC0wOS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "24930243-e4fe-44b5-9fd2-825611791dbb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "334f7d6d-6f2d-448a-b654-7968fcf9a371" + ], + "x-ms-correlation-request-id": [ + "334f7d6d-6f2d-448a-b654-7968fcf9a371" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200859Z:334f7d6d-6f2d-448a-b654-7968fcf9a371" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:08:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "250" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123InvalidServiceUnit' under resource group 'admps2123' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123InvalidServiceUnit?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlL3NlcnZpY2VVbml0cy9hZG1wczIxMjNJbnZhbGlkU2VydmljZVVuaXQ/YXBpLXZlcnNpb249MjAxOC0wOS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "39c2b898-3345-45ad-979b-97a3ab577ab5" + ], + "x-ms-correlation-request-id": [ + "1aeb587b-2e61-4763-91d4-e7307e33e4b1" + ], + "x-ms-request-id": [ + "47c4b39c-8b5c-42cc-9fa9-89e6e0167687" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200953Z:1aeb587b-2e61-4763-91d4-e7307e33e4b1" + ], + "Date": [ + "Wed, 27 Mar 2019 20:09:52 GMT" + ], + "Content-Length": [ + "665" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"targetResourceGroup\": \"admps2123\",\r\n \"deploymentMode\": \"Incremental\",\r\n \"artifacts\": {\r\n \"templateArtifactSourceRelativePath\": \"Storage.Template.json\",\r\n \"parametersArtifactSourceRelativePath\": \"Storage_Invalid.Parameters.json\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123InvalidServiceUnit\",\r\n \"name\": \"admps2123InvalidServiceUnit\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123InvalidServiceUnit?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlL3NlcnZpY2VVbml0cy9hZG1wczIxMjNJbnZhbGlkU2VydmljZVVuaXQ/YXBpLXZlcnNpb249MjAxOC0wOS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"targetResourceGroup\": \"admps2123\",\r\n \"deploymentMode\": \"Incremental\",\r\n \"artifacts\": {\r\n \"templateArtifactSourceRelativePath\": \"Storage.Template.json\",\r\n \"parametersArtifactSourceRelativePath\": \"Storage_Invalid.Parameters.json\"\r\n }\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f2c4630-f91d-45ac-9183-deb6760d5643" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "314" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/operationResults/a0a8ae7a-2c2d-4610-8458-333b73247f64?api-version=2018-09-01-preview" + ], + "Retry-After": [ + "44" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/operationResults/a0a8ae7a-2c2d-4610-8458-333b73247f64?api-version=2018-09-01-preview" + ], + "x-ms-client-request-id": [ + "6f2c4630-f91d-45ac-9183-deb6760d5643" + ], + "x-ms-correlation-request-id": [ + "37a682a1-969c-4a30-823e-1c5e504fd915" + ], + "x-ms-request-id": [ + "a0a8ae7a-2c2d-4610-8458-333b73247f64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200907Z:37a682a1-969c-4a30-823e-1c5e504fd915" + ], + "Date": [ + "Wed, 27 Mar 2019 20:09:07 GMT" + ], + "Content-Length": [ + "663" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"targetResourceGroup\": \"admps2123\",\r\n \"deploymentMode\": \"Incremental\",\r\n \"artifacts\": {\r\n \"templateArtifactSourceRelativePath\": \"Storage.Template.json\",\r\n \"parametersArtifactSourceRelativePath\": \"Storage_Invalid.Parameters.json\"\r\n },\r\n \"provisioningState\": \"Running\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123InvalidServiceUnit\",\r\n \"name\": \"admps2123InvalidServiceUnit\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/operationResults/a0a8ae7a-2c2d-4610-8458-333b73247f64?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL29wZXJhdGlvblJlc3VsdHMvYTBhOGFlN2EtMmMyZC00NjEwLTg0NTgtMzMzYjczMjQ3ZjY0P2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123InvalidServiceUnit?api-version=2018-09-01-preview" + ], + "Retry-After": [ + "30" + ], + "x-ms-client-request-id": [ + "34fd4e30-22a5-4607-81c5-19c77fa439c8" + ], + "x-ms-correlation-request-id": [ + "2a9579ac-c86d-4d89-8845-128651390661" + ], + "x-ms-request-id": [ + "cc65105f-5abb-4101-9233-16c4a676cc6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200952Z:2a9579ac-c86d-4d89-8845-128651390661" + ], + "Date": [ + "Wed, 27 Mar 2019 20:09:51 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-27T20:09:01.227Z\",\r\n \"endTime\": \"2019-03-27T20:09:09.952Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/steps/WaitStep?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3N0ZXBzL1dhaXRTdGVwP2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37e3f942-c29d-479f-8827-32f197eb1558" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "7ad81b4e-2169-446d-bcce-98004d3253fc" + ], + "x-ms-correlation-request-id": [ + "7ad81b4e-2169-446d-bcce-98004d3253fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200953Z:7ad81b4e-2169-446d-bcce-98004d3253fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:09:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "155" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DeploymentManager/steps/WaitStep' under resource group 'admps2123' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/steps/WaitStep?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3N0ZXBzL1dhaXRTdGVwP2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c17cbfbb-97f6-4ae5-a258-e530af3e12a0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "c17cbfbb-97f6-4ae5-a258-e530af3e12a0" + ], + "x-ms-correlation-request-id": [ + "e79d7946-893e-47e9-901c-93388da90b8a" + ], + "x-ms-request-id": [ + "a1088027-ae1f-4ee6-9615-2b16cb172ca5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200958Z:e79d7946-893e-47e9-901c-93388da90b8a" + ], + "Date": [ + "Wed, 27 Mar 2019 20:09:57 GMT" + ], + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"stepType\": \"Wait\",\r\n \"attributes\": {\r\n \"duration\": \"PT5M\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/steps\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/steps/WaitStep\",\r\n \"name\": \"WaitStep\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/steps/WaitStep?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3N0ZXBzL1dhaXRTdGVwP2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8927b816-e9a3-4135-856a-03947dd8ab43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b234973f-4181-49fc-a485-91013c331d89" + ], + "x-ms-correlation-request-id": [ + "b234973f-4181-49fc-a485-91013c331d89" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201430Z:b234973f-4181-49fc-a485-91013c331d89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "155" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DeploymentManager/steps/WaitStep' under resource group 'admps2123' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/steps/WaitStep?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3N0ZXBzL1dhaXRTdGVwP2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"stepType\": \"Wait\",\r\n \"attributes\": {\r\n \"duration\": \"PT5M\"\r\n }\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "505a5d3b-a578-4cf2-95d5-237f294873b9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "136" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "505a5d3b-a578-4cf2-95d5-237f294873b9" + ], + "x-ms-correlation-request-id": [ + "85a0381d-b16d-47cd-90dc-5db5c7ba8e14" + ], + "x-ms-request-id": [ + "2950e24b-fc96-4792-aade-773fe29ec4eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T200957Z:85a0381d-b16d-47cd-90dc-5db5c7ba8e14" + ], + "Date": [ + "Wed, 27 Mar 2019 20:09:56 GMT" + ], + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"stepType\": \"Wait\",\r\n \"attributes\": {\r\n \"duration\": \"PT5M\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/steps\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/steps/WaitStep\",\r\n \"name\": \"WaitStep\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/steps/WaitStep?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3N0ZXBzL1dhaXRTdGVwP2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"stepType\": \"Wait\",\r\n \"attributes\": {\r\n \"duration\": \"PT10M\"\r\n }\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1656247-5639-4521-aa1a-9791c55e010a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "137" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "b1656247-5639-4521-aa1a-9791c55e010a" + ], + "x-ms-correlation-request-id": [ + "85aba9cd-f68f-4d47-a4e7-3362ac999e49" + ], + "x-ms-request-id": [ + "bd1af913-346d-42f7-95e1-6eedec616d00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201428Z:85aba9cd-f68f-4d47-a4e7-3362ac999e49" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:27 GMT" + ], + "Content-Length": [ + "356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"stepType\": \"Wait\",\r\n \"attributes\": {\r\n \"duration\": \"PT10M\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/steps\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/steps/WaitStep\",\r\n \"name\": \"WaitStep\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/validate?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json\",\r\n \"resources\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"type\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"name\": \"admps2123Rollout\",\r\n \"Identity\": {\r\n \"type\": \"userAssigned\",\r\n \"identityIds\": [\r\n \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.ManagedIdentity/userAssignedIdentities/admps2123Identity\"\r\n ]\r\n },\r\n \"properties\": {\r\n \"buildVersion\": \"1.0.0\",\r\n \"targetServiceTopologyId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology\",\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource\",\r\n \"stepGroups\": [\r\n {\r\n \"name\": \"PilotRegion\",\r\n \"preDeploymentSteps\": [\r\n {\r\n \"stepId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/steps/WaitStep\"\r\n }\r\n ],\r\n \"deploymentTargetId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8cc17575-8638-46fb-8089-afbf71bd1373" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1888" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "8b1a4743-628d-4c53-98af-3b762b3bdb3d" + ], + "x-ms-correlation-request-id": [ + "8b1a4743-628d-4c53-98af-3b762b3bdb3d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201000Z:8b1a4743-628d-4c53-98af-3b762b3bdb3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:09:59 GMT" + ], + "Content-Length": [ + "1894" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-03-27T20:10:00.1025455Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"8b1a4743-628d-4c53-98af-3b762b3bdb3d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"type\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"location\": \"Central US\",\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"identityIds\": [\r\n \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.ManagedIdentity/userAssignedIdentities/admps2123Identity\"\r\n ]\r\n },\r\n \"properties\": {\r\n \"buildVersion\": \"1.0.0\",\r\n \"targetServiceTopologyId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology\",\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource\",\r\n \"stepGroups\": [\r\n {\r\n \"name\": \"PilotRegion\",\r\n \"preDeploymentSteps\": [\r\n {\r\n \"stepId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/steps/WaitStep\"\r\n }\r\n ],\r\n \"deploymentTargetId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json\",\r\n \"resources\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"type\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"name\": \"admps2123Rollout\",\r\n \"Identity\": {\r\n \"type\": \"userAssigned\",\r\n \"identityIds\": [\r\n \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.ManagedIdentity/userAssignedIdentities/admps2123Identity\"\r\n ]\r\n },\r\n \"properties\": {\r\n \"buildVersion\": \"1.0.0\",\r\n \"targetServiceTopologyId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology\",\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource\",\r\n \"stepGroups\": [\r\n {\r\n \"name\": \"PilotRegion\",\r\n \"preDeploymentSteps\": [\r\n {\r\n \"stepId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/steps/WaitStep\"\r\n }\r\n ],\r\n \"deploymentTargetId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cffd1659-88af-4b3d-bd0e-b5294f605392" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1888" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operationStatuses/08586478894837276024?api-version=2018-05-01" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "a106505a-a068-472b-8bc8-55ec3d3e26a5" + ], + "x-ms-correlation-request-id": [ + "a106505a-a068-472b-8bc8-55ec3d3e26a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201002Z:a106505a-a068-472b-8bc8-55ec3d3e26a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:01 GMT" + ], + "Content-Length": [ + "545" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:10:02.363908Z\",\r\n \"duration\": \"PT0.6139091S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04418edd-8045-4241-8e8b-f1eddeb49936" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "486c74a3-f6f3-462e-9aac-d9974a818772" + ], + "x-ms-correlation-request-id": [ + "486c74a3-f6f3-462e-9aac-d9974a818772" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201002Z:486c74a3-f6f3-462e-9aac-d9974a818772" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16200529-e02a-4f85-b5bc-291a7d443fbe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "90efb4a4-254d-463e-8dad-23d61c68fa59" + ], + "x-ms-correlation-request-id": [ + "90efb4a4-254d-463e-8dad-23d61c68fa59" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201003Z:90efb4a4-254d-463e-8dad-23d61c68fa59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e81c9deb-7643-4c69-870b-5a70175915ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "41d2e06b-bf53-4cb6-8323-bedfcbfd5aeb" + ], + "x-ms-correlation-request-id": [ + "41d2e06b-bf53-4cb6-8323-bedfcbfd5aeb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201003Z:41d2e06b-bf53-4cb6-8323-bedfcbfd5aeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "001a458c-86f9-4c97-880b-adc6528a549d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "d9a811ae-c373-4124-bc4b-0fe51e0719a5" + ], + "x-ms-correlation-request-id": [ + "d9a811ae-c373-4124-bc4b-0fe51e0719a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201003Z:d9a811ae-c373-4124-bc4b-0fe51e0719a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3215530d-c64c-4a4c-8675-3ddbb2def98d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "ba9ebf97-d9de-46c3-b7be-cf005d18c746" + ], + "x-ms-correlation-request-id": [ + "ba9ebf97-d9de-46c3-b7be-cf005d18c746" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201003Z:ba9ebf97-d9de-46c3-b7be-cf005d18c746" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "171fc05b-40bd-47ed-b9ea-6077ee69bfdb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "2e780bdd-a495-44f6-af57-824944f35da4" + ], + "x-ms-correlation-request-id": [ + "2e780bdd-a495-44f6-af57-824944f35da4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201003Z:2e780bdd-a495-44f6-af57-824944f35da4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39e7d575-4190-444e-add1-702ca20d7d9c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "ee7e35d6-b4bf-4602-9624-4d9e447cd848" + ], + "x-ms-correlation-request-id": [ + "ee7e35d6-b4bf-4602-9624-4d9e447cd848" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201004Z:ee7e35d6-b4bf-4602-9624-4d9e447cd848" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55c2b7ff-13a6-4f4d-b25b-29cd679dabfc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "32f8cd32-1743-4125-82ad-447e0c0528e7" + ], + "x-ms-correlation-request-id": [ + "32f8cd32-1743-4125-82ad-447e0c0528e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201004Z:32f8cd32-1743-4125-82ad-447e0c0528e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3db5a6f2-2dc9-4525-8206-3e6b594225eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "6104ca3c-feae-4017-b60d-48f052b40d47" + ], + "x-ms-correlation-request-id": [ + "6104ca3c-feae-4017-b60d-48f052b40d47" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201004Z:6104ca3c-feae-4017-b60d-48f052b40d47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a45a1553-7660-47cb-a57c-f57c6b1826f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "2ac0fbc0-fcb4-4eed-9e2c-087525474de0" + ], + "x-ms-correlation-request-id": [ + "2ac0fbc0-fcb4-4eed-9e2c-087525474de0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201004Z:2ac0fbc0-fcb4-4eed-9e2c-087525474de0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d96c8cd1-0210-49df-9939-e14aa2821d32" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "f70ee14c-89b9-4794-839d-09bce91b72b4" + ], + "x-ms-correlation-request-id": [ + "f70ee14c-89b9-4794-839d-09bce91b72b4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201005Z:f70ee14c-89b9-4794-839d-09bce91b72b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d914de3-5131-4f6c-bab5-09408488aa36" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "597ee70b-c360-4b00-881e-50e17a789eda" + ], + "x-ms-correlation-request-id": [ + "597ee70b-c360-4b00-881e-50e17a789eda" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201005Z:597ee70b-c360-4b00-881e-50e17a789eda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87a51c96-0c27-4a0e-912b-fb288b037e08" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "f6bc0027-d5bd-4bfd-9fd8-395116c34a04" + ], + "x-ms-correlation-request-id": [ + "f6bc0027-d5bd-4bfd-9fd8-395116c34a04" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201005Z:f6bc0027-d5bd-4bfd-9fd8-395116c34a04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59ccf4f5-32af-4332-ac46-7fd70ed411d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "0a25b6c6-7003-4859-bf85-7e46491f3313" + ], + "x-ms-correlation-request-id": [ + "0a25b6c6-7003-4859-bf85-7e46491f3313" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201005Z:0a25b6c6-7003-4859-bf85-7e46491f3313" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44baa795-9de3-4f93-9a5e-cf3739cec9fc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "bfbcad29-4027-4d37-8538-00522ad16ace" + ], + "x-ms-correlation-request-id": [ + "bfbcad29-4027-4d37-8538-00522ad16ace" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201005Z:bfbcad29-4027-4d37-8538-00522ad16ace" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "187e75cd-5bfa-4a5b-9ea8-ad6dde087d72" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "bfb2e0ab-d53e-4206-a8bd-a4e86ca743b0" + ], + "x-ms-correlation-request-id": [ + "bfb2e0ab-d53e-4206-a8bd-a4e86ca743b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201006Z:bfb2e0ab-d53e-4206-a8bd-a4e86ca743b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "305581cc-8b15-4aca-9a16-dd3fed8c8b1e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "9e1f70c7-a5a9-42ed-a11f-31e0fa46b57b" + ], + "x-ms-correlation-request-id": [ + "9e1f70c7-a5a9-42ed-a11f-31e0fa46b57b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201006Z:9e1f70c7-a5a9-42ed-a11f-31e0fa46b57b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52263441-59d1-471a-bac7-5aaf53f5d40c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-request-id": [ + "8f76ff83-5836-4d9c-bba0-aad4620feadb" + ], + "x-ms-correlation-request-id": [ + "8f76ff83-5836-4d9c-bba0-aad4620feadb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201006Z:8f76ff83-5836-4d9c-bba0-aad4620feadb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d97a6b93-25fe-467f-9a3e-68a64c08ace0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-request-id": [ + "d23b2a7c-56bc-4ef0-a983-cddd89ab31fc" + ], + "x-ms-correlation-request-id": [ + "d23b2a7c-56bc-4ef0-a983-cddd89ab31fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201006Z:d23b2a7c-56bc-4ef0-a983-cddd89ab31fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d3f0f0b-a96f-44a7-978c-268164f27564" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-request-id": [ + "96a17921-c51b-457a-b2c4-e6ad4e2d5939" + ], + "x-ms-correlation-request-id": [ + "96a17921-c51b-457a-b2c4-e6ad4e2d5939" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201007Z:96a17921-c51b-457a-b2c4-e6ad4e2d5939" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7784a220-6055-4398-b6ab-ee0ac9deb027" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-request-id": [ + "515c6595-10de-47b7-82e6-4e17536c8930" + ], + "x-ms-correlation-request-id": [ + "515c6595-10de-47b7-82e6-4e17536c8930" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201007Z:515c6595-10de-47b7-82e6-4e17536c8930" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10b31aea-6c11-4947-a155-86e0834e28f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-request-id": [ + "73997662-9fce-4381-95f1-b56593bc5fad" + ], + "x-ms-correlation-request-id": [ + "73997662-9fce-4381-95f1-b56593bc5fad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201007Z:73997662-9fce-4381-95f1-b56593bc5fad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "318664e0-5245-4438-854a-a64d2fb4bd8a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-request-id": [ + "424b65d5-c437-437f-9a93-84e9d8660475" + ], + "x-ms-correlation-request-id": [ + "424b65d5-c437-437f-9a93-84e9d8660475" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201007Z:424b65d5-c437-437f-9a93-84e9d8660475" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d12ffd6d-dadb-4cba-9862-b8c8d7b33ae7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-request-id": [ + "3b4d8c32-204f-429f-b0d1-5d45297d015a" + ], + "x-ms-correlation-request-id": [ + "3b4d8c32-204f-429f-b0d1-5d45297d015a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201008Z:3b4d8c32-204f-429f-b0d1-5d45297d015a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e72a4b78-0ca6-4653-b90c-75e62fdb5687" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-request-id": [ + "9c00f4ff-ca23-4cd5-8bdf-3962de0819fb" + ], + "x-ms-correlation-request-id": [ + "9c00f4ff-ca23-4cd5-8bdf-3962de0819fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201008Z:9c00f4ff-ca23-4cd5-8bdf-3962de0819fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e38c166-bbaa-421a-b165-6a8dc86316ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-request-id": [ + "17ce7e59-f72c-44ca-81e5-5817690d0494" + ], + "x-ms-correlation-request-id": [ + "17ce7e59-f72c-44ca-81e5-5817690d0494" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201008Z:17ce7e59-f72c-44ca-81e5-5817690d0494" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "efdcd0ce-4046-4eea-bba2-50527207e8e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-request-id": [ + "0b1ed1c9-984a-4a5f-bed1-deb07f050961" + ], + "x-ms-correlation-request-id": [ + "0b1ed1c9-984a-4a5f-bed1-deb07f050961" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201009Z:0b1ed1c9-984a-4a5f-bed1-deb07f050961" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e0ed023-7b40-4a77-9255-b000d75d5886" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-request-id": [ + "1263ebf1-f315-4544-89f6-83029c59c812" + ], + "x-ms-correlation-request-id": [ + "1263ebf1-f315-4544-89f6-83029c59c812" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201009Z:1263ebf1-f315-4544-89f6-83029c59c812" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d372cbb-af8d-4856-af0c-cddaaac20e2f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-request-id": [ + "e7efd3a0-0cb6-421b-bd12-68c9f8825e25" + ], + "x-ms-correlation-request-id": [ + "e7efd3a0-0cb6-421b-bd12-68c9f8825e25" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201009Z:e7efd3a0-0cb6-421b-bd12-68c9f8825e25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0077e450-e59f-4e27-8f88-f6a435fbd5a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-request-id": [ + "ee2ffc83-ba93-427a-a786-95e05dd5dcd1" + ], + "x-ms-correlation-request-id": [ + "ee2ffc83-ba93-427a-a786-95e05dd5dcd1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201009Z:ee2ffc83-ba93-427a-a786-95e05dd5dcd1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1362c207-7418-4f53-ba22-d04972435667" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-request-id": [ + "fa5b3749-7856-4fd1-9b2d-de52a6f3b7af" + ], + "x-ms-correlation-request-id": [ + "fa5b3749-7856-4fd1-9b2d-de52a6f3b7af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201010Z:fa5b3749-7856-4fd1-9b2d-de52a6f3b7af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21a027ee-2ff9-4476-a619-8553942b2da7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "x-ms-request-id": [ + "e359ae7c-4758-4dc2-94ee-f332777dcd02" + ], + "x-ms-correlation-request-id": [ + "e359ae7c-4758-4dc2-94ee-f332777dcd02" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201010Z:e359ae7c-4758-4dc2-94ee-f332777dcd02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed98b7d9-ad7e-49fc-b14c-2ce4dd8774d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-request-id": [ + "50f586a0-5dbc-44c9-8e84-b0c48b348ff7" + ], + "x-ms-correlation-request-id": [ + "50f586a0-5dbc-44c9-8e84-b0c48b348ff7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201010Z:50f586a0-5dbc-44c9-8e84-b0c48b348ff7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a2914ca-bd53-4d73-9c22-ef597f655a5c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "x-ms-request-id": [ + "b05f145a-cb2c-43bc-b8ae-65e3edd4a09b" + ], + "x-ms-correlation-request-id": [ + "b05f145a-cb2c-43bc-b8ae-65e3edd4a09b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201010Z:b05f145a-cb2c-43bc-b8ae-65e3edd4a09b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20843d45-2127-4245-9ba3-c15a70e9fc6a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "x-ms-request-id": [ + "41cfa8c1-bf8b-43a2-87d8-04370e537a53" + ], + "x-ms-correlation-request-id": [ + "41cfa8c1-bf8b-43a2-87d8-04370e537a53" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201011Z:41cfa8c1-bf8b-43a2-87d8-04370e537a53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ef7aeba-7e25-4469-81ab-9651541ac33d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-request-id": [ + "4e171aa1-418c-4901-a0a0-31b231568482" + ], + "x-ms-correlation-request-id": [ + "4e171aa1-418c-4901-a0a0-31b231568482" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201011Z:4e171aa1-418c-4901-a0a0-31b231568482" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a626f91f-0cbf-42b9-af93-df8046b6425c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-request-id": [ + "392843e5-e224-4cd6-b668-eaa7db2a172a" + ], + "x-ms-correlation-request-id": [ + "392843e5-e224-4cd6-b668-eaa7db2a172a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201011Z:392843e5-e224-4cd6-b668-eaa7db2a172a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2fc7451-ba0f-4cb9-9257-b12873b10f71" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "x-ms-request-id": [ + "e828fdf4-4ca3-4c94-b0b0-9b32660a9f64" + ], + "x-ms-correlation-request-id": [ + "e828fdf4-4ca3-4c94-b0b0-9b32660a9f64" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201011Z:e828fdf4-4ca3-4c94-b0b0-9b32660a9f64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b036655d-240f-4be9-a460-e4d25b43b1f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], + "x-ms-request-id": [ + "078a7ec3-79fe-4017-a826-8448f66a3d1a" + ], + "x-ms-correlation-request-id": [ + "078a7ec3-79fe-4017-a826-8448f66a3d1a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201012Z:078a7ec3-79fe-4017-a826-8448f66a3d1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f17139f-dde8-4edc-952d-5c838bcf33ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11904" + ], + "x-ms-request-id": [ + "9cd5e000-4196-4697-bc10-576e6b87393e" + ], + "x-ms-correlation-request-id": [ + "9cd5e000-4196-4697-bc10-576e6b87393e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201012Z:9cd5e000-4196-4697-bc10-576e6b87393e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3d4ac7a-2f1e-4bc1-a5a5-6a0f058268d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "x-ms-request-id": [ + "9bc78089-e6c6-4adc-88d0-8aae995e2cba" + ], + "x-ms-correlation-request-id": [ + "9bc78089-e6c6-4adc-88d0-8aae995e2cba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201012Z:9bc78089-e6c6-4adc-88d0-8aae995e2cba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8743259-90f6-4229-8680-fa2e9c778180" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "x-ms-request-id": [ + "53a86581-6da4-4163-b3cd-36444f015294" + ], + "x-ms-correlation-request-id": [ + "53a86581-6da4-4163-b3cd-36444f015294" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201013Z:53a86581-6da4-4163-b3cd-36444f015294" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da9961d3-dd51-432f-ae98-ad5048e75f1d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], + "x-ms-request-id": [ + "746ffd1b-5a7c-4dcf-b229-29e3031a71b2" + ], + "x-ms-correlation-request-id": [ + "746ffd1b-5a7c-4dcf-b229-29e3031a71b2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201013Z:746ffd1b-5a7c-4dcf-b229-29e3031a71b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "46bd79be-f587-4a40-ab2d-4b3f64e93914" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11896" + ], + "x-ms-request-id": [ + "90c97a83-84bc-4959-90e7-e2c860a98c20" + ], + "x-ms-correlation-request-id": [ + "90c97a83-84bc-4959-90e7-e2c860a98c20" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201013Z:90c97a83-84bc-4959-90e7-e2c860a98c20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd0da138-572c-4943-a8b3-9caee4e4179f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11894" + ], + "x-ms-request-id": [ + "a7c1c43f-e529-4459-8c2f-bc4918f9b880" + ], + "x-ms-correlation-request-id": [ + "a7c1c43f-e529-4459-8c2f-bc4918f9b880" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201013Z:a7c1c43f-e529-4459-8c2f-bc4918f9b880" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36f8f445-fb80-497c-9762-b175562f1934" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11892" + ], + "x-ms-request-id": [ + "b83a4a0b-3350-45be-9e3a-9b413ad95912" + ], + "x-ms-correlation-request-id": [ + "b83a4a0b-3350-45be-9e3a-9b413ad95912" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201014Z:b83a4a0b-3350-45be-9e3a-9b413ad95912" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79c0cd9e-83ac-4dec-bfc8-d395edeedee6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11890" + ], + "x-ms-request-id": [ + "88a61dc5-53bd-4594-949e-9ddf1514ba2f" + ], + "x-ms-correlation-request-id": [ + "88a61dc5-53bd-4594-949e-9ddf1514ba2f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201014Z:88a61dc5-53bd-4594-949e-9ddf1514ba2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "285139d8-39a7-4659-a4f7-433d4732526d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11888" + ], + "x-ms-request-id": [ + "79166741-5d1d-4ce0-aa47-3007f057a07c" + ], + "x-ms-correlation-request-id": [ + "79166741-5d1d-4ce0-aa47-3007f057a07c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201014Z:79166741-5d1d-4ce0-aa47-3007f057a07c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f4bdbe1-8796-46aa-bfc8-16b83d90739b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11886" + ], + "x-ms-request-id": [ + "6e306e58-a222-485a-90ae-7047bf844ff7" + ], + "x-ms-correlation-request-id": [ + "6e306e58-a222-485a-90ae-7047bf844ff7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201014Z:6e306e58-a222-485a-90ae-7047bf844ff7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7806853d-31c7-4a7f-833d-4e213b0b778f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11884" + ], + "x-ms-request-id": [ + "a1727d39-6150-4417-a0da-729d983b795e" + ], + "x-ms-correlation-request-id": [ + "a1727d39-6150-4417-a0da-729d983b795e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201015Z:a1727d39-6150-4417-a0da-729d983b795e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "087a2aee-b30c-4d6f-93aa-52af4911baf8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11882" + ], + "x-ms-request-id": [ + "0b2ba666-65a3-4f2a-8654-718280c21544" + ], + "x-ms-correlation-request-id": [ + "0b2ba666-65a3-4f2a-8654-718280c21544" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201015Z:0b2ba666-65a3-4f2a-8654-718280c21544" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8176b0ad-b5b8-41b3-8897-fd9aa600fd8b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11880" + ], + "x-ms-request-id": [ + "c7506ce4-fcc7-45a2-a69a-98d996a9150b" + ], + "x-ms-correlation-request-id": [ + "c7506ce4-fcc7-45a2-a69a-98d996a9150b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201015Z:c7506ce4-fcc7-45a2-a69a-98d996a9150b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27504f18-5195-4552-ac97-f0cfcc6cfdc5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11878" + ], + "x-ms-request-id": [ + "b039cfeb-415d-4ced-aa26-394af0b77f80" + ], + "x-ms-correlation-request-id": [ + "b039cfeb-415d-4ced-aa26-394af0b77f80" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201015Z:b039cfeb-415d-4ced-aa26-394af0b77f80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c8c1564-f60b-4cef-a375-8ae94ef1654e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11876" + ], + "x-ms-request-id": [ + "9c3ffb3d-869a-4bce-a7e2-446e5b163126" + ], + "x-ms-correlation-request-id": [ + "9c3ffb3d-869a-4bce-a7e2-446e5b163126" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201016Z:9c3ffb3d-869a-4bce-a7e2-446e5b163126" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02fe0703-6df7-4787-98a8-1c24f8448ae8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11874" + ], + "x-ms-request-id": [ + "144f881d-5478-40ed-ac37-2bfab6198e09" + ], + "x-ms-correlation-request-id": [ + "144f881d-5478-40ed-ac37-2bfab6198e09" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201016Z:144f881d-5478-40ed-ac37-2bfab6198e09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07a9a875-1568-43c7-b12e-cf5366094424" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11872" + ], + "x-ms-request-id": [ + "833a11ca-295b-4b13-a8e5-ce624c727f94" + ], + "x-ms-correlation-request-id": [ + "833a11ca-295b-4b13-a8e5-ce624c727f94" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201016Z:833a11ca-295b-4b13-a8e5-ce624c727f94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41415e38-d035-48a7-9951-d1cf233f9f17" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11870" + ], + "x-ms-request-id": [ + "9a6f984e-a8dd-48ba-a192-d682730d1d75" + ], + "x-ms-correlation-request-id": [ + "9a6f984e-a8dd-48ba-a192-d682730d1d75" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201016Z:9a6f984e-a8dd-48ba-a192-d682730d1d75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "351f0b99-6fa1-409b-98df-c8f062f08329" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11868" + ], + "x-ms-request-id": [ + "b65055e1-18c4-4d59-9e3e-c3b5315d1cbc" + ], + "x-ms-correlation-request-id": [ + "b65055e1-18c4-4d59-9e3e-c3b5315d1cbc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201017Z:b65055e1-18c4-4d59-9e3e-c3b5315d1cbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4466e5ea-1a3e-4b35-94e1-5152d40797d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11866" + ], + "x-ms-request-id": [ + "39056b6a-df41-44c6-a0f5-2e0b7cf41c84" + ], + "x-ms-correlation-request-id": [ + "39056b6a-df41-44c6-a0f5-2e0b7cf41c84" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201017Z:39056b6a-df41-44c6-a0f5-2e0b7cf41c84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85b26c69-d816-4e91-ab74-e4b3f5f2c0c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11864" + ], + "x-ms-request-id": [ + "18af8df0-58d8-40d5-8dc9-1f3748389635" + ], + "x-ms-correlation-request-id": [ + "18af8df0-58d8-40d5-8dc9-1f3748389635" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201017Z:18af8df0-58d8-40d5-8dc9-1f3748389635" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf16d7af-d463-4eba-8b91-5858a4a2576f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11862" + ], + "x-ms-request-id": [ + "2616057e-2350-42ed-8fcf-d5496f11c6cf" + ], + "x-ms-correlation-request-id": [ + "2616057e-2350-42ed-8fcf-d5496f11c6cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201017Z:2616057e-2350-42ed-8fcf-d5496f11c6cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f1f2424-61b4-4d4e-a5ea-bdccba3ac2ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11860" + ], + "x-ms-request-id": [ + "bc32ca55-46d9-4380-beba-631e7681a11c" + ], + "x-ms-correlation-request-id": [ + "bc32ca55-46d9-4380-beba-631e7681a11c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201018Z:bc32ca55-46d9-4380-beba-631e7681a11c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d5aabbf-e8cd-469b-b60f-feb781da574f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11858" + ], + "x-ms-request-id": [ + "81a8bbd7-1c79-4c94-af0e-e14fde5b1506" + ], + "x-ms-correlation-request-id": [ + "81a8bbd7-1c79-4c94-af0e-e14fde5b1506" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201018Z:81a8bbd7-1c79-4c94-af0e-e14fde5b1506" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38253427-9515-497a-a4f4-765460467b15" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11856" + ], + "x-ms-request-id": [ + "82408cd4-bd3b-44e0-9851-2b55b135e43a" + ], + "x-ms-correlation-request-id": [ + "82408cd4-bd3b-44e0-9851-2b55b135e43a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201018Z:82408cd4-bd3b-44e0-9851-2b55b135e43a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a66486af-15db-41af-acea-9ce2fb652314" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11854" + ], + "x-ms-request-id": [ + "b52727a9-264a-4174-919f-711888567566" + ], + "x-ms-correlation-request-id": [ + "b52727a9-264a-4174-919f-711888567566" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201019Z:b52727a9-264a-4174-919f-711888567566" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5c748c3-b86c-46ad-90be-0d6cd128e52d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11852" + ], + "x-ms-request-id": [ + "360873be-dfe4-4b47-9801-c7e47ec4b5c6" + ], + "x-ms-correlation-request-id": [ + "360873be-dfe4-4b47-9801-c7e47ec4b5c6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201019Z:360873be-dfe4-4b47-9801-c7e47ec4b5c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d657202b-b314-49ab-bf97-6e8c7dac24b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11850" + ], + "x-ms-request-id": [ + "da42b186-12f8-43bd-899c-23a39351e758" + ], + "x-ms-correlation-request-id": [ + "da42b186-12f8-43bd-899c-23a39351e758" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201019Z:da42b186-12f8-43bd-899c-23a39351e758" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "207a679c-d789-44bd-b45f-30c755a551c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11848" + ], + "x-ms-request-id": [ + "b0c24910-a2f6-4cfc-9c1b-a70fccb576c6" + ], + "x-ms-correlation-request-id": [ + "b0c24910-a2f6-4cfc-9c1b-a70fccb576c6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201019Z:b0c24910-a2f6-4cfc-9c1b-a70fccb576c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6db25985-34b0-488a-907a-33fa1adb5a9e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11846" + ], + "x-ms-request-id": [ + "0161038e-62e6-4172-9895-6f0c685c2068" + ], + "x-ms-correlation-request-id": [ + "0161038e-62e6-4172-9895-6f0c685c2068" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201020Z:0161038e-62e6-4172-9895-6f0c685c2068" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83649086-83e5-4eb6-9fda-14fdbba6d6ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11844" + ], + "x-ms-request-id": [ + "dfaa68db-54ab-4d0a-9e48-f9693302db42" + ], + "x-ms-correlation-request-id": [ + "dfaa68db-54ab-4d0a-9e48-f9693302db42" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201020Z:dfaa68db-54ab-4d0a-9e48-f9693302db42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f12f6b60-c076-431a-98b5-090e1e1e40de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11842" + ], + "x-ms-request-id": [ + "f2301e2e-5c8f-4bc2-bf0c-7dba5635eef7" + ], + "x-ms-correlation-request-id": [ + "f2301e2e-5c8f-4bc2-bf0c-7dba5635eef7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201020Z:f2301e2e-5c8f-4bc2-bf0c-7dba5635eef7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d43da3ca-0c73-484b-bc03-e308dfde1b89" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11840" + ], + "x-ms-request-id": [ + "727400ae-7b9e-4618-8d3f-ab8f9e6ebafa" + ], + "x-ms-correlation-request-id": [ + "727400ae-7b9e-4618-8d3f-ab8f9e6ebafa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201020Z:727400ae-7b9e-4618-8d3f-ab8f9e6ebafa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "337b16c6-6896-4208-b47e-fb1bceaf09ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11838" + ], + "x-ms-request-id": [ + "d1696a57-d664-4be4-baa6-cd8b87b13a75" + ], + "x-ms-correlation-request-id": [ + "d1696a57-d664-4be4-baa6-cd8b87b13a75" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201021Z:d1696a57-d664-4be4-baa6-cd8b87b13a75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e6df2a0-7a0d-4234-ba03-dc9c6a52a45d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11836" + ], + "x-ms-request-id": [ + "9faaf875-698f-4259-81d3-0ad824407f78" + ], + "x-ms-correlation-request-id": [ + "9faaf875-698f-4259-81d3-0ad824407f78" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201021Z:9faaf875-698f-4259-81d3-0ad824407f78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9bf1ad7-0361-4a9c-9390-1cbcc272129a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11834" + ], + "x-ms-request-id": [ + "31797cae-aed7-4b89-bf91-baa5ea6528f4" + ], + "x-ms-correlation-request-id": [ + "31797cae-aed7-4b89-bf91-baa5ea6528f4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201021Z:31797cae-aed7-4b89-bf91-baa5ea6528f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4894dac-55f9-4708-9005-1e11f54e080e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11832" + ], + "x-ms-request-id": [ + "b03ee6eb-0681-4a3d-8337-90792b5e17fd" + ], + "x-ms-correlation-request-id": [ + "b03ee6eb-0681-4a3d-8337-90792b5e17fd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201021Z:b03ee6eb-0681-4a3d-8337-90792b5e17fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37bece74-b177-4d11-8db9-73c19c303a51" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11830" + ], + "x-ms-request-id": [ + "ca5995e5-b99e-4aa4-a09b-b5e3de00733b" + ], + "x-ms-correlation-request-id": [ + "ca5995e5-b99e-4aa4-a09b-b5e3de00733b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201022Z:ca5995e5-b99e-4aa4-a09b-b5e3de00733b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "030db140-5572-43b0-b189-9ed2c1b2ac45" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11828" + ], + "x-ms-request-id": [ + "838d9f33-7d75-4ff3-80f4-ab1f9b753729" + ], + "x-ms-correlation-request-id": [ + "838d9f33-7d75-4ff3-80f4-ab1f9b753729" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201022Z:838d9f33-7d75-4ff3-80f4-ab1f9b753729" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "320de8c3-f80e-4292-8696-096f775e25d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11826" + ], + "x-ms-request-id": [ + "cb1dd02e-4840-4c40-a40e-726f47546564" + ], + "x-ms-correlation-request-id": [ + "cb1dd02e-4840-4c40-a40e-726f47546564" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201022Z:cb1dd02e-4840-4c40-a40e-726f47546564" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b49dfcab-b0ef-4e06-8022-c49093328302" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11824" + ], + "x-ms-request-id": [ + "1a2b8739-68ee-4ade-bc02-e31c208a9de9" + ], + "x-ms-correlation-request-id": [ + "1a2b8739-68ee-4ade-bc02-e31c208a9de9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201022Z:1a2b8739-68ee-4ade-bc02-e31c208a9de9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79975484-738e-415b-adc5-4150c92d2ad5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11822" + ], + "x-ms-request-id": [ + "94b59e42-c321-4707-b11c-a91d5818d57f" + ], + "x-ms-correlation-request-id": [ + "94b59e42-c321-4707-b11c-a91d5818d57f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201023Z:94b59e42-c321-4707-b11c-a91d5818d57f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dcef555b-eb64-41b2-a5f2-d62657b01d04" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11820" + ], + "x-ms-request-id": [ + "6b723f8c-960f-45ef-9b03-5741ce2a9de5" + ], + "x-ms-correlation-request-id": [ + "6b723f8c-960f-45ef-9b03-5741ce2a9de5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201023Z:6b723f8c-960f-45ef-9b03-5741ce2a9de5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "465ba6c0-176f-424a-937b-475c48cad834" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11818" + ], + "x-ms-request-id": [ + "c8e0210a-78d0-4484-a1b7-3d1b928bf60d" + ], + "x-ms-correlation-request-id": [ + "c8e0210a-78d0-4484-a1b7-3d1b928bf60d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201023Z:c8e0210a-78d0-4484-a1b7-3d1b928bf60d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15806c10-1988-4755-93d4-770bcd0dbe4a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11816" + ], + "x-ms-request-id": [ + "282342eb-05b1-4629-9641-9a8fccca6f45" + ], + "x-ms-correlation-request-id": [ + "282342eb-05b1-4629-9641-9a8fccca6f45" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201023Z:282342eb-05b1-4629-9641-9a8fccca6f45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d1588e8b-70ff-4ac9-ad2f-0c395f2496da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11814" + ], + "x-ms-request-id": [ + "74fa115a-2f1c-48d5-89fc-2ef8c212193b" + ], + "x-ms-correlation-request-id": [ + "74fa115a-2f1c-48d5-89fc-2ef8c212193b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201024Z:74fa115a-2f1c-48d5-89fc-2ef8c212193b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b744b64-2240-4cc0-83ed-b980a855e703" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11812" + ], + "x-ms-request-id": [ + "16042840-0f5d-45c6-9abb-e2bfb5fecf79" + ], + "x-ms-correlation-request-id": [ + "16042840-0f5d-45c6-9abb-e2bfb5fecf79" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201024Z:16042840-0f5d-45c6-9abb-e2bfb5fecf79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a32944c2-ae91-4fe6-b2a8-7a2fbecf9ba6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11810" + ], + "x-ms-request-id": [ + "b72d0966-6cf6-453a-9443-555c59cb2ede" + ], + "x-ms-correlation-request-id": [ + "b72d0966-6cf6-453a-9443-555c59cb2ede" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201024Z:b72d0966-6cf6-453a-9443-555c59cb2ede" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef771fac-5338-45d3-aa80-b699723d1da1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11808" + ], + "x-ms-request-id": [ + "be9d9ef7-eb99-4b9f-a8e3-665075ce07ce" + ], + "x-ms-correlation-request-id": [ + "be9d9ef7-eb99-4b9f-a8e3-665075ce07ce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201025Z:be9d9ef7-eb99-4b9f-a8e3-665075ce07ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "197111cf-e300-4cac-85d8-66130ed22157" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11806" + ], + "x-ms-request-id": [ + "4d57786c-cde0-4a82-9da8-b428214d3a19" + ], + "x-ms-correlation-request-id": [ + "4d57786c-cde0-4a82-9da8-b428214d3a19" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201025Z:4d57786c-cde0-4a82-9da8-b428214d3a19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07f0940d-fda6-4a94-8e9d-5f8aec367f99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11804" + ], + "x-ms-request-id": [ + "dd1b92e5-a60b-4a63-b4cf-3bae8f82fb9c" + ], + "x-ms-correlation-request-id": [ + "dd1b92e5-a60b-4a63-b4cf-3bae8f82fb9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201025Z:dd1b92e5-a60b-4a63-b4cf-3bae8f82fb9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b39fd75c-2fac-46af-93e7-e2f1012dd7b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11802" + ], + "x-ms-request-id": [ + "76d38d53-d0c8-48e9-8c9d-681eb37d5737" + ], + "x-ms-correlation-request-id": [ + "76d38d53-d0c8-48e9-8c9d-681eb37d5737" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201025Z:76d38d53-d0c8-48e9-8c9d-681eb37d5737" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3e3774c-e239-49b8-b798-7c4434d99301" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11800" + ], + "x-ms-request-id": [ + "426a064f-cefc-442e-b104-5d477de0b578" + ], + "x-ms-correlation-request-id": [ + "426a064f-cefc-442e-b104-5d477de0b578" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201026Z:426a064f-cefc-442e-b104-5d477de0b578" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5dc0cad7-7a87-4054-91da-1f4f52c6da99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11798" + ], + "x-ms-request-id": [ + "0b40d939-dbc7-44cb-8008-f2b1b2d6f889" + ], + "x-ms-correlation-request-id": [ + "0b40d939-dbc7-44cb-8008-f2b1b2d6f889" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201026Z:0b40d939-dbc7-44cb-8008-f2b1b2d6f889" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff5e278c-40eb-4c4e-ba39-34136bd1873d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11796" + ], + "x-ms-request-id": [ + "955ab843-ab89-4cf2-a4aa-c04dc744452e" + ], + "x-ms-correlation-request-id": [ + "955ab843-ab89-4cf2-a4aa-c04dc744452e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201026Z:955ab843-ab89-4cf2-a4aa-c04dc744452e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4900dd1f-78ac-4811-b836-83c053049a28" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11794" + ], + "x-ms-request-id": [ + "f016a962-b4b2-442e-ba82-4dcb4b80df6b" + ], + "x-ms-correlation-request-id": [ + "f016a962-b4b2-442e-ba82-4dcb4b80df6b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201026Z:f016a962-b4b2-442e-ba82-4dcb4b80df6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a2cc7ee-b607-4940-8e59-e0d25df7c46c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11792" + ], + "x-ms-request-id": [ + "cc87b870-936a-4329-b6f9-e5f4737a0875" + ], + "x-ms-correlation-request-id": [ + "cc87b870-936a-4329-b6f9-e5f4737a0875" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201027Z:cc87b870-936a-4329-b6f9-e5f4737a0875" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ffdb0448-0d9f-4810-bca6-f97767b36196" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11790" + ], + "x-ms-request-id": [ + "dc814b7f-7dfa-428d-afe2-f7e9fbd16c13" + ], + "x-ms-correlation-request-id": [ + "dc814b7f-7dfa-428d-afe2-f7e9fbd16c13" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201027Z:dc814b7f-7dfa-428d-afe2-f7e9fbd16c13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c27e4d9-c370-4a52-a0c0-25ea2c506f91" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11788" + ], + "x-ms-request-id": [ + "8b3a499d-5c6d-48bb-85d5-0ecbcea57c09" + ], + "x-ms-correlation-request-id": [ + "8b3a499d-5c6d-48bb-85d5-0ecbcea57c09" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201027Z:8b3a499d-5c6d-48bb-85d5-0ecbcea57c09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4691c455-3355-4e52-a3e7-eeb0342817f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11786" + ], + "x-ms-request-id": [ + "15ca0e39-45b3-409d-bcff-f58d88410120" + ], + "x-ms-correlation-request-id": [ + "15ca0e39-45b3-409d-bcff-f58d88410120" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201027Z:15ca0e39-45b3-409d-bcff-f58d88410120" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7903dbcd-8904-4603-835f-2e17d9e14421" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11784" + ], + "x-ms-request-id": [ + "4dacbf2a-5bb8-4cb7-8328-7385924511d3" + ], + "x-ms-correlation-request-id": [ + "4dacbf2a-5bb8-4cb7-8328-7385924511d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201028Z:4dacbf2a-5bb8-4cb7-8328-7385924511d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09eeef0e-b195-4972-aabc-a39bf62d45f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11782" + ], + "x-ms-request-id": [ + "fefeaa6a-dce5-4899-93c1-6a3fa2cab31f" + ], + "x-ms-correlation-request-id": [ + "fefeaa6a-dce5-4899-93c1-6a3fa2cab31f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201028Z:fefeaa6a-dce5-4899-93c1-6a3fa2cab31f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "240d0572-30a6-45aa-bb14-99f0e34c4c47" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11780" + ], + "x-ms-request-id": [ + "f76fc4cd-3eed-4a8b-9101-8402e14c33d5" + ], + "x-ms-correlation-request-id": [ + "f76fc4cd-3eed-4a8b-9101-8402e14c33d5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201028Z:f76fc4cd-3eed-4a8b-9101-8402e14c33d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1dd814c-4b5f-442c-8629-7c2bac053927" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11778" + ], + "x-ms-request-id": [ + "190b89d3-948f-4768-acd7-7b62fa56449f" + ], + "x-ms-correlation-request-id": [ + "190b89d3-948f-4768-acd7-7b62fa56449f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201028Z:190b89d3-948f-4768-acd7-7b62fa56449f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42fc5634-3e0b-43f0-aab3-b7a4a6a8bbe2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11776" + ], + "x-ms-request-id": [ + "bf7f2e46-c5d0-4fbd-b1dd-45effe5a81f5" + ], + "x-ms-correlation-request-id": [ + "bf7f2e46-c5d0-4fbd-b1dd-45effe5a81f5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201029Z:bf7f2e46-c5d0-4fbd-b1dd-45effe5a81f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c7e22cf-0470-4e00-9934-b6cd217ff91f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11774" + ], + "x-ms-request-id": [ + "0d480e73-cc79-47e2-a982-0c8ed4f01c8f" + ], + "x-ms-correlation-request-id": [ + "0d480e73-cc79-47e2-a982-0c8ed4f01c8f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201029Z:0d480e73-cc79-47e2-a982-0c8ed4f01c8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42cf00b5-3edd-47ee-8105-21aad4dd3211" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11772" + ], + "x-ms-request-id": [ + "12fe7d23-d69d-4f63-81df-d2725f18c4de" + ], + "x-ms-correlation-request-id": [ + "12fe7d23-d69d-4f63-81df-d2725f18c4de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201029Z:12fe7d23-d69d-4f63-81df-d2725f18c4de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26941141-98e4-4d67-bb58-0cd7d1805e22" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11770" + ], + "x-ms-request-id": [ + "d8bb4185-7338-40b7-bc28-52f7c4335bc0" + ], + "x-ms-correlation-request-id": [ + "d8bb4185-7338-40b7-bc28-52f7c4335bc0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201029Z:d8bb4185-7338-40b7-bc28-52f7c4335bc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5239fe9-5676-48a8-a773-d87ff3da28ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11768" + ], + "x-ms-request-id": [ + "322733ad-e71c-4ace-90a9-321209ad68a4" + ], + "x-ms-correlation-request-id": [ + "322733ad-e71c-4ace-90a9-321209ad68a4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201030Z:322733ad-e71c-4ace-90a9-321209ad68a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba893006-c627-4ad7-b548-292c02814f9d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11766" + ], + "x-ms-request-id": [ + "bef33ddb-e004-4f2d-97ce-9f8e0d7bbb5b" + ], + "x-ms-correlation-request-id": [ + "bef33ddb-e004-4f2d-97ce-9f8e0d7bbb5b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201030Z:bef33ddb-e004-4f2d-97ce-9f8e0d7bbb5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eff72bac-32e4-41ed-b47d-0d468c4be414" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11764" + ], + "x-ms-request-id": [ + "37222367-2a79-4992-b0b2-0277bb73a2c3" + ], + "x-ms-correlation-request-id": [ + "37222367-2a79-4992-b0b2-0277bb73a2c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201030Z:37222367-2a79-4992-b0b2-0277bb73a2c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06d25b71-4d63-4c21-bad3-bbc7613d8d69" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11762" + ], + "x-ms-request-id": [ + "0209bc1f-bd1b-4626-9256-9df7115bc5e2" + ], + "x-ms-correlation-request-id": [ + "0209bc1f-bd1b-4626-9256-9df7115bc5e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201030Z:0209bc1f-bd1b-4626-9256-9df7115bc5e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5d75302-7087-4880-bbdb-bcb0defc1432" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11760" + ], + "x-ms-request-id": [ + "519f8cbe-e55a-460d-a0c5-c3b502d598b7" + ], + "x-ms-correlation-request-id": [ + "519f8cbe-e55a-460d-a0c5-c3b502d598b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201031Z:519f8cbe-e55a-460d-a0c5-c3b502d598b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33d39b8f-e893-42eb-9b6f-8fbdc17a70d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11758" + ], + "x-ms-request-id": [ + "9994dd4e-f7bd-4cbe-9ded-5b4ae091a67a" + ], + "x-ms-correlation-request-id": [ + "9994dd4e-f7bd-4cbe-9ded-5b4ae091a67a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201031Z:9994dd4e-f7bd-4cbe-9ded-5b4ae091a67a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "482a216b-d1cf-4ce1-8e9e-d4ae8220b996" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11756" + ], + "x-ms-request-id": [ + "d9434176-304d-4987-b68b-0203b34c728e" + ], + "x-ms-correlation-request-id": [ + "d9434176-304d-4987-b68b-0203b34c728e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201031Z:d9434176-304d-4987-b68b-0203b34c728e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f50533c-0917-4b7b-8ca2-bffb0f3d9f04" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11754" + ], + "x-ms-request-id": [ + "eadafd04-88f0-4573-acfb-36c374a62159" + ], + "x-ms-correlation-request-id": [ + "eadafd04-88f0-4573-acfb-36c374a62159" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201032Z:eadafd04-88f0-4573-acfb-36c374a62159" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5933cc24-95a5-41d0-b246-c8bbd8af9e59" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11752" + ], + "x-ms-request-id": [ + "6e91c366-f47e-4e69-a34b-fd974989f7a3" + ], + "x-ms-correlation-request-id": [ + "6e91c366-f47e-4e69-a34b-fd974989f7a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201032Z:6e91c366-f47e-4e69-a34b-fd974989f7a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e90b098e-6094-4bed-a91f-b78b39b73420" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11750" + ], + "x-ms-request-id": [ + "31b4d1ae-45cd-47a2-a1e1-754960a96026" + ], + "x-ms-correlation-request-id": [ + "31b4d1ae-45cd-47a2-a1e1-754960a96026" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201032Z:31b4d1ae-45cd-47a2-a1e1-754960a96026" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6dfd40e2-4047-4eb1-9139-c0478b2313e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11748" + ], + "x-ms-request-id": [ + "b724b98f-146d-45a6-9ece-30c12aaaac35" + ], + "x-ms-correlation-request-id": [ + "b724b98f-146d-45a6-9ece-30c12aaaac35" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201032Z:b724b98f-146d-45a6-9ece-30c12aaaac35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31a2890e-3222-45c0-acb1-632237d7c0eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11746" + ], + "x-ms-request-id": [ + "9b9a59b3-4bef-449b-96ae-669763aa3758" + ], + "x-ms-correlation-request-id": [ + "9b9a59b3-4bef-449b-96ae-669763aa3758" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201033Z:9b9a59b3-4bef-449b-96ae-669763aa3758" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "537c37cd-9256-4c33-bd6a-ac0625fd2dae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11744" + ], + "x-ms-request-id": [ + "4db99fd1-4cf8-4ae0-b18c-ec4927d7d47d" + ], + "x-ms-correlation-request-id": [ + "4db99fd1-4cf8-4ae0-b18c-ec4927d7d47d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201033Z:4db99fd1-4cf8-4ae0-b18c-ec4927d7d47d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c32b2952-e3d3-42c6-8e92-a9ea6d03b9eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11742" + ], + "x-ms-request-id": [ + "4e93c520-9b5d-4ee3-8c36-19ac2160405a" + ], + "x-ms-correlation-request-id": [ + "4e93c520-9b5d-4ee3-8c36-19ac2160405a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201033Z:4e93c520-9b5d-4ee3-8c36-19ac2160405a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86b4024f-e999-4c25-93e0-20783768c9c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11740" + ], + "x-ms-request-id": [ + "2b5d7d21-bc76-415a-b1f5-605633dfb148" + ], + "x-ms-correlation-request-id": [ + "2b5d7d21-bc76-415a-b1f5-605633dfb148" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201033Z:2b5d7d21-bc76-415a-b1f5-605633dfb148" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "153be849-5610-4719-a2b0-49ae8357976b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11738" + ], + "x-ms-request-id": [ + "4989dfef-12a3-4e56-8735-8d29bcb4338f" + ], + "x-ms-correlation-request-id": [ + "4989dfef-12a3-4e56-8735-8d29bcb4338f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201034Z:4989dfef-12a3-4e56-8735-8d29bcb4338f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57897aa6-6e73-4fab-9833-a97c0c35f690" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11736" + ], + "x-ms-request-id": [ + "0063a6c4-f304-4c1c-9aa8-12af0c8e3cad" + ], + "x-ms-correlation-request-id": [ + "0063a6c4-f304-4c1c-9aa8-12af0c8e3cad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201034Z:0063a6c4-f304-4c1c-9aa8-12af0c8e3cad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "19a87334-e35b-4c4f-bb8e-fd23d214d513" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11734" + ], + "x-ms-request-id": [ + "d4c89b5b-28b0-4400-a4d9-4ecdd5ba77b3" + ], + "x-ms-correlation-request-id": [ + "d4c89b5b-28b0-4400-a4d9-4ecdd5ba77b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201034Z:d4c89b5b-28b0-4400-a4d9-4ecdd5ba77b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3321d11-ac63-47ce-b026-38aaeb969693" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11732" + ], + "x-ms-request-id": [ + "ebad99c6-227a-4fac-bdbf-045820fa13a0" + ], + "x-ms-correlation-request-id": [ + "ebad99c6-227a-4fac-bdbf-045820fa13a0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201034Z:ebad99c6-227a-4fac-bdbf-045820fa13a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "867dd1d5-dcf1-4147-8525-39a2cc854b9e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11730" + ], + "x-ms-request-id": [ + "c2a6f6ed-9c3b-4312-b4d4-b3488521ed50" + ], + "x-ms-correlation-request-id": [ + "c2a6f6ed-9c3b-4312-b4d4-b3488521ed50" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201035Z:c2a6f6ed-9c3b-4312-b4d4-b3488521ed50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6332f7d-4d91-4799-a3cb-3a660e26180f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11728" + ], + "x-ms-request-id": [ + "5b43ca26-5b24-4f86-9a95-230137bf542b" + ], + "x-ms-correlation-request-id": [ + "5b43ca26-5b24-4f86-9a95-230137bf542b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201035Z:5b43ca26-5b24-4f86-9a95-230137bf542b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c92f6a-2189-4954-9735-18b1cf259ce4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11726" + ], + "x-ms-request-id": [ + "94682e42-3976-4d8a-8247-508073a42c17" + ], + "x-ms-correlation-request-id": [ + "94682e42-3976-4d8a-8247-508073a42c17" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201035Z:94682e42-3976-4d8a-8247-508073a42c17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1879a71f-c8ca-429f-bbf3-5421a75cc5d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11724" + ], + "x-ms-request-id": [ + "643fb0cf-a6e4-4002-9794-14b6111666fd" + ], + "x-ms-correlation-request-id": [ + "643fb0cf-a6e4-4002-9794-14b6111666fd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201036Z:643fb0cf-a6e4-4002-9794-14b6111666fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b3c74b4-2ef5-4375-b0fc-12e780654148" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11722" + ], + "x-ms-request-id": [ + "7891d4b5-bde1-4503-9c35-b81974311abe" + ], + "x-ms-correlation-request-id": [ + "7891d4b5-bde1-4503-9c35-b81974311abe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201036Z:7891d4b5-bde1-4503-9c35-b81974311abe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1bf4062d-488f-4d3e-806d-4f0a067b551d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11720" + ], + "x-ms-request-id": [ + "e5dfe5ad-20b3-4ca3-92bb-79c55b9d867c" + ], + "x-ms-correlation-request-id": [ + "e5dfe5ad-20b3-4ca3-92bb-79c55b9d867c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201036Z:e5dfe5ad-20b3-4ca3-92bb-79c55b9d867c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "82c2b2e1-6bc3-4465-b12d-7107891c044c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11718" + ], + "x-ms-request-id": [ + "7edabd62-dd13-49a4-80b3-8ec592483894" + ], + "x-ms-correlation-request-id": [ + "7edabd62-dd13-49a4-80b3-8ec592483894" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201036Z:7edabd62-dd13-49a4-80b3-8ec592483894" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c6cef57-d2e9-4319-bf63-0067069a693c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11716" + ], + "x-ms-request-id": [ + "720b9bd7-b155-417d-8b55-7ea6c70590cc" + ], + "x-ms-correlation-request-id": [ + "720b9bd7-b155-417d-8b55-7ea6c70590cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201037Z:720b9bd7-b155-417d-8b55-7ea6c70590cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "deaa36e1-d8f5-4f05-863a-5e516db4ce93" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11714" + ], + "x-ms-request-id": [ + "a924129e-b455-42c5-ad16-e03e7de52a21" + ], + "x-ms-correlation-request-id": [ + "a924129e-b455-42c5-ad16-e03e7de52a21" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201037Z:a924129e-b455-42c5-ad16-e03e7de52a21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78d93aa2-022b-49ea-b91c-0c5a5f3b5acf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11712" + ], + "x-ms-request-id": [ + "a2240eab-2dff-443d-9768-39e79477fdaf" + ], + "x-ms-correlation-request-id": [ + "a2240eab-2dff-443d-9768-39e79477fdaf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201037Z:a2240eab-2dff-443d-9768-39e79477fdaf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "888c8c19-ca29-4764-96df-0ff20c55c483" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11710" + ], + "x-ms-request-id": [ + "5a30b519-0dcc-49d1-9f83-f2afcb0e1103" + ], + "x-ms-correlation-request-id": [ + "5a30b519-0dcc-49d1-9f83-f2afcb0e1103" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201037Z:5a30b519-0dcc-49d1-9f83-f2afcb0e1103" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e955cf1-c850-40ca-b502-b358e397f5a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11708" + ], + "x-ms-request-id": [ + "3735925a-1dc9-4166-8a01-4eda23d5f20d" + ], + "x-ms-correlation-request-id": [ + "3735925a-1dc9-4166-8a01-4eda23d5f20d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201038Z:3735925a-1dc9-4166-8a01-4eda23d5f20d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a298efb-7046-4d15-abe5-c6e7e6be0e2b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11706" + ], + "x-ms-request-id": [ + "daba93e2-5771-4b34-9dda-752439899c13" + ], + "x-ms-correlation-request-id": [ + "daba93e2-5771-4b34-9dda-752439899c13" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201038Z:daba93e2-5771-4b34-9dda-752439899c13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69e13837-7d1b-47ef-97a9-3991b4db7810" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11704" + ], + "x-ms-request-id": [ + "61e43a45-afc4-4378-bc5b-a02dbe234a68" + ], + "x-ms-correlation-request-id": [ + "61e43a45-afc4-4378-bc5b-a02dbe234a68" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201038Z:61e43a45-afc4-4378-bc5b-a02dbe234a68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5152d16-f88f-4d6b-a8dc-2e700123eb07" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11702" + ], + "x-ms-request-id": [ + "7dfe052a-bcc7-4ce1-bea0-76ab03271559" + ], + "x-ms-correlation-request-id": [ + "7dfe052a-bcc7-4ce1-bea0-76ab03271559" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201039Z:7dfe052a-bcc7-4ce1-bea0-76ab03271559" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7dbf852-b7ea-4f3e-918e-8ef242fc12b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11700" + ], + "x-ms-request-id": [ + "7933d056-d4ef-4ddf-b2e8-35b1b5c339d9" + ], + "x-ms-correlation-request-id": [ + "7933d056-d4ef-4ddf-b2e8-35b1b5c339d9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201039Z:7933d056-d4ef-4ddf-b2e8-35b1b5c339d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d50d2299-0be9-4b74-b3d2-ec3d6b0c0bae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11698" + ], + "x-ms-request-id": [ + "346f3346-13a2-4bc9-9dca-c25bdc74f172" + ], + "x-ms-correlation-request-id": [ + "346f3346-13a2-4bc9-9dca-c25bdc74f172" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201039Z:346f3346-13a2-4bc9-9dca-c25bdc74f172" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33ff747d-988e-4e14-b98a-effec3244daa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11696" + ], + "x-ms-request-id": [ + "134b34f8-35d4-4c1c-b78b-0c56f4f2c298" + ], + "x-ms-correlation-request-id": [ + "134b34f8-35d4-4c1c-b78b-0c56f4f2c298" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201039Z:134b34f8-35d4-4c1c-b78b-0c56f4f2c298" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f509968b-47ec-4d1f-9e45-24fcb97e7935" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11694" + ], + "x-ms-request-id": [ + "82d4c0dc-5015-439a-afb6-e84f540b7762" + ], + "x-ms-correlation-request-id": [ + "82d4c0dc-5015-439a-afb6-e84f540b7762" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201040Z:82d4c0dc-5015-439a-afb6-e84f540b7762" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e2bcfa8-040c-4981-ac96-13133169551f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11692" + ], + "x-ms-request-id": [ + "50266e20-9567-4580-9c3d-ef4a39bade2d" + ], + "x-ms-correlation-request-id": [ + "50266e20-9567-4580-9c3d-ef4a39bade2d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201040Z:50266e20-9567-4580-9c3d-ef4a39bade2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee3d893d-a6c0-49b3-8dc3-ab9ba7b67e11" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11690" + ], + "x-ms-request-id": [ + "ccd261b1-f27c-447e-97a2-92a197c77f64" + ], + "x-ms-correlation-request-id": [ + "ccd261b1-f27c-447e-97a2-92a197c77f64" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201040Z:ccd261b1-f27c-447e-97a2-92a197c77f64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e49a8b3-e60e-4c5a-8c19-02082bfaaa79" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11688" + ], + "x-ms-request-id": [ + "b0540a0d-6708-45d0-8e95-a65c0b769e9e" + ], + "x-ms-correlation-request-id": [ + "b0540a0d-6708-45d0-8e95-a65c0b769e9e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201040Z:b0540a0d-6708-45d0-8e95-a65c0b769e9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "171a4081-5bd3-4c6a-9764-3128bd46fd08" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11686" + ], + "x-ms-request-id": [ + "b6e86687-d293-4fd4-b3c4-4565e8e60a6b" + ], + "x-ms-correlation-request-id": [ + "b6e86687-d293-4fd4-b3c4-4565e8e60a6b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201041Z:b6e86687-d293-4fd4-b3c4-4565e8e60a6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d9e75e77-ac67-4413-becc-93282f65f4b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11684" + ], + "x-ms-request-id": [ + "d6f1fac8-19ad-42ea-a881-a8340528327c" + ], + "x-ms-correlation-request-id": [ + "d6f1fac8-19ad-42ea-a881-a8340528327c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201041Z:d6f1fac8-19ad-42ea-a881-a8340528327c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f49103db-b506-44c9-a0a7-e903b5e747e5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11682" + ], + "x-ms-request-id": [ + "4273e4bc-8a37-4b0d-b125-5c1e35eae989" + ], + "x-ms-correlation-request-id": [ + "4273e4bc-8a37-4b0d-b125-5c1e35eae989" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201041Z:4273e4bc-8a37-4b0d-b125-5c1e35eae989" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4bfcbadd-6788-4d68-8c23-593bf634af9b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11680" + ], + "x-ms-request-id": [ + "81d865eb-4916-4ed8-861e-ff4d8f81cf8e" + ], + "x-ms-correlation-request-id": [ + "81d865eb-4916-4ed8-861e-ff4d8f81cf8e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201042Z:81d865eb-4916-4ed8-861e-ff4d8f81cf8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11437679-e252-488e-adb8-1eac9c406100" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11678" + ], + "x-ms-request-id": [ + "a289cff8-c6cb-4e00-882a-f493b53ea33c" + ], + "x-ms-correlation-request-id": [ + "a289cff8-c6cb-4e00-882a-f493b53ea33c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201042Z:a289cff8-c6cb-4e00-882a-f493b53ea33c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cca7f63d-f97b-41b6-8cd1-eefc478ae80f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11676" + ], + "x-ms-request-id": [ + "bf0486db-4e1a-40ad-8abc-7b1a30cb08cb" + ], + "x-ms-correlation-request-id": [ + "bf0486db-4e1a-40ad-8abc-7b1a30cb08cb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201042Z:bf0486db-4e1a-40ad-8abc-7b1a30cb08cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2fdcc903-4dd3-4097-9153-285da26f1383" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11674" + ], + "x-ms-request-id": [ + "d955f331-d00e-45a2-944c-9126440e6613" + ], + "x-ms-correlation-request-id": [ + "d955f331-d00e-45a2-944c-9126440e6613" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201042Z:d955f331-d00e-45a2-944c-9126440e6613" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59a254f2-e5cc-4bd1-adc1-f73a4974e18c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11672" + ], + "x-ms-request-id": [ + "0702e3f5-21aa-4074-9a57-6bc8fae0b811" + ], + "x-ms-correlation-request-id": [ + "0702e3f5-21aa-4074-9a57-6bc8fae0b811" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201043Z:0702e3f5-21aa-4074-9a57-6bc8fae0b811" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93a9eaf2-daf7-4562-badc-16839b7f0007" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11670" + ], + "x-ms-request-id": [ + "21dbbe0a-fb45-4d98-85f7-eeafbd1b0c4b" + ], + "x-ms-correlation-request-id": [ + "21dbbe0a-fb45-4d98-85f7-eeafbd1b0c4b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201043Z:21dbbe0a-fb45-4d98-85f7-eeafbd1b0c4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7e9f8bf-45f6-4bb9-9c45-eb547c1ec09b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11668" + ], + "x-ms-request-id": [ + "d36bc86c-88e3-46fd-a862-9b4f93db98f3" + ], + "x-ms-correlation-request-id": [ + "d36bc86c-88e3-46fd-a862-9b4f93db98f3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201043Z:d36bc86c-88e3-46fd-a862-9b4f93db98f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc4df79a-6b44-407c-aa8f-0f0f6c175641" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11666" + ], + "x-ms-request-id": [ + "e9b99d1d-d863-4447-896f-302b5259175f" + ], + "x-ms-correlation-request-id": [ + "e9b99d1d-d863-4447-896f-302b5259175f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201043Z:e9b99d1d-d863-4447-896f-302b5259175f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd6ce119-ef36-43e3-bced-d4be7ef4eb64" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11664" + ], + "x-ms-request-id": [ + "3627bcc2-05ca-489c-a14a-d294a1c1f245" + ], + "x-ms-correlation-request-id": [ + "3627bcc2-05ca-489c-a14a-d294a1c1f245" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201044Z:3627bcc2-05ca-489c-a14a-d294a1c1f245" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2068bfd-6186-4867-b5ca-38f9e2b2164e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11662" + ], + "x-ms-request-id": [ + "e449f586-24bd-459f-85da-a53aa2366de0" + ], + "x-ms-correlation-request-id": [ + "e449f586-24bd-459f-85da-a53aa2366de0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201044Z:e449f586-24bd-459f-85da-a53aa2366de0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "436796e0-a94b-4698-8e2b-f162735acdf3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11660" + ], + "x-ms-request-id": [ + "7b196155-c8de-4d05-b9a6-2e2ba1f56d1a" + ], + "x-ms-correlation-request-id": [ + "7b196155-c8de-4d05-b9a6-2e2ba1f56d1a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201044Z:7b196155-c8de-4d05-b9a6-2e2ba1f56d1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8bb6d4-a82f-4db9-ab51-8d3fe2ec045f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11658" + ], + "x-ms-request-id": [ + "c7bd0c44-27d0-4030-9f6d-f9f226f1fd2d" + ], + "x-ms-correlation-request-id": [ + "c7bd0c44-27d0-4030-9f6d-f9f226f1fd2d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201044Z:c7bd0c44-27d0-4030-9f6d-f9f226f1fd2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "352e96bd-0439-4ed0-a11f-71b5f6ef7772" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11656" + ], + "x-ms-request-id": [ + "d1e1168c-0a28-4263-ad25-c6905098a05e" + ], + "x-ms-correlation-request-id": [ + "d1e1168c-0a28-4263-ad25-c6905098a05e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201045Z:d1e1168c-0a28-4263-ad25-c6905098a05e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea39d2d7-73a8-4104-8e48-72075badd324" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11654" + ], + "x-ms-request-id": [ + "e9c5f5be-2cf9-47c9-af74-6d2c858c5822" + ], + "x-ms-correlation-request-id": [ + "e9c5f5be-2cf9-47c9-af74-6d2c858c5822" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201045Z:e9c5f5be-2cf9-47c9-af74-6d2c858c5822" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48d54135-067c-4aa0-b39a-b4da2ed2b85b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11652" + ], + "x-ms-request-id": [ + "b03d9ce4-aeac-4433-b5e7-8a43dab9051d" + ], + "x-ms-correlation-request-id": [ + "b03d9ce4-aeac-4433-b5e7-8a43dab9051d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201045Z:b03d9ce4-aeac-4433-b5e7-8a43dab9051d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4d15128-52a0-443f-963e-e14564c0a84e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11650" + ], + "x-ms-request-id": [ + "fbf9bf28-148e-48a4-8a4f-c92157841040" + ], + "x-ms-correlation-request-id": [ + "fbf9bf28-148e-48a4-8a4f-c92157841040" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201045Z:fbf9bf28-148e-48a4-8a4f-c92157841040" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b1ca7f0-b98e-4704-b37a-a208d7c8f631" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11648" + ], + "x-ms-request-id": [ + "ac90d3b5-8bf9-465a-8768-fd4459b014f3" + ], + "x-ms-correlation-request-id": [ + "ac90d3b5-8bf9-465a-8768-fd4459b014f3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201046Z:ac90d3b5-8bf9-465a-8768-fd4459b014f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "265e1e64-1dbf-4391-ac20-2a26a0116409" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11646" + ], + "x-ms-request-id": [ + "3db73d52-d2e0-44b2-bc13-e9dc5b19c8d1" + ], + "x-ms-correlation-request-id": [ + "3db73d52-d2e0-44b2-bc13-e9dc5b19c8d1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201046Z:3db73d52-d2e0-44b2-bc13-e9dc5b19c8d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f55d326d-cbfd-4d5f-9d5b-52ef914fd321" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11644" + ], + "x-ms-request-id": [ + "a3c5a443-92c6-4eaa-8492-71c477dc43bc" + ], + "x-ms-correlation-request-id": [ + "a3c5a443-92c6-4eaa-8492-71c477dc43bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201046Z:a3c5a443-92c6-4eaa-8492-71c477dc43bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a942eac3-1fef-4257-8bc4-45f99c9c34cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11642" + ], + "x-ms-request-id": [ + "a785e714-3c47-4131-aa28-c8ffd6e33b35" + ], + "x-ms-correlation-request-id": [ + "a785e714-3c47-4131-aa28-c8ffd6e33b35" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201046Z:a785e714-3c47-4131-aa28-c8ffd6e33b35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84b9bb47-edbe-48f0-b319-b18ebc60a272" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11640" + ], + "x-ms-request-id": [ + "41fe6d47-f5c8-4529-8788-ff112759f4da" + ], + "x-ms-correlation-request-id": [ + "41fe6d47-f5c8-4529-8788-ff112759f4da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201047Z:41fe6d47-f5c8-4529-8788-ff112759f4da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d11ef15-7cc9-4d8c-b24d-b796455b40b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11638" + ], + "x-ms-request-id": [ + "1228a1dd-503f-48d5-ae39-74d68c952c6c" + ], + "x-ms-correlation-request-id": [ + "1228a1dd-503f-48d5-ae39-74d68c952c6c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201047Z:1228a1dd-503f-48d5-ae39-74d68c952c6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d91fe162-7e83-40e2-a024-864ca3138e37" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11636" + ], + "x-ms-request-id": [ + "70ac04e5-1efd-4202-afef-19766f0f894a" + ], + "x-ms-correlation-request-id": [ + "70ac04e5-1efd-4202-afef-19766f0f894a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201047Z:70ac04e5-1efd-4202-afef-19766f0f894a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9f7367d-fad1-4273-8691-0499da001789" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11634" + ], + "x-ms-request-id": [ + "91a366c6-9f93-4cfc-9f43-68ce6df2911e" + ], + "x-ms-correlation-request-id": [ + "91a366c6-9f93-4cfc-9f43-68ce6df2911e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201048Z:91a366c6-9f93-4cfc-9f43-68ce6df2911e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7323bb39-7032-438b-8f95-4e8559966402" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11632" + ], + "x-ms-request-id": [ + "c62651e5-45ca-413f-a736-9aba603844c4" + ], + "x-ms-correlation-request-id": [ + "c62651e5-45ca-413f-a736-9aba603844c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201048Z:c62651e5-45ca-413f-a736-9aba603844c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b50bc25c-a558-44fd-8a69-1533a1dd8faf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11630" + ], + "x-ms-request-id": [ + "39be8fa2-7e32-4095-a1e9-d4491422f24c" + ], + "x-ms-correlation-request-id": [ + "39be8fa2-7e32-4095-a1e9-d4491422f24c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201048Z:39be8fa2-7e32-4095-a1e9-d4491422f24c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71f4aae6-5b75-4f71-b1c1-0f8d22bab293" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11628" + ], + "x-ms-request-id": [ + "0a39c1ce-a39d-4d39-b4cf-6bfdbf12890d" + ], + "x-ms-correlation-request-id": [ + "0a39c1ce-a39d-4d39-b4cf-6bfdbf12890d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201048Z:0a39c1ce-a39d-4d39-b4cf-6bfdbf12890d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11ab8c1a-23e8-41a9-9e13-890e70e1cb20" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11626" + ], + "x-ms-request-id": [ + "2e05e60c-3de3-461d-8456-fefbf2bcae0f" + ], + "x-ms-correlation-request-id": [ + "2e05e60c-3de3-461d-8456-fefbf2bcae0f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201049Z:2e05e60c-3de3-461d-8456-fefbf2bcae0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5c88476-da67-40ef-899d-6ee620a2892f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11624" + ], + "x-ms-request-id": [ + "216b1627-df86-495b-9eaa-acb62897c60d" + ], + "x-ms-correlation-request-id": [ + "216b1627-df86-495b-9eaa-acb62897c60d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201049Z:216b1627-df86-495b-9eaa-acb62897c60d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88f1e473-2c20-4786-bbb0-3fbc0275649f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11622" + ], + "x-ms-request-id": [ + "b4a2a6ed-92bc-48f0-b5cd-e20fe15b357e" + ], + "x-ms-correlation-request-id": [ + "b4a2a6ed-92bc-48f0-b5cd-e20fe15b357e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201049Z:b4a2a6ed-92bc-48f0-b5cd-e20fe15b357e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d826bb23-4e38-474d-91f0-a72c037db1d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11620" + ], + "x-ms-request-id": [ + "decfc9fe-f24e-4691-9c4e-62ddd543c99c" + ], + "x-ms-correlation-request-id": [ + "decfc9fe-f24e-4691-9c4e-62ddd543c99c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201049Z:decfc9fe-f24e-4691-9c4e-62ddd543c99c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30c70fbc-92d5-4948-9ba6-270296350f9e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11618" + ], + "x-ms-request-id": [ + "7bab83fd-5d29-4f80-bc8a-c24dd8e21ef4" + ], + "x-ms-correlation-request-id": [ + "7bab83fd-5d29-4f80-bc8a-c24dd8e21ef4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201050Z:7bab83fd-5d29-4f80-bc8a-c24dd8e21ef4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce0c321a-9505-442e-a05f-8f586d99ec5c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11616" + ], + "x-ms-request-id": [ + "0d16fceb-367d-4b07-b0f0-af99ce0eab43" + ], + "x-ms-correlation-request-id": [ + "0d16fceb-367d-4b07-b0f0-af99ce0eab43" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201050Z:0d16fceb-367d-4b07-b0f0-af99ce0eab43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "144e3c26-6ecf-4624-8063-e239ba0af4ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11614" + ], + "x-ms-request-id": [ + "66d999f7-34de-4df8-90a8-7c0fa9aedf41" + ], + "x-ms-correlation-request-id": [ + "66d999f7-34de-4df8-90a8-7c0fa9aedf41" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201050Z:66d999f7-34de-4df8-90a8-7c0fa9aedf41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c6fb8a0-9475-454c-9731-fff9841d59d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11612" + ], + "x-ms-request-id": [ + "ea35f1b3-5683-4e3c-9b69-a8c6e661b8ff" + ], + "x-ms-correlation-request-id": [ + "ea35f1b3-5683-4e3c-9b69-a8c6e661b8ff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201050Z:ea35f1b3-5683-4e3c-9b69-a8c6e661b8ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "986d46fb-dba2-4931-a177-bc1019491025" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11610" + ], + "x-ms-request-id": [ + "e72d19b5-d093-4a5b-86cc-b5156105cf46" + ], + "x-ms-correlation-request-id": [ + "e72d19b5-d093-4a5b-86cc-b5156105cf46" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201051Z:e72d19b5-d093-4a5b-86cc-b5156105cf46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59dabf9e-a90a-419a-a7bd-9c58edc8884c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11608" + ], + "x-ms-request-id": [ + "d3293469-d5fb-4d54-997d-fffa9e988c38" + ], + "x-ms-correlation-request-id": [ + "d3293469-d5fb-4d54-997d-fffa9e988c38" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201051Z:d3293469-d5fb-4d54-997d-fffa9e988c38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "993b272d-8906-4685-b507-fa3d6bc54c1d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11606" + ], + "x-ms-request-id": [ + "62fe0ebb-5b13-4a85-92a7-6cd07515953a" + ], + "x-ms-correlation-request-id": [ + "62fe0ebb-5b13-4a85-92a7-6cd07515953a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201051Z:62fe0ebb-5b13-4a85-92a7-6cd07515953a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adb8bca1-3cb7-4147-8c87-09cbc58beb09" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11604" + ], + "x-ms-request-id": [ + "38623154-23b2-4342-b69a-45d1315475db" + ], + "x-ms-correlation-request-id": [ + "38623154-23b2-4342-b69a-45d1315475db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201051Z:38623154-23b2-4342-b69a-45d1315475db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17616df5-be9d-419f-a8bc-cc3a30dd1c4a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11602" + ], + "x-ms-request-id": [ + "c21b3299-1dab-426f-b8b8-a99b3341a34b" + ], + "x-ms-correlation-request-id": [ + "c21b3299-1dab-426f-b8b8-a99b3341a34b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201052Z:c21b3299-1dab-426f-b8b8-a99b3341a34b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c041dc1-d135-4c6c-83fd-e9b37cd7643d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11600" + ], + "x-ms-request-id": [ + "ac4369b2-673b-4b5a-a397-039089840926" + ], + "x-ms-correlation-request-id": [ + "ac4369b2-673b-4b5a-a397-039089840926" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201052Z:ac4369b2-673b-4b5a-a397-039089840926" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff2e6c41-8d68-46b5-8008-fd87b7375448" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11598" + ], + "x-ms-request-id": [ + "a8f4f53a-9352-4670-b131-301188bd43dc" + ], + "x-ms-correlation-request-id": [ + "a8f4f53a-9352-4670-b131-301188bd43dc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201052Z:a8f4f53a-9352-4670-b131-301188bd43dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a30d072-9682-46bf-b444-e94cb0f00580" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11596" + ], + "x-ms-request-id": [ + "944ba9d2-6e96-479c-bbdb-315f9f566dc8" + ], + "x-ms-correlation-request-id": [ + "944ba9d2-6e96-479c-bbdb-315f9f566dc8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201052Z:944ba9d2-6e96-479c-bbdb-315f9f566dc8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a93a17d5-24c7-40e8-bb45-05e3bfe3a6c8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11594" + ], + "x-ms-request-id": [ + "38031b88-0a7c-4ab0-b1b5-0704f2397b5a" + ], + "x-ms-correlation-request-id": [ + "38031b88-0a7c-4ab0-b1b5-0704f2397b5a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201053Z:38031b88-0a7c-4ab0-b1b5-0704f2397b5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3d05732-d43c-45e5-99c3-5cbe516d0c76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11592" + ], + "x-ms-request-id": [ + "e549ea37-4841-46a1-86d7-0d16f681989a" + ], + "x-ms-correlation-request-id": [ + "e549ea37-4841-46a1-86d7-0d16f681989a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201053Z:e549ea37-4841-46a1-86d7-0d16f681989a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7de112a-eb48-47da-acb3-1263151df405" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11590" + ], + "x-ms-request-id": [ + "6a9f369d-4322-4580-9e8f-cf82fc3a7265" + ], + "x-ms-correlation-request-id": [ + "6a9f369d-4322-4580-9e8f-cf82fc3a7265" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201053Z:6a9f369d-4322-4580-9e8f-cf82fc3a7265" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fea50bb-8903-48cd-ae61-e046ce165a40" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11588" + ], + "x-ms-request-id": [ + "66ba3abb-535f-4252-a89d-cb797efed44f" + ], + "x-ms-correlation-request-id": [ + "66ba3abb-535f-4252-a89d-cb797efed44f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201054Z:66ba3abb-535f-4252-a89d-cb797efed44f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae0792ea-5f54-422f-8632-95042baadf70" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11586" + ], + "x-ms-request-id": [ + "e749087a-65e4-4e14-afe5-b282d11f029d" + ], + "x-ms-correlation-request-id": [ + "e749087a-65e4-4e14-afe5-b282d11f029d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201054Z:e749087a-65e4-4e14-afe5-b282d11f029d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12e04a43-db5e-49ac-91e7-9d2843b74808" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11584" + ], + "x-ms-request-id": [ + "5560741d-85cf-45b4-abb1-08e5edf8e194" + ], + "x-ms-correlation-request-id": [ + "5560741d-85cf-45b4-abb1-08e5edf8e194" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201054Z:5560741d-85cf-45b4-abb1-08e5edf8e194" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94b31b8d-cbe5-445b-a100-a9063cdc9c43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11582" + ], + "x-ms-request-id": [ + "106617bb-519c-40d0-82b7-34f9464ff0fb" + ], + "x-ms-correlation-request-id": [ + "106617bb-519c-40d0-82b7-34f9464ff0fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201054Z:106617bb-519c-40d0-82b7-34f9464ff0fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d1499a0e-25bd-42ee-9a97-6bcfd4ebedb7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11580" + ], + "x-ms-request-id": [ + "728c6b09-0381-4f01-b91b-1f2d10dcbbea" + ], + "x-ms-correlation-request-id": [ + "728c6b09-0381-4f01-b91b-1f2d10dcbbea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201055Z:728c6b09-0381-4f01-b91b-1f2d10dcbbea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad969e29-3d33-4bfc-b865-f4e9d0279c27" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11578" + ], + "x-ms-request-id": [ + "b211d62b-9cf6-4042-89c2-398dcd0062aa" + ], + "x-ms-correlation-request-id": [ + "b211d62b-9cf6-4042-89c2-398dcd0062aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201055Z:b211d62b-9cf6-4042-89c2-398dcd0062aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "201396f7-2b9e-4dbe-ba0c-fe54caf289b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11576" + ], + "x-ms-request-id": [ + "e28c1986-149f-4d9c-8c03-d9fdbf8e206b" + ], + "x-ms-correlation-request-id": [ + "e28c1986-149f-4d9c-8c03-d9fdbf8e206b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201055Z:e28c1986-149f-4d9c-8c03-d9fdbf8e206b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df8ce468-cf08-4042-8b14-7df2ff8d1919" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11574" + ], + "x-ms-request-id": [ + "048b4eba-a48c-4b46-b90d-17023dc0170c" + ], + "x-ms-correlation-request-id": [ + "048b4eba-a48c-4b46-b90d-17023dc0170c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201055Z:048b4eba-a48c-4b46-b90d-17023dc0170c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e278a7b3-7bde-4e45-926c-6483476a8eff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11572" + ], + "x-ms-request-id": [ + "862e6045-c44f-476e-8988-0eea3fff0b2b" + ], + "x-ms-correlation-request-id": [ + "862e6045-c44f-476e-8988-0eea3fff0b2b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201056Z:862e6045-c44f-476e-8988-0eea3fff0b2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2227a443-ca1b-4fb8-8f91-ac584e4e1ccf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11570" + ], + "x-ms-request-id": [ + "529a798f-b746-47fa-98cb-f08553481219" + ], + "x-ms-correlation-request-id": [ + "529a798f-b746-47fa-98cb-f08553481219" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201056Z:529a798f-b746-47fa-98cb-f08553481219" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e1579b7-f12f-4cb6-9e1b-99224e543cc8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11568" + ], + "x-ms-request-id": [ + "0d3eee7e-af06-453b-ad12-5696423582cc" + ], + "x-ms-correlation-request-id": [ + "0d3eee7e-af06-453b-ad12-5696423582cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201056Z:0d3eee7e-af06-453b-ad12-5696423582cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bc270a0-bab0-4ade-ad5f-de2eda29dd5e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11566" + ], + "x-ms-request-id": [ + "1a9d03e1-6f2a-497c-bb6e-11987dd06072" + ], + "x-ms-correlation-request-id": [ + "1a9d03e1-6f2a-497c-bb6e-11987dd06072" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201057Z:1a9d03e1-6f2a-497c-bb6e-11987dd06072" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1e07f69-f647-4352-9972-34c6a2bff02a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11564" + ], + "x-ms-request-id": [ + "314cc533-5ff6-4571-9657-73ca06aec30b" + ], + "x-ms-correlation-request-id": [ + "314cc533-5ff6-4571-9657-73ca06aec30b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201057Z:314cc533-5ff6-4571-9657-73ca06aec30b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52e21855-684b-4890-992c-e4a7a5b91e96" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11562" + ], + "x-ms-request-id": [ + "96771524-df54-4588-ba16-3aef20dca1f6" + ], + "x-ms-correlation-request-id": [ + "96771524-df54-4588-ba16-3aef20dca1f6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201057Z:96771524-df54-4588-ba16-3aef20dca1f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2395569f-fe11-4176-b488-948ab87ee2eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11560" + ], + "x-ms-request-id": [ + "113d71e4-4c55-49a9-9b19-c5b9d109f5e9" + ], + "x-ms-correlation-request-id": [ + "113d71e4-4c55-49a9-9b19-c5b9d109f5e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201057Z:113d71e4-4c55-49a9-9b19-c5b9d109f5e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb72586a-235e-488e-8cd7-6c911f327927" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11558" + ], + "x-ms-request-id": [ + "5e4026ad-4f86-4801-8be8-e9895eaa35b6" + ], + "x-ms-correlation-request-id": [ + "5e4026ad-4f86-4801-8be8-e9895eaa35b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201058Z:5e4026ad-4f86-4801-8be8-e9895eaa35b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6976c8ed-6ff7-473e-ac80-2907ca2e7611" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11556" + ], + "x-ms-request-id": [ + "a721d810-2e67-4555-86c0-f46133302641" + ], + "x-ms-correlation-request-id": [ + "a721d810-2e67-4555-86c0-f46133302641" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201058Z:a721d810-2e67-4555-86c0-f46133302641" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dcc25d45-2e86-4813-a424-077894205659" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11554" + ], + "x-ms-request-id": [ + "6587eeb7-0fdb-4b6c-a6a4-71bb66026bc1" + ], + "x-ms-correlation-request-id": [ + "6587eeb7-0fdb-4b6c-a6a4-71bb66026bc1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201058Z:6587eeb7-0fdb-4b6c-a6a4-71bb66026bc1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf7282c2-9ea3-432c-bc18-2478751061b9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11552" + ], + "x-ms-request-id": [ + "696215c9-56a6-4c52-a216-16d0cd0cb363" + ], + "x-ms-correlation-request-id": [ + "696215c9-56a6-4c52-a216-16d0cd0cb363" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201059Z:696215c9-56a6-4c52-a216-16d0cd0cb363" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26c8f552-4364-4ba0-b8e0-aee8431a3fc8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11550" + ], + "x-ms-request-id": [ + "f1c0859c-09e4-4310-a0a6-25a40fe106c5" + ], + "x-ms-correlation-request-id": [ + "f1c0859c-09e4-4310-a0a6-25a40fe106c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201059Z:f1c0859c-09e4-4310-a0a6-25a40fe106c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1773fcc1-c084-4ace-90d6-351779b91a29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11548" + ], + "x-ms-request-id": [ + "9ded4465-3ad6-45ae-b02e-3448a522a602" + ], + "x-ms-correlation-request-id": [ + "9ded4465-3ad6-45ae-b02e-3448a522a602" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201059Z:9ded4465-3ad6-45ae-b02e-3448a522a602" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c8c2c0d-1474-4bb8-9e65-340b410aec9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11546" + ], + "x-ms-request-id": [ + "fbcdd2a8-3eef-4f30-b5e9-220721728848" + ], + "x-ms-correlation-request-id": [ + "fbcdd2a8-3eef-4f30-b5e9-220721728848" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201059Z:fbcdd2a8-3eef-4f30-b5e9-220721728848" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8d7cf70-29b5-4851-8348-7228bb5c73bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11544" + ], + "x-ms-request-id": [ + "e697dbd9-fcf2-420b-b3cf-b1568b5d60da" + ], + "x-ms-correlation-request-id": [ + "e697dbd9-fcf2-420b-b3cf-b1568b5d60da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201100Z:e697dbd9-fcf2-420b-b3cf-b1568b5d60da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f53182c-b5e8-405e-855f-0bb4cf84ae4f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11542" + ], + "x-ms-request-id": [ + "c9dac6ba-7ee8-45f0-a464-064009500d5f" + ], + "x-ms-correlation-request-id": [ + "c9dac6ba-7ee8-45f0-a464-064009500d5f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201100Z:c9dac6ba-7ee8-45f0-a464-064009500d5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "377047ff-fc72-4a19-b236-7c02988e87ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11540" + ], + "x-ms-request-id": [ + "d0c7d6d9-d9d7-44b9-9b52-c4f7e0db413d" + ], + "x-ms-correlation-request-id": [ + "d0c7d6d9-d9d7-44b9-9b52-c4f7e0db413d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201100Z:d0c7d6d9-d9d7-44b9-9b52-c4f7e0db413d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bcc8269-bbd4-4795-938e-49dc0e100cfd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11538" + ], + "x-ms-request-id": [ + "bf75707d-4ab2-498b-9934-dd26af659cc9" + ], + "x-ms-correlation-request-id": [ + "bf75707d-4ab2-498b-9934-dd26af659cc9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201101Z:bf75707d-4ab2-498b-9934-dd26af659cc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "927ba238-c39c-473e-bdcf-485c4c0d0d4a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11536" + ], + "x-ms-request-id": [ + "821cceed-834e-480d-86f8-466754cfddcf" + ], + "x-ms-correlation-request-id": [ + "821cceed-834e-480d-86f8-466754cfddcf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201101Z:821cceed-834e-480d-86f8-466754cfddcf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f42afd5d-e7c6-41fc-b2eb-fe0cd7fcf71d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11534" + ], + "x-ms-request-id": [ + "330bd278-5bc3-41b2-b632-df23d38932ed" + ], + "x-ms-correlation-request-id": [ + "330bd278-5bc3-41b2-b632-df23d38932ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201102Z:330bd278-5bc3-41b2-b632-df23d38932ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a61fff39-74b5-43a9-98c9-4fc8f977b050" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11532" + ], + "x-ms-request-id": [ + "b9f3733d-1e4a-461c-a896-ee34965773d1" + ], + "x-ms-correlation-request-id": [ + "b9f3733d-1e4a-461c-a896-ee34965773d1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201102Z:b9f3733d-1e4a-461c-a896-ee34965773d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd955349-6bbf-4135-b199-e787629fe95c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11530" + ], + "x-ms-request-id": [ + "2231f3ad-88c6-4a19-a93d-77fc0edac944" + ], + "x-ms-correlation-request-id": [ + "2231f3ad-88c6-4a19-a93d-77fc0edac944" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201102Z:2231f3ad-88c6-4a19-a93d-77fc0edac944" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a9809b7-b2f1-4b14-ba36-c1e4de1288aa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11528" + ], + "x-ms-request-id": [ + "20f95ceb-30fb-4d69-827c-13d53ebf6c11" + ], + "x-ms-correlation-request-id": [ + "20f95ceb-30fb-4d69-827c-13d53ebf6c11" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201102Z:20f95ceb-30fb-4d69-827c-13d53ebf6c11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e900cad-e227-45d5-8278-8e4d9e334729" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11526" + ], + "x-ms-request-id": [ + "aaabba61-e159-4c0d-8490-c2ec29664486" + ], + "x-ms-correlation-request-id": [ + "aaabba61-e159-4c0d-8490-c2ec29664486" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201103Z:aaabba61-e159-4c0d-8490-c2ec29664486" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "931" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:06.3802424Z\",\r\n \"duration\": \"PT3.5998535S\",\r\n \"trackingId\": \"194c95f2-606d-406b-908d-4c276c06460e\",\r\n \"serviceRequestId\": \"93b97564-7528-43d6-a5bf-ac2e7497d792\",\r\n \"statusCode\": \"BadGateway\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"BadGatewayConnection\",\r\n \"message\": \"The network connectivity issue encountered for 'Microsoft.DeploymentManager'; cannot fulfill the request.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58699451-56b5-43c5-8abe-0ca8b514112b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11524" + ], + "x-ms-request-id": [ + "db58d466-c56e-45ce-9661-ec12622b47af" + ], + "x-ms-correlation-request-id": [ + "db58d466-c56e-45ce-9661-ec12622b47af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201103Z:db58d466-c56e-45ce-9661-ec12622b47af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "756" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-03-27T20:11:03.1181626Z\",\r\n \"duration\": \"PT1M0.3377737S\",\r\n \"trackingId\": \"cf1117ff-9127-4646-a9f5-e6af36ad006f\",\r\n \"serviceRequestId\": \"64fc13c7-ba6c-413a-928f-d287654383ea\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5baf72fa-d239-42fb-a3d1-8be15479f101" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11522" + ], + "x-ms-request-id": [ + "dcc3fe5f-6219-48cf-91c6-a73976e964d7" + ], + "x-ms-correlation-request-id": [ + "dcc3fe5f-6219-48cf-91c6-a73976e964d7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201103Z:dcc3fe5f-6219-48cf-91c6-a73976e964d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "756" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-03-27T20:11:03.1181626Z\",\r\n \"duration\": \"PT1M0.3377737S\",\r\n \"trackingId\": \"cf1117ff-9127-4646-a9f5-e6af36ad006f\",\r\n \"serviceRequestId\": \"64fc13c7-ba6c-413a-928f-d287654383ea\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123Rollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33e2120d-f921-4c8e-b636-e49d07276ee0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11520" + ], + "x-ms-request-id": [ + "38e2e3df-c2fd-464f-a8c0-dec1c6b753b6" + ], + "x-ms-correlation-request-id": [ + "38e2e3df-c2fd-464f-a8c0-dec1c6b753b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201103Z:38e2e3df-c2fd-464f-a8c0-dec1c6b753b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1228" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/2B02292F2FA95A8E\",\r\n \"operationId\": \"2B02292F2FA95A8E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-03-27T20:11:03.1181626Z\",\r\n \"duration\": \"PT1M0.3377737S\",\r\n \"trackingId\": \"cf1117ff-9127-4646-a9f5-e6af36ad006f\",\r\n \"serviceRequestId\": \"64fc13c7-ba6c-413a-928f-d287654383ea\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123Rollout\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout/operations/08586478894837276024\",\r\n \"operationId\": \"08586478894837276024\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-03-27T20:11:03.5985484Z\",\r\n \"duration\": \"PT0.3204887S\",\r\n \"trackingId\": \"06d708e2-2469-4108-bf03-32aaa9c6f83c\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7ffafb9-807a-40e9-994d-341a5a0efed2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "ae049052-7e05-41ae-98b7-792f3a7c9c14" + ], + "x-ms-correlation-request-id": [ + "ae049052-7e05-41ae-98b7-792f3a7c9c14" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201002Z:ae049052-7e05-41ae-98b7-792f3a7c9c14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31282ff1-beb8-4c09-a19e-29a945c0cbc6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "ef7f5e9d-4732-4aed-9fe5-a6b595e5fdd6" + ], + "x-ms-correlation-request-id": [ + "ef7f5e9d-4732-4aed-9fe5-a6b595e5fdd6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201003Z:ef7f5e9d-4732-4aed-9fe5-a6b595e5fdd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db5479f-58b1-4c18-ab13-0b681702b6a6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "c8597adc-0719-4763-ba18-df68094108d1" + ], + "x-ms-correlation-request-id": [ + "c8597adc-0719-4763-ba18-df68094108d1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201003Z:c8597adc-0719-4763-ba18-df68094108d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f29c51ad-2c14-4969-9d3f-7d4254e3d026" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "6b5560b1-13c3-4073-bbb6-05339853534e" + ], + "x-ms-correlation-request-id": [ + "6b5560b1-13c3-4073-bbb6-05339853534e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201003Z:6b5560b1-13c3-4073-bbb6-05339853534e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6026f9cc-5366-4efd-bea8-ccf7e0c85557" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "2643b4ab-56ee-4c43-8612-c1ce112e22f7" + ], + "x-ms-correlation-request-id": [ + "2643b4ab-56ee-4c43-8612-c1ce112e22f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201003Z:2643b4ab-56ee-4c43-8612-c1ce112e22f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e8d849b-e954-42c1-9671-d8b2274b88aa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "dec07ec3-edbe-4e1c-bf9b-7844c1143551" + ], + "x-ms-correlation-request-id": [ + "dec07ec3-edbe-4e1c-bf9b-7844c1143551" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201004Z:dec07ec3-edbe-4e1c-bf9b-7844c1143551" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48070c37-1bd0-49e6-bef2-f9560f36ca43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "b18e9e12-bc4c-4c1f-bb36-565ac0008e3d" + ], + "x-ms-correlation-request-id": [ + "b18e9e12-bc4c-4c1f-bb36-565ac0008e3d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201004Z:b18e9e12-bc4c-4c1f-bb36-565ac0008e3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dde762a2-afd9-458a-89e6-cb345fdf7d7e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "509075a1-bcdc-474e-bb77-2af05863e55f" + ], + "x-ms-correlation-request-id": [ + "509075a1-bcdc-474e-bb77-2af05863e55f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201004Z:509075a1-bcdc-474e-bb77-2af05863e55f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb234217-1351-4102-a7a4-d8d4a2ea251f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "e95bac2b-a452-4947-80df-d95152d55225" + ], + "x-ms-correlation-request-id": [ + "e95bac2b-a452-4947-80df-d95152d55225" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201004Z:e95bac2b-a452-4947-80df-d95152d55225" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ffe3df4-b18a-41c2-afe4-a95981c2416a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "b2a18bc9-0354-4db7-b990-a15cf85ac257" + ], + "x-ms-correlation-request-id": [ + "b2a18bc9-0354-4db7-b990-a15cf85ac257" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201004Z:b2a18bc9-0354-4db7-b990-a15cf85ac257" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f1c4af7b-c9ed-4c41-aa98-0bc783cdb573" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "e9cc24bf-e91a-456a-a0cb-4b08a52aa35a" + ], + "x-ms-correlation-request-id": [ + "e9cc24bf-e91a-456a-a0cb-4b08a52aa35a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201005Z:e9cc24bf-e91a-456a-a0cb-4b08a52aa35a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28cc529e-9f4e-4f5f-8e9c-d8499ace7619" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "a4708343-f26f-4f36-97ac-32798cc482d0" + ], + "x-ms-correlation-request-id": [ + "a4708343-f26f-4f36-97ac-32798cc482d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201005Z:a4708343-f26f-4f36-97ac-32798cc482d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f1ea8268-1fe0-4604-9f45-9678926d9db9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-request-id": [ + "15ec1af1-0c20-4fab-ae07-c42128ba88bf" + ], + "x-ms-correlation-request-id": [ + "15ec1af1-0c20-4fab-ae07-c42128ba88bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201005Z:15ec1af1-0c20-4fab-ae07-c42128ba88bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "609fbe57-0593-48b1-9f4d-00fb5cbddc80" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "cb7579b4-478d-46c7-9a34-6d3d2a4de417" + ], + "x-ms-correlation-request-id": [ + "cb7579b4-478d-46c7-9a34-6d3d2a4de417" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201005Z:cb7579b4-478d-46c7-9a34-6d3d2a4de417" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5759382a-5e13-4574-bc58-5ce621703522" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-request-id": [ + "a4d8028a-cd03-48be-a1ea-550c903c856a" + ], + "x-ms-correlation-request-id": [ + "a4d8028a-cd03-48be-a1ea-550c903c856a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201006Z:a4d8028a-cd03-48be-a1ea-550c903c856a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55392e06-df78-4f31-abc0-148821d28cd7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-request-id": [ + "98474502-6b83-4a09-9acc-66b35e24f476" + ], + "x-ms-correlation-request-id": [ + "98474502-6b83-4a09-9acc-66b35e24f476" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201006Z:98474502-6b83-4a09-9acc-66b35e24f476" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "300ff519-a270-42c3-a284-22d297da7777" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-request-id": [ + "e26f4051-d73a-487c-a9f4-9cd701111350" + ], + "x-ms-correlation-request-id": [ + "e26f4051-d73a-487c-a9f4-9cd701111350" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201006Z:e26f4051-d73a-487c-a9f4-9cd701111350" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9b44160-739c-46e6-b698-449b49baf5b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-request-id": [ + "652a1020-4dfe-4e9c-9de1-35c587c94832" + ], + "x-ms-correlation-request-id": [ + "652a1020-4dfe-4e9c-9de1-35c587c94832" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201006Z:652a1020-4dfe-4e9c-9de1-35c587c94832" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29fcd7af-2993-4d9a-aee1-8f6a198d92e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-request-id": [ + "e999dc7b-bd7b-43b7-b037-cf5919bacd96" + ], + "x-ms-correlation-request-id": [ + "e999dc7b-bd7b-43b7-b037-cf5919bacd96" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201007Z:e999dc7b-bd7b-43b7-b037-cf5919bacd96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b2bd367-aa3a-4d31-b988-082acfc7043e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-request-id": [ + "124c2550-330f-40a9-8fd1-aac6d70ef14a" + ], + "x-ms-correlation-request-id": [ + "124c2550-330f-40a9-8fd1-aac6d70ef14a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201007Z:124c2550-330f-40a9-8fd1-aac6d70ef14a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5cd0fd48-a169-4037-ac76-46fd92ad302f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-request-id": [ + "3aedc907-87c0-42e9-82c2-c4078079f7d5" + ], + "x-ms-correlation-request-id": [ + "3aedc907-87c0-42e9-82c2-c4078079f7d5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201007Z:3aedc907-87c0-42e9-82c2-c4078079f7d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f049754-2bb2-44bc-b747-4d3737a56428" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-request-id": [ + "ec15d4fd-e5da-4419-8bbe-27dfea94d416" + ], + "x-ms-correlation-request-id": [ + "ec15d4fd-e5da-4419-8bbe-27dfea94d416" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201007Z:ec15d4fd-e5da-4419-8bbe-27dfea94d416" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "726f11ea-ae48-4cb3-b84b-177c963c9e10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-request-id": [ + "0e843f54-2816-4735-9bc8-9c6049ebeff1" + ], + "x-ms-correlation-request-id": [ + "0e843f54-2816-4735-9bc8-9c6049ebeff1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201008Z:0e843f54-2816-4735-9bc8-9c6049ebeff1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ffdfd6d-01d0-4f6d-843e-d4be8ce9518f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-request-id": [ + "12096a0e-a42a-474b-bfc2-792c5984dd44" + ], + "x-ms-correlation-request-id": [ + "12096a0e-a42a-474b-bfc2-792c5984dd44" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201008Z:12096a0e-a42a-474b-bfc2-792c5984dd44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6db547d-36a0-4714-9ae8-36b27795f9a0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-request-id": [ + "336bebe6-ebbc-4a5a-bd3a-bbcced6fa0c0" + ], + "x-ms-correlation-request-id": [ + "336bebe6-ebbc-4a5a-bd3a-bbcced6fa0c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201008Z:336bebe6-ebbc-4a5a-bd3a-bbcced6fa0c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34764c7c-b067-4a3a-a235-de522af0d1b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-request-id": [ + "bf6a15cc-671a-49ba-8fd1-1fa0906d0da1" + ], + "x-ms-correlation-request-id": [ + "bf6a15cc-671a-49ba-8fd1-1fa0906d0da1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201008Z:bf6a15cc-671a-49ba-8fd1-1fa0906d0da1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ed693ef-3102-42bc-83bb-ec184f5f2e0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-request-id": [ + "44554527-2cb4-4523-ac5e-bd3036fae43d" + ], + "x-ms-correlation-request-id": [ + "44554527-2cb4-4523-ac5e-bd3036fae43d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201009Z:44554527-2cb4-4523-ac5e-bd3036fae43d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7aa66393-6ba2-4e80-b06b-413c0cf557c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-request-id": [ + "9295dc62-282a-4410-ae52-cb872cc7b433" + ], + "x-ms-correlation-request-id": [ + "9295dc62-282a-4410-ae52-cb872cc7b433" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201009Z:9295dc62-282a-4410-ae52-cb872cc7b433" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "82c1a732-96d6-47d3-b10c-e1848c55a0c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-request-id": [ + "ca35cdb9-2023-4564-98ca-57620432bc41" + ], + "x-ms-correlation-request-id": [ + "ca35cdb9-2023-4564-98ca-57620432bc41" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201009Z:ca35cdb9-2023-4564-98ca-57620432bc41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f542fdf-4cda-4bd5-ae02-0ff097967aae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-request-id": [ + "8665d788-3ee8-4d85-bd07-aeb9a5667875" + ], + "x-ms-correlation-request-id": [ + "8665d788-3ee8-4d85-bd07-aeb9a5667875" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201009Z:8665d788-3ee8-4d85-bd07-aeb9a5667875" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a6ecf62-fa2f-4637-a936-5c825350f2a2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-request-id": [ + "9bc4a54b-662f-4ce9-93ca-621cffdf5731" + ], + "x-ms-correlation-request-id": [ + "9bc4a54b-662f-4ce9-93ca-621cffdf5731" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201010Z:9bc4a54b-662f-4ce9-93ca-621cffdf5731" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c63b248-d445-45cd-86bf-c37d620a8911" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-request-id": [ + "86b13d11-517e-4478-89e3-f1606a7d35da" + ], + "x-ms-correlation-request-id": [ + "86b13d11-517e-4478-89e3-f1606a7d35da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201010Z:86b13d11-517e-4478-89e3-f1606a7d35da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4df7d28-e5cf-4c16-a9ae-703b7fa3e46d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-request-id": [ + "288a64a2-e431-4e81-b884-cf84ac332dc5" + ], + "x-ms-correlation-request-id": [ + "288a64a2-e431-4e81-b884-cf84ac332dc5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201010Z:288a64a2-e431-4e81-b884-cf84ac332dc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af14c9de-b4ce-449f-97db-26309fd238b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "x-ms-request-id": [ + "ef7c1954-4071-4edf-8740-22b6f5eb8967" + ], + "x-ms-correlation-request-id": [ + "ef7c1954-4071-4edf-8740-22b6f5eb8967" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201010Z:ef7c1954-4071-4edf-8740-22b6f5eb8967" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b0b57f1-a86e-48a4-b5ab-b10825887dbb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-request-id": [ + "f3982fd3-bef0-459d-b254-3853d9cd2194" + ], + "x-ms-correlation-request-id": [ + "f3982fd3-bef0-459d-b254-3853d9cd2194" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201011Z:f3982fd3-bef0-459d-b254-3853d9cd2194" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4598a55f-7d10-4ac5-a4a8-27c53418bb65" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "x-ms-request-id": [ + "c46899f0-f3f3-4c9a-8e2c-bd84fc93d1ec" + ], + "x-ms-correlation-request-id": [ + "c46899f0-f3f3-4c9a-8e2c-bd84fc93d1ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201011Z:c46899f0-f3f3-4c9a-8e2c-bd84fc93d1ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ad51f19-8976-4c47-8d40-3cd03a820986" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-request-id": [ + "0f0cedf6-4228-44fd-9eae-6496e1b54855" + ], + "x-ms-correlation-request-id": [ + "0f0cedf6-4228-44fd-9eae-6496e1b54855" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201011Z:0f0cedf6-4228-44fd-9eae-6496e1b54855" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ce06e47-448a-44f8-97b0-f41a8f565d8b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], + "x-ms-request-id": [ + "dc382d8c-2126-463b-9add-e4d8f299a0ad" + ], + "x-ms-correlation-request-id": [ + "dc382d8c-2126-463b-9add-e4d8f299a0ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201012Z:dc382d8c-2126-463b-9add-e4d8f299a0ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "562bb522-cc86-4918-bdb5-f4a63633c62b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "x-ms-request-id": [ + "02893aed-c823-4d67-9f99-cb8ac641c833" + ], + "x-ms-correlation-request-id": [ + "02893aed-c823-4d67-9f99-cb8ac641c833" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201012Z:02893aed-c823-4d67-9f99-cb8ac641c833" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6cd4f24d-df63-4ac5-b718-c869a23aafb0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], + "x-ms-request-id": [ + "83c460ad-6481-4e62-bb99-79bf138ec56b" + ], + "x-ms-correlation-request-id": [ + "83c460ad-6481-4e62-bb99-79bf138ec56b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201012Z:83c460ad-6481-4e62-bb99-79bf138ec56b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d963174-cb49-4508-abd9-ae0773f5e80d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" + ], + "x-ms-request-id": [ + "cc3fc39f-8c0f-45c6-9883-f31955b15e22" + ], + "x-ms-correlation-request-id": [ + "cc3fc39f-8c0f-45c6-9883-f31955b15e22" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201012Z:cc3fc39f-8c0f-45c6-9883-f31955b15e22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f57b2a91-a10d-4037-923a-db57d86cd904" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], + "x-ms-request-id": [ + "a70b54f8-dd7c-451b-ad3d-e01bab961867" + ], + "x-ms-correlation-request-id": [ + "a70b54f8-dd7c-451b-ad3d-e01bab961867" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201013Z:a70b54f8-dd7c-451b-ad3d-e01bab961867" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05986627-248c-4922-9f8e-96002d9e6bf6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" + ], + "x-ms-request-id": [ + "fa9d886d-b1de-42a7-a881-a82a3e766c85" + ], + "x-ms-correlation-request-id": [ + "fa9d886d-b1de-42a7-a881-a82a3e766c85" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201013Z:fa9d886d-b1de-42a7-a881-a82a3e766c85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98afdacf-3246-452d-85e3-3abed89b7bc7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11895" + ], + "x-ms-request-id": [ + "ccc43a10-81b4-4c56-8db8-bc06a87e3702" + ], + "x-ms-correlation-request-id": [ + "ccc43a10-81b4-4c56-8db8-bc06a87e3702" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201013Z:ccc43a10-81b4-4c56-8db8-bc06a87e3702" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6d94d4e-fcd1-4fd1-a17f-39c00d7eeb0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11893" + ], + "x-ms-request-id": [ + "fe4a2ac0-6821-43d9-8ed3-7453c6341df6" + ], + "x-ms-correlation-request-id": [ + "fe4a2ac0-6821-43d9-8ed3-7453c6341df6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201013Z:fe4a2ac0-6821-43d9-8ed3-7453c6341df6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c79b72b-09a4-47b3-99d1-92c185991657" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11891" + ], + "x-ms-request-id": [ + "45110662-3b74-481f-a071-06dcac1073bd" + ], + "x-ms-correlation-request-id": [ + "45110662-3b74-481f-a071-06dcac1073bd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201014Z:45110662-3b74-481f-a071-06dcac1073bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81a0635c-4e27-4ab4-8d2d-62b326c169f9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11889" + ], + "x-ms-request-id": [ + "cce7df67-7151-4ff8-8da4-8d0a7ba19267" + ], + "x-ms-correlation-request-id": [ + "cce7df67-7151-4ff8-8da4-8d0a7ba19267" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201014Z:cce7df67-7151-4ff8-8da4-8d0a7ba19267" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa043534-8e89-447f-b14b-046789088a80" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11887" + ], + "x-ms-request-id": [ + "61d30981-2eca-4df1-8add-fab45810b94c" + ], + "x-ms-correlation-request-id": [ + "61d30981-2eca-4df1-8add-fab45810b94c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201014Z:61d30981-2eca-4df1-8add-fab45810b94c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d9da3d53-77a9-4800-876b-244814077f55" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11885" + ], + "x-ms-request-id": [ + "801a5a84-edf5-4674-8483-396ea9e33400" + ], + "x-ms-correlation-request-id": [ + "801a5a84-edf5-4674-8483-396ea9e33400" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201014Z:801a5a84-edf5-4674-8483-396ea9e33400" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7cad994-3288-453a-a045-9ccc2084a61c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11883" + ], + "x-ms-request-id": [ + "f972319a-4634-4756-bf3e-0cc1ea9bdee0" + ], + "x-ms-correlation-request-id": [ + "f972319a-4634-4756-bf3e-0cc1ea9bdee0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201015Z:f972319a-4634-4756-bf3e-0cc1ea9bdee0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d868ec8-1f8b-45da-98c4-d0f77c147145" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11881" + ], + "x-ms-request-id": [ + "0d57c565-6167-40ad-8508-0594f4d4a3b4" + ], + "x-ms-correlation-request-id": [ + "0d57c565-6167-40ad-8508-0594f4d4a3b4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201015Z:0d57c565-6167-40ad-8508-0594f4d4a3b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d66e212-1218-41cb-a79e-a1f364ab8efe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11879" + ], + "x-ms-request-id": [ + "a8de6841-f8be-4d8d-b0af-4d971e867e60" + ], + "x-ms-correlation-request-id": [ + "a8de6841-f8be-4d8d-b0af-4d971e867e60" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201015Z:a8de6841-f8be-4d8d-b0af-4d971e867e60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6badd7c0-ace3-4d62-b4f7-6f11d7b92e4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11877" + ], + "x-ms-request-id": [ + "13f88a8d-5728-4564-92b6-cc4a8a2903f3" + ], + "x-ms-correlation-request-id": [ + "13f88a8d-5728-4564-92b6-cc4a8a2903f3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201015Z:13f88a8d-5728-4564-92b6-cc4a8a2903f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4baa761a-3c06-4942-84e8-4f7f82509335" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11875" + ], + "x-ms-request-id": [ + "e6aec52c-70c6-4d3a-ac84-ce63e7521140" + ], + "x-ms-correlation-request-id": [ + "e6aec52c-70c6-4d3a-ac84-ce63e7521140" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201016Z:e6aec52c-70c6-4d3a-ac84-ce63e7521140" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b17bddf-094e-48ba-92c2-1cb5eb1897f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11873" + ], + "x-ms-request-id": [ + "56974614-b7ca-4534-b305-fb032ff5fe8e" + ], + "x-ms-correlation-request-id": [ + "56974614-b7ca-4534-b305-fb032ff5fe8e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201016Z:56974614-b7ca-4534-b305-fb032ff5fe8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4b60bac-a62d-4430-8464-b1a614772cb8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11871" + ], + "x-ms-request-id": [ + "4cb5e0e8-3ac5-425b-a0d6-00708b609042" + ], + "x-ms-correlation-request-id": [ + "4cb5e0e8-3ac5-425b-a0d6-00708b609042" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201016Z:4cb5e0e8-3ac5-425b-a0d6-00708b609042" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f7f9130-5385-4930-b2f6-5a9661fcaca9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11869" + ], + "x-ms-request-id": [ + "2d262447-2f29-4c33-8cd2-6abbf286228a" + ], + "x-ms-correlation-request-id": [ + "2d262447-2f29-4c33-8cd2-6abbf286228a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201017Z:2d262447-2f29-4c33-8cd2-6abbf286228a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1556e733-725c-4d75-bbde-143e2687c645" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11867" + ], + "x-ms-request-id": [ + "4594e0f2-cbad-4652-9d30-dddbe292b4dc" + ], + "x-ms-correlation-request-id": [ + "4594e0f2-cbad-4652-9d30-dddbe292b4dc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201017Z:4594e0f2-cbad-4652-9d30-dddbe292b4dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc6b1207-9930-4807-a39b-d1009a9b9a36" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11865" + ], + "x-ms-request-id": [ + "a265eef1-c908-48fb-83b0-1ec84fe5eb7d" + ], + "x-ms-correlation-request-id": [ + "a265eef1-c908-48fb-83b0-1ec84fe5eb7d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201017Z:a265eef1-c908-48fb-83b0-1ec84fe5eb7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "604fa206-44a4-48e3-92c7-32ab0e5de77d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11863" + ], + "x-ms-request-id": [ + "e8c03ddd-e2d2-49f2-a0ca-c528dcb7d6b7" + ], + "x-ms-correlation-request-id": [ + "e8c03ddd-e2d2-49f2-a0ca-c528dcb7d6b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201017Z:e8c03ddd-e2d2-49f2-a0ca-c528dcb7d6b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ca438db-d961-48a3-8618-c0d9b6b97254" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11861" + ], + "x-ms-request-id": [ + "6263969c-aa96-4ca7-87f9-4b6700fa7c9e" + ], + "x-ms-correlation-request-id": [ + "6263969c-aa96-4ca7-87f9-4b6700fa7c9e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201018Z:6263969c-aa96-4ca7-87f9-4b6700fa7c9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10471867-41c1-4207-8e0b-46c30013e18f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11859" + ], + "x-ms-request-id": [ + "c07c6272-f2eb-4644-8d50-d101e602136b" + ], + "x-ms-correlation-request-id": [ + "c07c6272-f2eb-4644-8d50-d101e602136b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201018Z:c07c6272-f2eb-4644-8d50-d101e602136b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "028bf471-a493-4643-bf2c-37f52cf0745e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11857" + ], + "x-ms-request-id": [ + "bfecd814-c2ab-47cb-bb8e-a4132d1567bf" + ], + "x-ms-correlation-request-id": [ + "bfecd814-c2ab-47cb-bb8e-a4132d1567bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201018Z:bfecd814-c2ab-47cb-bb8e-a4132d1567bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "471b2050-049d-4f01-b9c3-fe9bfa081817" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11855" + ], + "x-ms-request-id": [ + "307375aa-56c2-4490-ab2c-7288336dc77c" + ], + "x-ms-correlation-request-id": [ + "307375aa-56c2-4490-ab2c-7288336dc77c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201018Z:307375aa-56c2-4490-ab2c-7288336dc77c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a77a0c7c-79ba-4b4e-a802-d65cde1da2b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11853" + ], + "x-ms-request-id": [ + "0a934cd9-10aa-4537-9ffd-9e713daede06" + ], + "x-ms-correlation-request-id": [ + "0a934cd9-10aa-4537-9ffd-9e713daede06" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201019Z:0a934cd9-10aa-4537-9ffd-9e713daede06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f020523c-fd74-483d-a2e3-b1aaf8fb60ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11851" + ], + "x-ms-request-id": [ + "3abc0a5b-8f79-400c-af1a-890beec65281" + ], + "x-ms-correlation-request-id": [ + "3abc0a5b-8f79-400c-af1a-890beec65281" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201019Z:3abc0a5b-8f79-400c-af1a-890beec65281" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "224f2131-e310-4efa-a9f8-d3e60d9ef89a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11849" + ], + "x-ms-request-id": [ + "730cc25f-9391-408f-aebe-7bf67e7691fd" + ], + "x-ms-correlation-request-id": [ + "730cc25f-9391-408f-aebe-7bf67e7691fd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201019Z:730cc25f-9391-408f-aebe-7bf67e7691fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89005baa-7e42-4c02-a04c-c51b5c7e196f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11847" + ], + "x-ms-request-id": [ + "626f14d1-0d57-4865-ad53-b1d7c7226bc4" + ], + "x-ms-correlation-request-id": [ + "626f14d1-0d57-4865-ad53-b1d7c7226bc4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201019Z:626f14d1-0d57-4865-ad53-b1d7c7226bc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48d87c90-9c7a-449f-9032-a6f80fa9cb8a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11845" + ], + "x-ms-request-id": [ + "ed8020ab-939c-4af3-b769-a93aef793f8a" + ], + "x-ms-correlation-request-id": [ + "ed8020ab-939c-4af3-b769-a93aef793f8a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201020Z:ed8020ab-939c-4af3-b769-a93aef793f8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a51b1983-1bec-474f-9045-d9260da56b08" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11843" + ], + "x-ms-request-id": [ + "872c9b25-3f9d-4bf0-bc28-8d118e976dae" + ], + "x-ms-correlation-request-id": [ + "872c9b25-3f9d-4bf0-bc28-8d118e976dae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201020Z:872c9b25-3f9d-4bf0-bc28-8d118e976dae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9288803f-4cda-42d0-b0a8-66f351d3ce0a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11841" + ], + "x-ms-request-id": [ + "32ffb565-9a3b-43b4-9c30-76e008263bd2" + ], + "x-ms-correlation-request-id": [ + "32ffb565-9a3b-43b4-9c30-76e008263bd2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201020Z:32ffb565-9a3b-43b4-9c30-76e008263bd2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b59dcdb-ec5d-4366-b386-592d1b67f5bb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11839" + ], + "x-ms-request-id": [ + "7873b78a-72bc-4e66-b92d-c062aeec39ce" + ], + "x-ms-correlation-request-id": [ + "7873b78a-72bc-4e66-b92d-c062aeec39ce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201020Z:7873b78a-72bc-4e66-b92d-c062aeec39ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a87c1edd-20f6-4b35-b2b2-1136d3d634b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11837" + ], + "x-ms-request-id": [ + "491a743b-0c3f-46de-9c87-f201bcf30df5" + ], + "x-ms-correlation-request-id": [ + "491a743b-0c3f-46de-9c87-f201bcf30df5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201021Z:491a743b-0c3f-46de-9c87-f201bcf30df5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a0da5b9-40da-4780-8b98-685f75670811" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11835" + ], + "x-ms-request-id": [ + "8677e716-bc24-45ff-a5ab-437940f04a50" + ], + "x-ms-correlation-request-id": [ + "8677e716-bc24-45ff-a5ab-437940f04a50" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201021Z:8677e716-bc24-45ff-a5ab-437940f04a50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d564564-97ea-4c91-84fa-0b519d0fb725" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11833" + ], + "x-ms-request-id": [ + "11967c11-eb57-4a66-9793-dafbdc408efa" + ], + "x-ms-correlation-request-id": [ + "11967c11-eb57-4a66-9793-dafbdc408efa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201021Z:11967c11-eb57-4a66-9793-dafbdc408efa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4029edc5-1ae9-4050-b238-0509cb4e4a53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11831" + ], + "x-ms-request-id": [ + "76b4ef7a-63a6-4098-b6ef-6f44f0af9874" + ], + "x-ms-correlation-request-id": [ + "76b4ef7a-63a6-4098-b6ef-6f44f0af9874" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201021Z:76b4ef7a-63a6-4098-b6ef-6f44f0af9874" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b2a67f8-3dff-4daf-bc4c-ff0fe709092f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11829" + ], + "x-ms-request-id": [ + "30e14546-9577-4ea0-9332-73892407e8b1" + ], + "x-ms-correlation-request-id": [ + "30e14546-9577-4ea0-9332-73892407e8b1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201022Z:30e14546-9577-4ea0-9332-73892407e8b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "166ee4a2-8778-471a-8e70-174cbd3c4fbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11827" + ], + "x-ms-request-id": [ + "951df6b4-965d-4de9-ba4f-755f6daf9275" + ], + "x-ms-correlation-request-id": [ + "951df6b4-965d-4de9-ba4f-755f6daf9275" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201022Z:951df6b4-965d-4de9-ba4f-755f6daf9275" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ada1bd8-a79d-4582-a9d1-a6a8cb213425" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11825" + ], + "x-ms-request-id": [ + "c864afbf-7bc7-458c-b107-e984001718f9" + ], + "x-ms-correlation-request-id": [ + "c864afbf-7bc7-458c-b107-e984001718f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201022Z:c864afbf-7bc7-458c-b107-e984001718f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5c6146c-169e-4ad8-843e-0e7fba2ddd2d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11823" + ], + "x-ms-request-id": [ + "16f7b1e2-d72c-4b26-b8c5-8595bfa1a2f1" + ], + "x-ms-correlation-request-id": [ + "16f7b1e2-d72c-4b26-b8c5-8595bfa1a2f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201022Z:16f7b1e2-d72c-4b26-b8c5-8595bfa1a2f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3eb10ee8-f5e9-4e32-ba19-6bba4ad24314" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11821" + ], + "x-ms-request-id": [ + "fed25cad-1193-4ae5-8a45-0ba901c10bb9" + ], + "x-ms-correlation-request-id": [ + "fed25cad-1193-4ae5-8a45-0ba901c10bb9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201023Z:fed25cad-1193-4ae5-8a45-0ba901c10bb9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29f74737-2f8b-41ff-ae8b-824e18982394" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11819" + ], + "x-ms-request-id": [ + "424366dc-2d84-49cd-8080-4e3102ba3a58" + ], + "x-ms-correlation-request-id": [ + "424366dc-2d84-49cd-8080-4e3102ba3a58" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201023Z:424366dc-2d84-49cd-8080-4e3102ba3a58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39269da2-1b68-40c6-9064-8524d09eb69d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11817" + ], + "x-ms-request-id": [ + "ae4b3325-944d-4afe-a9b1-17e9213e1f2c" + ], + "x-ms-correlation-request-id": [ + "ae4b3325-944d-4afe-a9b1-17e9213e1f2c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201023Z:ae4b3325-944d-4afe-a9b1-17e9213e1f2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d801cb46-c391-4b95-8635-b0fb2403a7fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11815" + ], + "x-ms-request-id": [ + "101a576f-491b-47cb-89d0-7270c65b18a8" + ], + "x-ms-correlation-request-id": [ + "101a576f-491b-47cb-89d0-7270c65b18a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201024Z:101a576f-491b-47cb-89d0-7270c65b18a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d8fb307-40b4-423c-991d-7da3381450f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11813" + ], + "x-ms-request-id": [ + "83a955fd-7aeb-4cc0-ba2f-ec408e0bb1c1" + ], + "x-ms-correlation-request-id": [ + "83a955fd-7aeb-4cc0-ba2f-ec408e0bb1c1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201024Z:83a955fd-7aeb-4cc0-ba2f-ec408e0bb1c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97126b5a-3ba8-4d5e-a7e6-3fcdd7aefced" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11811" + ], + "x-ms-request-id": [ + "f7f53272-1a40-4f5f-8f59-4b207f144d9d" + ], + "x-ms-correlation-request-id": [ + "f7f53272-1a40-4f5f-8f59-4b207f144d9d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201024Z:f7f53272-1a40-4f5f-8f59-4b207f144d9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e076aac2-5d76-438c-9ac2-a02bea964783" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11809" + ], + "x-ms-request-id": [ + "534d6b8d-749e-4352-98a7-57ab9d636a69" + ], + "x-ms-correlation-request-id": [ + "534d6b8d-749e-4352-98a7-57ab9d636a69" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201024Z:534d6b8d-749e-4352-98a7-57ab9d636a69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "904d76c1-5554-423c-ad4c-ea65c18662cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11807" + ], + "x-ms-request-id": [ + "a313cf5a-11d6-4709-bf00-27957b319842" + ], + "x-ms-correlation-request-id": [ + "a313cf5a-11d6-4709-bf00-27957b319842" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201025Z:a313cf5a-11d6-4709-bf00-27957b319842" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "761e868e-4534-4e8d-ad48-86a0af986ebd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11805" + ], + "x-ms-request-id": [ + "0730a042-5cbd-4885-8580-a5959a539573" + ], + "x-ms-correlation-request-id": [ + "0730a042-5cbd-4885-8580-a5959a539573" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201025Z:0730a042-5cbd-4885-8580-a5959a539573" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d52ee76c-d275-412d-9e85-66bc5df2a9cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11803" + ], + "x-ms-request-id": [ + "a5b8b410-8d13-48fe-b405-607318c6bc5c" + ], + "x-ms-correlation-request-id": [ + "a5b8b410-8d13-48fe-b405-607318c6bc5c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201025Z:a5b8b410-8d13-48fe-b405-607318c6bc5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0311ba81-1e51-48e6-9686-ff1a7f97ad78" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11801" + ], + "x-ms-request-id": [ + "07f74c93-f431-4b9f-8544-cd795d012a00" + ], + "x-ms-correlation-request-id": [ + "07f74c93-f431-4b9f-8544-cd795d012a00" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201025Z:07f74c93-f431-4b9f-8544-cd795d012a00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "390dbfa7-3eb3-4e3e-b0d2-ff61e793af63" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11799" + ], + "x-ms-request-id": [ + "c02876e7-bafa-404c-ac64-5c25bbce51aa" + ], + "x-ms-correlation-request-id": [ + "c02876e7-bafa-404c-ac64-5c25bbce51aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201026Z:c02876e7-bafa-404c-ac64-5c25bbce51aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "628b3e3d-421a-4955-bb9b-49c314e61445" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11797" + ], + "x-ms-request-id": [ + "f29c6301-2dcd-4973-9af4-7b5f5f09e0e8" + ], + "x-ms-correlation-request-id": [ + "f29c6301-2dcd-4973-9af4-7b5f5f09e0e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201026Z:f29c6301-2dcd-4973-9af4-7b5f5f09e0e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f42074a-8ac0-4d55-8586-599344ff6aa5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11795" + ], + "x-ms-request-id": [ + "6d63f172-a718-4be4-b1d2-f5a0eda23c1e" + ], + "x-ms-correlation-request-id": [ + "6d63f172-a718-4be4-b1d2-f5a0eda23c1e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201026Z:6d63f172-a718-4be4-b1d2-f5a0eda23c1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23328990-1742-44e1-8fcd-c0e30d27b21e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11793" + ], + "x-ms-request-id": [ + "729250b9-06d5-44db-8d58-02e229ae4fac" + ], + "x-ms-correlation-request-id": [ + "729250b9-06d5-44db-8d58-02e229ae4fac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201026Z:729250b9-06d5-44db-8d58-02e229ae4fac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "680bd45a-3218-46ce-99a2-c108336bf8a6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11791" + ], + "x-ms-request-id": [ + "a237618a-ce65-423e-bd74-cb2de605ca16" + ], + "x-ms-correlation-request-id": [ + "a237618a-ce65-423e-bd74-cb2de605ca16" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201027Z:a237618a-ce65-423e-bd74-cb2de605ca16" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c5955b9-f7e2-4cdb-b396-5c1ba7b0920f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11789" + ], + "x-ms-request-id": [ + "fe753a93-d39c-470f-aa90-5b57cfbcd370" + ], + "x-ms-correlation-request-id": [ + "fe753a93-d39c-470f-aa90-5b57cfbcd370" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201027Z:fe753a93-d39c-470f-aa90-5b57cfbcd370" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d33b0b59-ce6f-4691-9520-6cfecbb39630" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11787" + ], + "x-ms-request-id": [ + "cbf2d994-dce3-4e2e-abe8-35076406dc6a" + ], + "x-ms-correlation-request-id": [ + "cbf2d994-dce3-4e2e-abe8-35076406dc6a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201027Z:cbf2d994-dce3-4e2e-abe8-35076406dc6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66fc7d49-ee63-4450-9a31-a2de8226c4d1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11785" + ], + "x-ms-request-id": [ + "54970700-b66c-45ec-ab9b-6f7bd1677d4a" + ], + "x-ms-correlation-request-id": [ + "54970700-b66c-45ec-ab9b-6f7bd1677d4a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201027Z:54970700-b66c-45ec-ab9b-6f7bd1677d4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69110501-4aca-4521-922d-5ee9922c0ffa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11783" + ], + "x-ms-request-id": [ + "546e0b5e-8ea7-4074-b51d-6c7bda3f0e40" + ], + "x-ms-correlation-request-id": [ + "546e0b5e-8ea7-4074-b51d-6c7bda3f0e40" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201028Z:546e0b5e-8ea7-4074-b51d-6c7bda3f0e40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77fb408b-343c-45ed-b3f7-a10e27577ebf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11781" + ], + "x-ms-request-id": [ + "36a7a150-c84c-4dc7-9e37-7889fa66bfff" + ], + "x-ms-correlation-request-id": [ + "36a7a150-c84c-4dc7-9e37-7889fa66bfff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201028Z:36a7a150-c84c-4dc7-9e37-7889fa66bfff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6e345a7d-f30a-48f5-9dbb-5a3d05f04180" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11779" + ], + "x-ms-request-id": [ + "54119e9a-11f2-4502-9d8d-ba0dae55d76e" + ], + "x-ms-correlation-request-id": [ + "54119e9a-11f2-4502-9d8d-ba0dae55d76e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201028Z:54119e9a-11f2-4502-9d8d-ba0dae55d76e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c51d482-fa60-4e61-a6a3-bce62c52593d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11777" + ], + "x-ms-request-id": [ + "8e12dd46-8b01-444c-9b52-9deafab4b4f9" + ], + "x-ms-correlation-request-id": [ + "8e12dd46-8b01-444c-9b52-9deafab4b4f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201029Z:8e12dd46-8b01-444c-9b52-9deafab4b4f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db14891b-88f6-4192-ae04-05e8baad0f86" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11775" + ], + "x-ms-request-id": [ + "ee90f44a-8944-410a-87cb-50b29813396d" + ], + "x-ms-correlation-request-id": [ + "ee90f44a-8944-410a-87cb-50b29813396d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201029Z:ee90f44a-8944-410a-87cb-50b29813396d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6d1c12b-7a45-4068-80e3-4f5421827ab9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11773" + ], + "x-ms-request-id": [ + "a69ed991-8263-4d6d-93eb-ca4efc9daa7f" + ], + "x-ms-correlation-request-id": [ + "a69ed991-8263-4d6d-93eb-ca4efc9daa7f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201029Z:a69ed991-8263-4d6d-93eb-ca4efc9daa7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ec34053-24a3-489c-8b6e-d0f12a8b8267" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11771" + ], + "x-ms-request-id": [ + "6924bdc5-34b1-488b-a123-bf0dad1a9625" + ], + "x-ms-correlation-request-id": [ + "6924bdc5-34b1-488b-a123-bf0dad1a9625" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201029Z:6924bdc5-34b1-488b-a123-bf0dad1a9625" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71812660-b752-4868-b7c6-8235c17b1c59" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11769" + ], + "x-ms-request-id": [ + "aa91c870-a6d6-477f-89c6-0c7e4c2e95c9" + ], + "x-ms-correlation-request-id": [ + "aa91c870-a6d6-477f-89c6-0c7e4c2e95c9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201030Z:aa91c870-a6d6-477f-89c6-0c7e4c2e95c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3dc0499a-da57-4ebd-97f7-51bcee0614c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11767" + ], + "x-ms-request-id": [ + "cfbdf0aa-470c-4c59-8df1-6af8a53f8323" + ], + "x-ms-correlation-request-id": [ + "cfbdf0aa-470c-4c59-8df1-6af8a53f8323" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201030Z:cfbdf0aa-470c-4c59-8df1-6af8a53f8323" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb816d4c-2101-42a4-a980-815c2d4136c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11765" + ], + "x-ms-request-id": [ + "0d262d9c-f914-4c27-a634-489499041811" + ], + "x-ms-correlation-request-id": [ + "0d262d9c-f914-4c27-a634-489499041811" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201030Z:0d262d9c-f914-4c27-a634-489499041811" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c69c61a6-da70-49cb-b386-9fea8213fc5e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11763" + ], + "x-ms-request-id": [ + "e880bc8c-cdac-4c0b-9b4b-204d91743385" + ], + "x-ms-correlation-request-id": [ + "e880bc8c-cdac-4c0b-9b4b-204d91743385" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201030Z:e880bc8c-cdac-4c0b-9b4b-204d91743385" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed1614d5-3c0c-4d6c-b037-344c178be69c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11761" + ], + "x-ms-request-id": [ + "e5b59bca-bf47-4e4d-a376-08a6e97c75b9" + ], + "x-ms-correlation-request-id": [ + "e5b59bca-bf47-4e4d-a376-08a6e97c75b9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201031Z:e5b59bca-bf47-4e4d-a376-08a6e97c75b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2563eb4-c408-496f-bcaa-37a60ff1f0c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11759" + ], + "x-ms-request-id": [ + "2fe4ba42-dbdc-45c7-8ae3-bdb8610d1132" + ], + "x-ms-correlation-request-id": [ + "2fe4ba42-dbdc-45c7-8ae3-bdb8610d1132" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201031Z:2fe4ba42-dbdc-45c7-8ae3-bdb8610d1132" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b43c041-257c-4e17-8074-7ab42234927f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11757" + ], + "x-ms-request-id": [ + "2e6df84a-a602-4be4-be94-5b31710087f9" + ], + "x-ms-correlation-request-id": [ + "2e6df84a-a602-4be4-be94-5b31710087f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201031Z:2e6df84a-a602-4be4-be94-5b31710087f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f8e2814-1242-4993-9928-d0f1e687f6e6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11755" + ], + "x-ms-request-id": [ + "2de6fc9b-3df0-4caa-9eb0-1a398f180982" + ], + "x-ms-correlation-request-id": [ + "2de6fc9b-3df0-4caa-9eb0-1a398f180982" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201031Z:2de6fc9b-3df0-4caa-9eb0-1a398f180982" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a031198-a362-4235-8aa0-492c28ea9b05" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11753" + ], + "x-ms-request-id": [ + "7eccd0ff-dffc-4a45-b044-508fef81926e" + ], + "x-ms-correlation-request-id": [ + "7eccd0ff-dffc-4a45-b044-508fef81926e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201032Z:7eccd0ff-dffc-4a45-b044-508fef81926e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b3f19963-b875-4b38-be9a-d0c699c5da6e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11751" + ], + "x-ms-request-id": [ + "3b7f65ed-d287-48a4-9cea-eae871a83e88" + ], + "x-ms-correlation-request-id": [ + "3b7f65ed-d287-48a4-9cea-eae871a83e88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201032Z:3b7f65ed-d287-48a4-9cea-eae871a83e88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a770513-bb77-45a4-a330-bb56bbda80c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11749" + ], + "x-ms-request-id": [ + "684b799b-c679-4c2e-87f0-d6eb9b14085f" + ], + "x-ms-correlation-request-id": [ + "684b799b-c679-4c2e-87f0-d6eb9b14085f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201032Z:684b799b-c679-4c2e-87f0-d6eb9b14085f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc77c780-7b82-447d-9306-67f30dfd0b72" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11747" + ], + "x-ms-request-id": [ + "0d4cb51f-b455-4e52-ac44-acbb839c7801" + ], + "x-ms-correlation-request-id": [ + "0d4cb51f-b455-4e52-ac44-acbb839c7801" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201032Z:0d4cb51f-b455-4e52-ac44-acbb839c7801" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88150b50-ab4a-4ede-9139-ac3c99bae053" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11745" + ], + "x-ms-request-id": [ + "29cfe63b-b2e4-47c8-a57e-6da7210c328e" + ], + "x-ms-correlation-request-id": [ + "29cfe63b-b2e4-47c8-a57e-6da7210c328e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201033Z:29cfe63b-b2e4-47c8-a57e-6da7210c328e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85d6ed24-3031-4396-bc3b-0aa5d8f39b36" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11743" + ], + "x-ms-request-id": [ + "f9c11ccf-d668-4d38-83cd-e7ed7601681f" + ], + "x-ms-correlation-request-id": [ + "f9c11ccf-d668-4d38-83cd-e7ed7601681f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201033Z:f9c11ccf-d668-4d38-83cd-e7ed7601681f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "451ac3b3-67a5-4c31-80ad-253640277d83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11741" + ], + "x-ms-request-id": [ + "e3ee504e-d1ad-40bf-a999-d6f4290f59be" + ], + "x-ms-correlation-request-id": [ + "e3ee504e-d1ad-40bf-a999-d6f4290f59be" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201033Z:e3ee504e-d1ad-40bf-a999-d6f4290f59be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0258f4ce-70b6-401b-b56a-e83895560782" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11739" + ], + "x-ms-request-id": [ + "b2242eaf-4e11-4b60-ace0-6fa8d7eb89a7" + ], + "x-ms-correlation-request-id": [ + "b2242eaf-4e11-4b60-ace0-6fa8d7eb89a7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201033Z:b2242eaf-4e11-4b60-ace0-6fa8d7eb89a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f9b09e6-8eee-43fb-92a9-8d6bf1abcb4b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11737" + ], + "x-ms-request-id": [ + "98396334-a438-45d2-a9db-61287fc5d108" + ], + "x-ms-correlation-request-id": [ + "98396334-a438-45d2-a9db-61287fc5d108" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201034Z:98396334-a438-45d2-a9db-61287fc5d108" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd3a8e76-72d2-41c2-93f2-1e4a28f7a6cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11735" + ], + "x-ms-request-id": [ + "578db9ee-3501-41c2-9d21-d98835dcd184" + ], + "x-ms-correlation-request-id": [ + "578db9ee-3501-41c2-9d21-d98835dcd184" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201034Z:578db9ee-3501-41c2-9d21-d98835dcd184" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d44a9e7-ef48-4f4d-b8ff-420acef7ee02" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11733" + ], + "x-ms-request-id": [ + "e44de45a-efc5-4aaf-8600-5891eb2146e4" + ], + "x-ms-correlation-request-id": [ + "e44de45a-efc5-4aaf-8600-5891eb2146e4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201034Z:e44de45a-efc5-4aaf-8600-5891eb2146e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8397478-8894-4b89-a622-c76c8053f34f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11731" + ], + "x-ms-request-id": [ + "59ec72f9-1f14-41c9-985d-e7a6a812f49e" + ], + "x-ms-correlation-request-id": [ + "59ec72f9-1f14-41c9-985d-e7a6a812f49e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201035Z:59ec72f9-1f14-41c9-985d-e7a6a812f49e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8322dd9e-03ae-4dd6-8753-de18a4686890" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11729" + ], + "x-ms-request-id": [ + "b440a6a3-b666-4572-a57a-1271f1ceaf42" + ], + "x-ms-correlation-request-id": [ + "b440a6a3-b666-4572-a57a-1271f1ceaf42" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201035Z:b440a6a3-b666-4572-a57a-1271f1ceaf42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "233ebbac-2e0d-4ba2-95fa-30163834b24d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11727" + ], + "x-ms-request-id": [ + "fbf18bdd-9d8e-4a11-b708-013f8d05efae" + ], + "x-ms-correlation-request-id": [ + "fbf18bdd-9d8e-4a11-b708-013f8d05efae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201035Z:fbf18bdd-9d8e-4a11-b708-013f8d05efae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b2ff37b-648a-4db9-b5d3-9f5b5b023bdc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11725" + ], + "x-ms-request-id": [ + "8d25e99a-1b89-4dbc-b8db-b80baedc8d3c" + ], + "x-ms-correlation-request-id": [ + "8d25e99a-1b89-4dbc-b8db-b80baedc8d3c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201035Z:8d25e99a-1b89-4dbc-b8db-b80baedc8d3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "521cbd11-d694-4005-a4c6-f25e05ad5d93" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11723" + ], + "x-ms-request-id": [ + "e40e6276-7660-4136-b864-5b6c6afdc9a8" + ], + "x-ms-correlation-request-id": [ + "e40e6276-7660-4136-b864-5b6c6afdc9a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201036Z:e40e6276-7660-4136-b864-5b6c6afdc9a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d441efb-b84d-4403-a509-6eece684a375" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11721" + ], + "x-ms-request-id": [ + "bddf6b9a-818d-448e-af9a-e4dd0f7f11fb" + ], + "x-ms-correlation-request-id": [ + "bddf6b9a-818d-448e-af9a-e4dd0f7f11fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201036Z:bddf6b9a-818d-448e-af9a-e4dd0f7f11fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a85b63b6-1f42-4f6b-b647-570dbe3bd55d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11719" + ], + "x-ms-request-id": [ + "9f04bc58-ccb0-4c40-b6c6-62ddadd4ac76" + ], + "x-ms-correlation-request-id": [ + "9f04bc58-ccb0-4c40-b6c6-62ddadd4ac76" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201036Z:9f04bc58-ccb0-4c40-b6c6-62ddadd4ac76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff8f483a-6009-4797-9a6c-1c6e6c1673ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11717" + ], + "x-ms-request-id": [ + "20ae7425-fb7e-4157-9073-a21048cd52f4" + ], + "x-ms-correlation-request-id": [ + "20ae7425-fb7e-4157-9073-a21048cd52f4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201036Z:20ae7425-fb7e-4157-9073-a21048cd52f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "187f99a3-eefd-410d-b76b-42ec1c514dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11715" + ], + "x-ms-request-id": [ + "367c6a09-7491-4075-aeb4-4e1f12782b45" + ], + "x-ms-correlation-request-id": [ + "367c6a09-7491-4075-aeb4-4e1f12782b45" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201037Z:367c6a09-7491-4075-aeb4-4e1f12782b45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2eb77d45-53a5-41c8-b295-b3ab6ae652bb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11713" + ], + "x-ms-request-id": [ + "1f180e92-fca1-44d5-a0a3-a9b98041fe51" + ], + "x-ms-correlation-request-id": [ + "1f180e92-fca1-44d5-a0a3-a9b98041fe51" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201037Z:1f180e92-fca1-44d5-a0a3-a9b98041fe51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "418a904c-cb12-4dff-9611-5250bee8659c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11711" + ], + "x-ms-request-id": [ + "2789fde4-7850-4819-ade2-92fa26a70ff5" + ], + "x-ms-correlation-request-id": [ + "2789fde4-7850-4819-ade2-92fa26a70ff5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201037Z:2789fde4-7850-4819-ade2-92fa26a70ff5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26ff00e0-397c-4335-af08-531a705125fc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11709" + ], + "x-ms-request-id": [ + "3c4af106-84c3-4568-9f92-c19178ae360f" + ], + "x-ms-correlation-request-id": [ + "3c4af106-84c3-4568-9f92-c19178ae360f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201038Z:3c4af106-84c3-4568-9f92-c19178ae360f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "285020cb-da25-48ff-909b-0b8237962eef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11707" + ], + "x-ms-request-id": [ + "7cecae6b-70e2-44c7-b437-3433575e88b6" + ], + "x-ms-correlation-request-id": [ + "7cecae6b-70e2-44c7-b437-3433575e88b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201038Z:7cecae6b-70e2-44c7-b437-3433575e88b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "512e3dca-49e5-43c3-8b74-58fb1bd32c65" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11705" + ], + "x-ms-request-id": [ + "3b1321c9-fe20-49b0-9661-f67f3a08685e" + ], + "x-ms-correlation-request-id": [ + "3b1321c9-fe20-49b0-9661-f67f3a08685e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201038Z:3b1321c9-fe20-49b0-9661-f67f3a08685e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0dd680b1-b03b-47b8-ab32-831409256f8b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11703" + ], + "x-ms-request-id": [ + "f5bee375-9375-4d3d-a591-b015b0d7cfa6" + ], + "x-ms-correlation-request-id": [ + "f5bee375-9375-4d3d-a591-b015b0d7cfa6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201038Z:f5bee375-9375-4d3d-a591-b015b0d7cfa6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1600e43-7501-41b5-afb6-592ed0f31682" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11701" + ], + "x-ms-request-id": [ + "6a8971f0-6eac-41b2-81c5-51295010e304" + ], + "x-ms-correlation-request-id": [ + "6a8971f0-6eac-41b2-81c5-51295010e304" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201039Z:6a8971f0-6eac-41b2-81c5-51295010e304" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f600bcba-5b6e-4a01-be79-7d252212c604" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11699" + ], + "x-ms-request-id": [ + "f297345c-78c3-4a93-994b-0f3110e1d73b" + ], + "x-ms-correlation-request-id": [ + "f297345c-78c3-4a93-994b-0f3110e1d73b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201039Z:f297345c-78c3-4a93-994b-0f3110e1d73b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf5938a5-7e64-4943-9c08-dd9905200043" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11697" + ], + "x-ms-request-id": [ + "e806900e-fe43-42ad-9691-2165c514477d" + ], + "x-ms-correlation-request-id": [ + "e806900e-fe43-42ad-9691-2165c514477d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201039Z:e806900e-fe43-42ad-9691-2165c514477d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dcdda3c9-43fb-4612-8a2b-63114940daa9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11695" + ], + "x-ms-request-id": [ + "d8bfe1b3-1568-4da1-997c-060a1f57a161" + ], + "x-ms-correlation-request-id": [ + "d8bfe1b3-1568-4da1-997c-060a1f57a161" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201040Z:d8bfe1b3-1568-4da1-997c-060a1f57a161" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1cf8545-2a2d-4565-ac2c-998c00232339" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11693" + ], + "x-ms-request-id": [ + "ab838f12-2925-44f6-a523-ca49568de4fd" + ], + "x-ms-correlation-request-id": [ + "ab838f12-2925-44f6-a523-ca49568de4fd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201040Z:ab838f12-2925-44f6-a523-ca49568de4fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "352e9d4e-26bf-4563-94d4-3922843f58f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11691" + ], + "x-ms-request-id": [ + "77fe51f2-539b-469e-b358-5f644da53ebb" + ], + "x-ms-correlation-request-id": [ + "77fe51f2-539b-469e-b358-5f644da53ebb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201040Z:77fe51f2-539b-469e-b358-5f644da53ebb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1464d2bf-8daf-4e7a-b0ee-14c573e89f1d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11689" + ], + "x-ms-request-id": [ + "89541044-252e-4a59-976c-6b71b3d689f0" + ], + "x-ms-correlation-request-id": [ + "89541044-252e-4a59-976c-6b71b3d689f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201040Z:89541044-252e-4a59-976c-6b71b3d689f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38a0b2c5-4563-4508-9cb2-96779510b6d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11687" + ], + "x-ms-request-id": [ + "3d761132-dcbf-4f4c-bd17-9950d93732e9" + ], + "x-ms-correlation-request-id": [ + "3d761132-dcbf-4f4c-bd17-9950d93732e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201041Z:3d761132-dcbf-4f4c-bd17-9950d93732e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ac9b749-b121-43c2-b659-ff9fca5e723e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11685" + ], + "x-ms-request-id": [ + "2bb73156-fb5b-4db5-ae19-3a5029cbac1f" + ], + "x-ms-correlation-request-id": [ + "2bb73156-fb5b-4db5-ae19-3a5029cbac1f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201041Z:2bb73156-fb5b-4db5-ae19-3a5029cbac1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad44596c-caf2-4cfa-9a9c-e0cf7f9b2bcc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11683" + ], + "x-ms-request-id": [ + "38f488a7-f8be-4799-833e-9a3e871e2b93" + ], + "x-ms-correlation-request-id": [ + "38f488a7-f8be-4799-833e-9a3e871e2b93" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201041Z:38f488a7-f8be-4799-833e-9a3e871e2b93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "942bbaa0-6fbe-403b-b2c9-a928d4a8217d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11681" + ], + "x-ms-request-id": [ + "03246d58-3840-4325-a59c-2eebf0fd4522" + ], + "x-ms-correlation-request-id": [ + "03246d58-3840-4325-a59c-2eebf0fd4522" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201041Z:03246d58-3840-4325-a59c-2eebf0fd4522" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab14764a-99ab-48d3-82c7-308a62fa7415" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11679" + ], + "x-ms-request-id": [ + "482b9c68-e532-4341-a237-72f5f915f20f" + ], + "x-ms-correlation-request-id": [ + "482b9c68-e532-4341-a237-72f5f915f20f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201042Z:482b9c68-e532-4341-a237-72f5f915f20f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4a8a87f-f671-4542-9105-0ea9d17faf5d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11677" + ], + "x-ms-request-id": [ + "95418cf4-0882-4f13-9b5d-b7587f2e9b36" + ], + "x-ms-correlation-request-id": [ + "95418cf4-0882-4f13-9b5d-b7587f2e9b36" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201042Z:95418cf4-0882-4f13-9b5d-b7587f2e9b36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d49df27-7146-4473-8bbf-8c394d41b8f2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11675" + ], + "x-ms-request-id": [ + "9cdc40d5-6ce9-443a-a34e-a5bfd5462020" + ], + "x-ms-correlation-request-id": [ + "9cdc40d5-6ce9-443a-a34e-a5bfd5462020" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201042Z:9cdc40d5-6ce9-443a-a34e-a5bfd5462020" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "60cb46ac-587c-48c4-9577-2c4e0e0d99d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11673" + ], + "x-ms-request-id": [ + "921bb374-686c-426e-82de-28072e499569" + ], + "x-ms-correlation-request-id": [ + "921bb374-686c-426e-82de-28072e499569" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201042Z:921bb374-686c-426e-82de-28072e499569" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7e81277-3b00-4bdd-a3b9-978008003f44" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11671" + ], + "x-ms-request-id": [ + "2280520e-6c8a-4bbf-9983-5ae12868a213" + ], + "x-ms-correlation-request-id": [ + "2280520e-6c8a-4bbf-9983-5ae12868a213" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201043Z:2280520e-6c8a-4bbf-9983-5ae12868a213" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36820972-280c-40ed-aafb-cec1db15c5f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11669" + ], + "x-ms-request-id": [ + "4ba89125-a8f2-4bc8-bd94-1574bcaa55b7" + ], + "x-ms-correlation-request-id": [ + "4ba89125-a8f2-4bc8-bd94-1574bcaa55b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201043Z:4ba89125-a8f2-4bc8-bd94-1574bcaa55b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c17a7ce3-3b44-4e5a-ad58-239d3c783b1c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11667" + ], + "x-ms-request-id": [ + "e3ece98d-69e9-413b-a035-378bdae189dd" + ], + "x-ms-correlation-request-id": [ + "e3ece98d-69e9-413b-a035-378bdae189dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201043Z:e3ece98d-69e9-413b-a035-378bdae189dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccdabc19-d508-4c69-bb31-0f0c778974db" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11665" + ], + "x-ms-request-id": [ + "a995065d-67b8-483a-960f-ae37805e6982" + ], + "x-ms-correlation-request-id": [ + "a995065d-67b8-483a-960f-ae37805e6982" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201043Z:a995065d-67b8-483a-960f-ae37805e6982" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29862147-a82d-4acc-a33e-68e2e089ee6a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11663" + ], + "x-ms-request-id": [ + "a91de434-c263-440b-83b7-e274bab40574" + ], + "x-ms-correlation-request-id": [ + "a91de434-c263-440b-83b7-e274bab40574" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201044Z:a91de434-c263-440b-83b7-e274bab40574" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec90f73a-5b63-4d55-afc3-a9457f33346b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11661" + ], + "x-ms-request-id": [ + "aa7dbc5a-8b75-421a-8f9c-e57cb4fd76f4" + ], + "x-ms-correlation-request-id": [ + "aa7dbc5a-8b75-421a-8f9c-e57cb4fd76f4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201044Z:aa7dbc5a-8b75-421a-8f9c-e57cb4fd76f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7152302-06e7-4ccd-aebb-8e421bb41714" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11659" + ], + "x-ms-request-id": [ + "ff80d3a8-8f4e-415f-9f45-70cf76a1cc14" + ], + "x-ms-correlation-request-id": [ + "ff80d3a8-8f4e-415f-9f45-70cf76a1cc14" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201044Z:ff80d3a8-8f4e-415f-9f45-70cf76a1cc14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc9f28be-7243-4352-8717-7eaf69197750" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11657" + ], + "x-ms-request-id": [ + "56e78102-0c3f-4d0a-be30-4b4df341ce8b" + ], + "x-ms-correlation-request-id": [ + "56e78102-0c3f-4d0a-be30-4b4df341ce8b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201044Z:56e78102-0c3f-4d0a-be30-4b4df341ce8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33f7703e-6774-4516-9bf2-fb7be757c55c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11655" + ], + "x-ms-request-id": [ + "d65643b4-a907-4a52-8252-57e73fe02bef" + ], + "x-ms-correlation-request-id": [ + "d65643b4-a907-4a52-8252-57e73fe02bef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201045Z:d65643b4-a907-4a52-8252-57e73fe02bef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53edeab2-d4b2-4efe-91b4-898b9fdd8bd9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11653" + ], + "x-ms-request-id": [ + "5f2028f6-677d-4c5e-8ea2-3ee8c52dd062" + ], + "x-ms-correlation-request-id": [ + "5f2028f6-677d-4c5e-8ea2-3ee8c52dd062" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201045Z:5f2028f6-677d-4c5e-8ea2-3ee8c52dd062" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d2bdfd2-97ed-4e10-848a-f5178dda9d06" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11651" + ], + "x-ms-request-id": [ + "7d64ac24-8bde-4b36-a794-69baab582486" + ], + "x-ms-correlation-request-id": [ + "7d64ac24-8bde-4b36-a794-69baab582486" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201045Z:7d64ac24-8bde-4b36-a794-69baab582486" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec1c9be4-65a7-4fb0-b843-f3db4d8a8772" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11649" + ], + "x-ms-request-id": [ + "c6d3620e-26be-4432-9589-4b421232c4c7" + ], + "x-ms-correlation-request-id": [ + "c6d3620e-26be-4432-9589-4b421232c4c7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201046Z:c6d3620e-26be-4432-9589-4b421232c4c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1aeb937-3a5f-4606-893e-4150fa45a3a2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11647" + ], + "x-ms-request-id": [ + "23ae0330-ce0f-4a8a-824f-62d537fed61a" + ], + "x-ms-correlation-request-id": [ + "23ae0330-ce0f-4a8a-824f-62d537fed61a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201046Z:23ae0330-ce0f-4a8a-824f-62d537fed61a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f757ca60-ae3a-412b-81f0-54ba5fe55d71" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11645" + ], + "x-ms-request-id": [ + "173a485d-98b5-49c7-b127-035180528f50" + ], + "x-ms-correlation-request-id": [ + "173a485d-98b5-49c7-b127-035180528f50" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201046Z:173a485d-98b5-49c7-b127-035180528f50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8562201a-fc14-474a-b6fb-2e4f487cc10e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11643" + ], + "x-ms-request-id": [ + "92c0644c-cfb6-4bd7-b97b-3983f6fdbe88" + ], + "x-ms-correlation-request-id": [ + "92c0644c-cfb6-4bd7-b97b-3983f6fdbe88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201046Z:92c0644c-cfb6-4bd7-b97b-3983f6fdbe88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6147c5c-95d7-4ac3-86f5-cf88276fce24" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11641" + ], + "x-ms-request-id": [ + "dc7fc5ee-561e-4184-a2f0-fa23ea8ac2e1" + ], + "x-ms-correlation-request-id": [ + "dc7fc5ee-561e-4184-a2f0-fa23ea8ac2e1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201047Z:dc7fc5ee-561e-4184-a2f0-fa23ea8ac2e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d141314-cf9f-4e3e-96f5-7b2fb46b0666" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11639" + ], + "x-ms-request-id": [ + "4f9fbdde-e17b-40ca-a568-f149598da714" + ], + "x-ms-correlation-request-id": [ + "4f9fbdde-e17b-40ca-a568-f149598da714" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201047Z:4f9fbdde-e17b-40ca-a568-f149598da714" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50f9fbdc-64de-4edb-a16c-9e977852614f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11637" + ], + "x-ms-request-id": [ + "6899ebbc-d8a6-42a3-bde0-400acd8ac4a6" + ], + "x-ms-correlation-request-id": [ + "6899ebbc-d8a6-42a3-bde0-400acd8ac4a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201047Z:6899ebbc-d8a6-42a3-bde0-400acd8ac4a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e110a7ec-c341-48a3-83ce-569d21bd9e13" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11635" + ], + "x-ms-request-id": [ + "e5b5b238-7961-4e65-bacb-5417c0e97a0d" + ], + "x-ms-correlation-request-id": [ + "e5b5b238-7961-4e65-bacb-5417c0e97a0d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201047Z:e5b5b238-7961-4e65-bacb-5417c0e97a0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83c91723-dbf5-45c2-9e09-80b0538d67bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11633" + ], + "x-ms-request-id": [ + "ec304b44-a403-42bf-8597-3ed2665c2150" + ], + "x-ms-correlation-request-id": [ + "ec304b44-a403-42bf-8597-3ed2665c2150" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201048Z:ec304b44-a403-42bf-8597-3ed2665c2150" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a51e814-f344-498c-aec8-4f9a25cb50c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11631" + ], + "x-ms-request-id": [ + "6b48db6e-f9be-426f-bef3-ab1a6a9a6ba0" + ], + "x-ms-correlation-request-id": [ + "6b48db6e-f9be-426f-bef3-ab1a6a9a6ba0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201048Z:6b48db6e-f9be-426f-bef3-ab1a6a9a6ba0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f82a2987-0ff1-4bb1-b2ce-0b1c02e4cb26" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11629" + ], + "x-ms-request-id": [ + "2542a606-7fa7-47a2-9563-eb7440066987" + ], + "x-ms-correlation-request-id": [ + "2542a606-7fa7-47a2-9563-eb7440066987" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201048Z:2542a606-7fa7-47a2-9563-eb7440066987" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b70d9c0-f581-417b-b6f9-0b9958c730d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11627" + ], + "x-ms-request-id": [ + "98da9617-ad3d-40cf-89c2-41b68a612116" + ], + "x-ms-correlation-request-id": [ + "98da9617-ad3d-40cf-89c2-41b68a612116" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201048Z:98da9617-ad3d-40cf-89c2-41b68a612116" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7cadebd-d295-49c5-afad-1fadc62b6a79" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11625" + ], + "x-ms-request-id": [ + "3f7296b5-db85-45df-a9d0-d38cbcb081f9" + ], + "x-ms-correlation-request-id": [ + "3f7296b5-db85-45df-a9d0-d38cbcb081f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201049Z:3f7296b5-db85-45df-a9d0-d38cbcb081f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4cd2c8c9-2318-4c8e-aea5-7ea91ad1bfaa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11623" + ], + "x-ms-request-id": [ + "df59a591-0c07-496e-9630-d45a0bc6cf05" + ], + "x-ms-correlation-request-id": [ + "df59a591-0c07-496e-9630-d45a0bc6cf05" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201049Z:df59a591-0c07-496e-9630-d45a0bc6cf05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69ffdd8a-69bb-4159-af3b-7c18540432ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11621" + ], + "x-ms-request-id": [ + "a00b3dce-b654-4bdd-9822-e08244538216" + ], + "x-ms-correlation-request-id": [ + "a00b3dce-b654-4bdd-9822-e08244538216" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201049Z:a00b3dce-b654-4bdd-9822-e08244538216" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4bd5e3a-ac57-4ec8-afd2-bded039c42a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11619" + ], + "x-ms-request-id": [ + "d25bbafc-cb2b-44c3-a049-61da8a0cd559" + ], + "x-ms-correlation-request-id": [ + "d25bbafc-cb2b-44c3-a049-61da8a0cd559" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201049Z:d25bbafc-cb2b-44c3-a049-61da8a0cd559" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a472dd67-1d1e-4f1e-977a-5140fc36213a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11617" + ], + "x-ms-request-id": [ + "855f3478-ed4f-4f2a-9b41-29a6d36f4ece" + ], + "x-ms-correlation-request-id": [ + "855f3478-ed4f-4f2a-9b41-29a6d36f4ece" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201050Z:855f3478-ed4f-4f2a-9b41-29a6d36f4ece" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e5e9445-a236-4a76-8b27-dc15ce6a9193" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11615" + ], + "x-ms-request-id": [ + "9911c978-b551-44d0-9c9b-283232f20a5c" + ], + "x-ms-correlation-request-id": [ + "9911c978-b551-44d0-9c9b-283232f20a5c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201050Z:9911c978-b551-44d0-9c9b-283232f20a5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "abfa9b3a-f1cd-40e7-96c3-b41f96651080" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11613" + ], + "x-ms-request-id": [ + "0d997d61-30b6-4f59-bedf-9e4170416482" + ], + "x-ms-correlation-request-id": [ + "0d997d61-30b6-4f59-bedf-9e4170416482" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201050Z:0d997d61-30b6-4f59-bedf-9e4170416482" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28d86e2e-d0a0-4580-ab74-90346ed5cb0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11611" + ], + "x-ms-request-id": [ + "e7ebdc1c-835e-4e0f-8b9a-1e4963b80a1b" + ], + "x-ms-correlation-request-id": [ + "e7ebdc1c-835e-4e0f-8b9a-1e4963b80a1b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201050Z:e7ebdc1c-835e-4e0f-8b9a-1e4963b80a1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "425dc566-ddcd-4a9d-ad53-89fe97023a7d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11609" + ], + "x-ms-request-id": [ + "8f1da742-5ceb-438f-b064-c894c2666a01" + ], + "x-ms-correlation-request-id": [ + "8f1da742-5ceb-438f-b064-c894c2666a01" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201051Z:8f1da742-5ceb-438f-b064-c894c2666a01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b9f1c3d-39da-4c49-8c4c-88095df4509c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11607" + ], + "x-ms-request-id": [ + "7c05e062-45ab-44e6-82f2-aa05adf8e1eb" + ], + "x-ms-correlation-request-id": [ + "7c05e062-45ab-44e6-82f2-aa05adf8e1eb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201051Z:7c05e062-45ab-44e6-82f2-aa05adf8e1eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d1dfeee4-9bf8-4e57-ae1f-59bc60ec1549" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11605" + ], + "x-ms-request-id": [ + "ab2b64e0-90e2-43c2-91a8-0e975cab968a" + ], + "x-ms-correlation-request-id": [ + "ab2b64e0-90e2-43c2-91a8-0e975cab968a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201051Z:ab2b64e0-90e2-43c2-91a8-0e975cab968a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e118cedb-bfdf-45d1-9c56-48465828d0a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11603" + ], + "x-ms-request-id": [ + "214bd64b-2af7-448a-8c3d-337af832fab7" + ], + "x-ms-correlation-request-id": [ + "214bd64b-2af7-448a-8c3d-337af832fab7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201052Z:214bd64b-2af7-448a-8c3d-337af832fab7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c5556ac-fe60-4a75-b3c8-c079f55c2301" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11601" + ], + "x-ms-request-id": [ + "6bf1b69b-359f-4218-b837-63c3435da3e3" + ], + "x-ms-correlation-request-id": [ + "6bf1b69b-359f-4218-b837-63c3435da3e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201052Z:6bf1b69b-359f-4218-b837-63c3435da3e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c67b9931-4b1e-4ac7-8964-9d99fbbcdde6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11599" + ], + "x-ms-request-id": [ + "b1151a71-6cd2-450e-aad8-8bdc60cd4efe" + ], + "x-ms-correlation-request-id": [ + "b1151a71-6cd2-450e-aad8-8bdc60cd4efe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201052Z:b1151a71-6cd2-450e-aad8-8bdc60cd4efe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dce74694-3a67-4dc4-a2a0-47c62bb32e53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11597" + ], + "x-ms-request-id": [ + "659adc25-9fb5-4103-a840-8abb9a9537bc" + ], + "x-ms-correlation-request-id": [ + "659adc25-9fb5-4103-a840-8abb9a9537bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201052Z:659adc25-9fb5-4103-a840-8abb9a9537bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7bd1681e-766f-4243-b57d-69e095c8481c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11595" + ], + "x-ms-request-id": [ + "7a046b3d-6ec8-4447-af60-acacc1c28429" + ], + "x-ms-correlation-request-id": [ + "7a046b3d-6ec8-4447-af60-acacc1c28429" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201053Z:7a046b3d-6ec8-4447-af60-acacc1c28429" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7cfbf72-ecd5-40bc-ba16-78447c88e121" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11593" + ], + "x-ms-request-id": [ + "79e2fb59-5692-4e12-8055-659521cf52b9" + ], + "x-ms-correlation-request-id": [ + "79e2fb59-5692-4e12-8055-659521cf52b9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201053Z:79e2fb59-5692-4e12-8055-659521cf52b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e0c641f-a945-4fb9-b0c0-c051b7d75ee1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11591" + ], + "x-ms-request-id": [ + "59a39fd1-d720-4623-be8f-7ad9f30c94e5" + ], + "x-ms-correlation-request-id": [ + "59a39fd1-d720-4623-be8f-7ad9f30c94e5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201053Z:59a39fd1-d720-4623-be8f-7ad9f30c94e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fe28f05-e6d4-43d4-b8a9-6260c14ce7d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11589" + ], + "x-ms-request-id": [ + "2ebc8efe-3508-436b-96e4-2718c93db29b" + ], + "x-ms-correlation-request-id": [ + "2ebc8efe-3508-436b-96e4-2718c93db29b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201053Z:2ebc8efe-3508-436b-96e4-2718c93db29b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45847391-541f-4761-820a-86dbfb766110" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11587" + ], + "x-ms-request-id": [ + "60f4a018-6d7a-4835-9e85-a736c09946b4" + ], + "x-ms-correlation-request-id": [ + "60f4a018-6d7a-4835-9e85-a736c09946b4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201054Z:60f4a018-6d7a-4835-9e85-a736c09946b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7d39e09-709c-407a-88c7-f2c45c476834" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11585" + ], + "x-ms-request-id": [ + "0a611099-b4a3-4a1d-9b8c-af0d822eda2b" + ], + "x-ms-correlation-request-id": [ + "0a611099-b4a3-4a1d-9b8c-af0d822eda2b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201054Z:0a611099-b4a3-4a1d-9b8c-af0d822eda2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bec194f7-6d69-4c6f-8d80-547827548ac3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11583" + ], + "x-ms-request-id": [ + "ea4ac77f-b8c6-4c1d-bed4-b34997d77dbe" + ], + "x-ms-correlation-request-id": [ + "ea4ac77f-b8c6-4c1d-bed4-b34997d77dbe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201054Z:ea4ac77f-b8c6-4c1d-bed4-b34997d77dbe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "323bc0ab-9cc0-49e0-bf58-7a883eb8463f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11581" + ], + "x-ms-request-id": [ + "0728460b-bb0b-4d3c-90fa-1c679c4c6d2c" + ], + "x-ms-correlation-request-id": [ + "0728460b-bb0b-4d3c-90fa-1c679c4c6d2c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201054Z:0728460b-bb0b-4d3c-90fa-1c679c4c6d2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bf81318-1154-4c3e-b2f5-d7f08e79229e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11579" + ], + "x-ms-request-id": [ + "571f83f5-5e75-476a-bdba-840cc2198c1a" + ], + "x-ms-correlation-request-id": [ + "571f83f5-5e75-476a-bdba-840cc2198c1a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201055Z:571f83f5-5e75-476a-bdba-840cc2198c1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca0c364d-b1e0-4e97-b761-0c7a0d0a1d79" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11577" + ], + "x-ms-request-id": [ + "9c091eb7-4ba0-4cf2-ac10-eb9ef1e90dc0" + ], + "x-ms-correlation-request-id": [ + "9c091eb7-4ba0-4cf2-ac10-eb9ef1e90dc0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201055Z:9c091eb7-4ba0-4cf2-ac10-eb9ef1e90dc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "145ba46a-2c1b-4df4-8399-74c914303d87" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11575" + ], + "x-ms-request-id": [ + "4a5e9924-f61a-480d-9ee5-0fb87c3ac054" + ], + "x-ms-correlation-request-id": [ + "4a5e9924-f61a-480d-9ee5-0fb87c3ac054" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201055Z:4a5e9924-f61a-480d-9ee5-0fb87c3ac054" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6afc908-b593-462c-9ed0-898a01b2fb5f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11573" + ], + "x-ms-request-id": [ + "1a6be854-a3a7-461f-a550-b20dd992e74c" + ], + "x-ms-correlation-request-id": [ + "1a6be854-a3a7-461f-a550-b20dd992e74c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201056Z:1a6be854-a3a7-461f-a550-b20dd992e74c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "568c981e-07f3-46d1-b4c5-f2f5eb434f9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11571" + ], + "x-ms-request-id": [ + "070249b0-edad-44f2-8740-9061e44b5d09" + ], + "x-ms-correlation-request-id": [ + "070249b0-edad-44f2-8740-9061e44b5d09" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201056Z:070249b0-edad-44f2-8740-9061e44b5d09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ab89caf-2466-42e9-9725-b21d8c47f5bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11569" + ], + "x-ms-request-id": [ + "8e23f2cf-e8e7-402d-842b-e4762d725296" + ], + "x-ms-correlation-request-id": [ + "8e23f2cf-e8e7-402d-842b-e4762d725296" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201056Z:8e23f2cf-e8e7-402d-842b-e4762d725296" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7f3f5cb-b7cc-483b-819b-a4636fc7618e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11567" + ], + "x-ms-request-id": [ + "6d1668f0-f1b1-4fbc-9226-014075645e45" + ], + "x-ms-correlation-request-id": [ + "6d1668f0-f1b1-4fbc-9226-014075645e45" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201056Z:6d1668f0-f1b1-4fbc-9226-014075645e45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb71b861-55ea-4649-9fee-8ce169927bfc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11565" + ], + "x-ms-request-id": [ + "fe3fc15b-5abc-4e16-abe9-0062d6fe05a3" + ], + "x-ms-correlation-request-id": [ + "fe3fc15b-5abc-4e16-abe9-0062d6fe05a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201057Z:fe3fc15b-5abc-4e16-abe9-0062d6fe05a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a236e2b7-a3c1-44bc-b99f-c11aaaedcc7d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11563" + ], + "x-ms-request-id": [ + "bb5101d4-5dff-4682-a6d4-bbdd5f62b74d" + ], + "x-ms-correlation-request-id": [ + "bb5101d4-5dff-4682-a6d4-bbdd5f62b74d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201057Z:bb5101d4-5dff-4682-a6d4-bbdd5f62b74d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a986fcbd-c091-471e-91ff-3f3e958df69b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11561" + ], + "x-ms-request-id": [ + "298e003a-8a8f-4b52-9684-e1761a0c7311" + ], + "x-ms-correlation-request-id": [ + "298e003a-8a8f-4b52-9684-e1761a0c7311" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201057Z:298e003a-8a8f-4b52-9684-e1761a0c7311" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa0f32f6-0349-4b26-976f-d7667372eb23" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11559" + ], + "x-ms-request-id": [ + "da204cb5-3928-428b-ab85-e86881dc27e3" + ], + "x-ms-correlation-request-id": [ + "da204cb5-3928-428b-ab85-e86881dc27e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201057Z:da204cb5-3928-428b-ab85-e86881dc27e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c9df5aa-b8ed-4959-9431-24b551c5a0bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11557" + ], + "x-ms-request-id": [ + "e9b84cd8-35ed-4378-ab06-cfeaaba641be" + ], + "x-ms-correlation-request-id": [ + "e9b84cd8-35ed-4378-ab06-cfeaaba641be" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201058Z:e9b84cd8-35ed-4378-ab06-cfeaaba641be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b9052b15-51db-4801-bc4d-50bd9f1317f2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11555" + ], + "x-ms-request-id": [ + "0f63a126-1220-47ca-a085-f483fc6da8f0" + ], + "x-ms-correlation-request-id": [ + "0f63a126-1220-47ca-a085-f483fc6da8f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201058Z:0f63a126-1220-47ca-a085-f483fc6da8f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "995607f5-130c-4905-be2e-b9384ad4f128" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11553" + ], + "x-ms-request-id": [ + "25437be5-1dea-4fa2-b4cc-d9f0aefb59d4" + ], + "x-ms-correlation-request-id": [ + "25437be5-1dea-4fa2-b4cc-d9f0aefb59d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201058Z:25437be5-1dea-4fa2-b4cc-d9f0aefb59d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c668ebfc-e10b-4c09-89d2-9ad0b6c8f777" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11551" + ], + "x-ms-request-id": [ + "6357ea03-287d-4556-a662-8da1678119b0" + ], + "x-ms-correlation-request-id": [ + "6357ea03-287d-4556-a662-8da1678119b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201059Z:6357ea03-287d-4556-a662-8da1678119b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87352447-5a9e-4951-8349-39c5cc4bc31e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11549" + ], + "x-ms-request-id": [ + "cb2e7223-2138-47c9-84df-e76882d0bf20" + ], + "x-ms-correlation-request-id": [ + "cb2e7223-2138-47c9-84df-e76882d0bf20" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201059Z:cb2e7223-2138-47c9-84df-e76882d0bf20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "daa41707-5599-4cf1-99e7-8c799eaa6a67" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11547" + ], + "x-ms-request-id": [ + "70c9079c-d34b-4b4a-b6df-316750dc98bd" + ], + "x-ms-correlation-request-id": [ + "70c9079c-d34b-4b4a-b6df-316750dc98bd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201059Z:70c9079c-d34b-4b4a-b6df-316750dc98bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f1b16c89-2e35-4567-8c7e-56e4c010097f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11545" + ], + "x-ms-request-id": [ + "2c008bd4-b851-45a3-80c5-08e0771dd5d0" + ], + "x-ms-correlation-request-id": [ + "2c008bd4-b851-45a3-80c5-08e0771dd5d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201059Z:2c008bd4-b851-45a3-80c5-08e0771dd5d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4f9ca2da-7b60-4a05-9dac-20b12df7d737" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11543" + ], + "x-ms-request-id": [ + "cbee478f-9e4e-4603-ab21-6818b6312dd9" + ], + "x-ms-correlation-request-id": [ + "cbee478f-9e4e-4603-ab21-6818b6312dd9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201100Z:cbee478f-9e4e-4603-ab21-6818b6312dd9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:10:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b1b060d-d145-4da8-8970-2ac426ea5dfe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11541" + ], + "x-ms-request-id": [ + "3ca9affb-7ed9-44b8-8e5b-24431bc98f95" + ], + "x-ms-correlation-request-id": [ + "3ca9affb-7ed9-44b8-8e5b-24431bc98f95" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201100Z:3ca9affb-7ed9-44b8-8e5b-24431bc98f95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d475e2a-af2c-47ad-a3fa-9ea646f452cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11539" + ], + "x-ms-request-id": [ + "6f23faaa-11a8-4ad4-8dea-11939886cb41" + ], + "x-ms-correlation-request-id": [ + "6f23faaa-11a8-4ad4-8dea-11939886cb41" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201101Z:6f23faaa-11a8-4ad4-8dea-11939886cb41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "397c2b56-5e76-4a1b-b3bf-f7a63aedbba7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11537" + ], + "x-ms-request-id": [ + "da89e8aa-39f9-42ab-81a8-93a8385c7147" + ], + "x-ms-correlation-request-id": [ + "da89e8aa-39f9-42ab-81a8-93a8385c7147" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201101Z:da89e8aa-39f9-42ab-81a8-93a8385c7147" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b3343978-006c-4459-8fb1-53d315ab7b90" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11535" + ], + "x-ms-request-id": [ + "a68d018d-b7bc-4467-a81d-782acc49c540" + ], + "x-ms-correlation-request-id": [ + "a68d018d-b7bc-4467-a81d-782acc49c540" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201101Z:a68d018d-b7bc-4467-a81d-782acc49c540" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ab3d338-54f4-476f-9c08-8d52111f2d5e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11533" + ], + "x-ms-request-id": [ + "a7c7e1c2-8c33-415c-8c1c-cbf66e52a251" + ], + "x-ms-correlation-request-id": [ + "a7c7e1c2-8c33-415c-8c1c-cbf66e52a251" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201102Z:a7c7e1c2-8c33-415c-8c1c-cbf66e52a251" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4edd13c3-d9dc-455b-9c21-2387d0fc9f5c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11531" + ], + "x-ms-request-id": [ + "f272a38c-081c-4411-9947-e05cf0efb7db" + ], + "x-ms-correlation-request-id": [ + "f272a38c-081c-4411-9947-e05cf0efb7db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201102Z:f272a38c-081c-4411-9947-e05cf0efb7db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6641c34c-575b-40b7-b366-d8be688fca16" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11529" + ], + "x-ms-request-id": [ + "a0e053b3-1ae7-486e-8b25-6edc5212fd83" + ], + "x-ms-correlation-request-id": [ + "a0e053b3-1ae7-486e-8b25-6edc5212fd83" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201102Z:a0e053b3-1ae7-486e-8b25-6edc5212fd83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b313776-00df-4552-88ab-9a1e91172542" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11527" + ], + "x-ms-request-id": [ + "e58b4e85-d3ec-425c-965c-7a65adee94c0" + ], + "x-ms-correlation-request-id": [ + "e58b4e85-d3ec-425c-965c-7a65adee94c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201102Z:e58b4e85-d3ec-425c-965c-7a65adee94c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac2187c7-e6c3-41dc-8c20-b40e049de73f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11525" + ], + "x-ms-request-id": [ + "72c4009a-dbda-4b2f-8ae4-b593ed9c516c" + ], + "x-ms-correlation-request-id": [ + "72c4009a-dbda-4b2f-8ae4-b593ed9c516c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201103Z:72c4009a-dbda-4b2f-8ae4-b593ed9c516c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91a39bc0-7106-4e81-b6dc-131c3e153cac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11523" + ], + "x-ms-request-id": [ + "4946aab2-d9f1-4d9a-ae63-2825cdfb5419" + ], + "x-ms-correlation-request-id": [ + "4946aab2-d9f1-4d9a-ae63-2825cdfb5419" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201103Z:4946aab2-d9f1-4d9a-ae63-2825cdfb5419" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d6210ff-9922-48df-b53a-08ef90810587" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11521" + ], + "x-ms-request-id": [ + "ae54fd15-374e-4e1f-a136-3b9754d3e8e3" + ], + "x-ms-correlation-request-id": [ + "ae54fd15-374e-4e1f-a136-3b9754d3e8e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201103Z:ae54fd15-374e-4e1f-a136-3b9754d3e8e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "545" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:10:02.6428407Z\",\r\n \"duration\": \"PT0.8928418S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6034794-e8ef-4614-a55e-551cceb11ef6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11519" + ], + "x-ms-request-id": [ + "80f9d583-d306-45cd-a68c-8ab8ccaf4aaf" + ], + "x-ms-correlation-request-id": [ + "80f9d583-d306-45cd-a68c-8ab8ccaf4aaf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201103Z:80f9d583-d306-45cd-a68c-8ab8ccaf4aaf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "719" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"properties\": {\r\n \"templateHash\": \"3369281434564824756\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-03-27T20:11:03.7437318Z\",\r\n \"duration\": \"PT1M1.9937329S\",\r\n \"correlationId\": \"a106505a-a068-472b-8bc8-55ec3d3e26a5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3JvbGxvdXRzL2FkbXBzMjEyM1JvbGxvdXQ/YXBpLXZlcnNpb249MjAxOC0wOS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93c99eb6-e682-4ac4-8c6f-2ede80dbc360" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout?api-version=2018-09-01-preview" + ], + "Retry-After": [ + "120" + ], + "x-ms-client-request-id": [ + "93c99eb6-e682-4ac4-8c6f-2ede80dbc360" + ], + "x-ms-correlation-request-id": [ + "624d2e75-fb4f-49a3-9a92-e581112543db" + ], + "x-ms-request-id": [ + "7a07d308-8cc1-454c-baa6-1ee3ac0dcf40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11518" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201104Z:624d2e75-fb4f-49a3-9a92-e581112543db" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:04 GMT" + ], + "Content-Length": [ + "2214" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"identityIds\": [\r\n \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.ManagedIdentity/userAssignedIdentities/admps2123Identity\"\r\n ]\r\n },\r\n \"properties\": {\r\n \"status\": \"Running\",\r\n \"totalRetryAttempts\": 0,\r\n \"operationInfo\": {\r\n \"retryAttempt\": 0,\r\n \"skipSucceededOnRetry\": false,\r\n \"startTime\": \"2019-03-27T20:10:09.976Z\",\r\n \"lastUpdatedTime\": \"2019-03-27T20:10:09.976Z\"\r\n },\r\n \"services\": [\r\n {\r\n \"name\": \"admps2123Service\",\r\n \"targetSubscriptionId\": \"53012dcb-5039-4e96-8e6c-5d913da1cdb5\",\r\n \"targetLocation\": \"East US\",\r\n \"serviceUnits\": [\r\n {\r\n \"name\": \"admps2123ServiceUnit\",\r\n \"targetResourceGroup\": \"admps2123Service\",\r\n \"artifacts\": {},\r\n \"steps\": [\r\n {\r\n \"name\": \"Wait/WaitStep.PreDeploy\",\r\n \"stepGroup\": \"PilotRegion\",\r\n \"status\": \"Running\",\r\n \"operationInfo\": {\r\n \"deploymentName\": \"\",\r\n \"startTime\": \"2019-03-27T20:10:15.488Z\",\r\n \"lastUpdatedTime\": \"2019-03-27T20:10:15.488Z\"\r\n },\r\n \"resourceOperations\": [],\r\n \"messages\": [\r\n {\r\n \"timestamp\": \"2019-03-27T20:10:15.4728977Z\",\r\n \"message\": \"Wait ending at '03/27/2019 20:15:15 UTC', with '5 minutes' remaining.\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"buildVersion\": \"1.0.0\",\r\n \"targetServiceTopologyId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology\",\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource\",\r\n \"stepGroups\": [\r\n {\r\n \"name\": \"PilotRegion\",\r\n \"deploymentTargetId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit\",\r\n \"preDeploymentSteps\": [\r\n {\r\n \"stepId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/steps/WaitStep\"\r\n }\r\n ],\r\n \"postDeploymentSteps\": [],\r\n \"dependsOnStepGroups\": []\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3JvbGxvdXRzL2FkbXBzMjEyM1JvbGxvdXQ/YXBpLXZlcnNpb249MjAxOC0wOS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "759e2a64-eabc-4ddc-892c-7da0c3991100" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout?api-version=2018-09-01-preview" + ], + "Retry-After": [ + "120" + ], + "x-ms-client-request-id": [ + "759e2a64-eabc-4ddc-892c-7da0c3991100" + ], + "x-ms-correlation-request-id": [ + "b70a3a8e-0e20-4f38-8f47-7b87d0b49a24" + ], + "x-ms-request-id": [ + "0e7ead08-4b7e-4f56-bf5b-ba9508c7c131" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201306Z:b70a3a8e-0e20-4f38-8f47-7b87d0b49a24" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:05 GMT" + ], + "Content-Length": [ + "2160" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"identityIds\": [\r\n \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.ManagedIdentity/userAssignedIdentities/admps2123Identity\"\r\n ]\r\n },\r\n \"properties\": {\r\n \"status\": \"Canceled\",\r\n \"totalRetryAttempts\": 0,\r\n \"operationInfo\": {\r\n \"retryAttempt\": 0,\r\n \"skipSucceededOnRetry\": false,\r\n \"startTime\": \"2019-03-27T20:10:09.976Z\",\r\n \"endTime\": \"2019-03-27T20:12:25.967Z\",\r\n \"lastUpdatedTime\": \"2019-03-27T20:12:25.967Z\"\r\n },\r\n \"services\": [\r\n {\r\n \"name\": \"admps2123Service\",\r\n \"targetSubscriptionId\": \"53012dcb-5039-4e96-8e6c-5d913da1cdb5\",\r\n \"targetLocation\": \"East US\",\r\n \"serviceUnits\": [\r\n {\r\n \"name\": \"admps2123ServiceUnit\",\r\n \"targetResourceGroup\": \"admps2123Service\",\r\n \"artifacts\": {},\r\n \"steps\": [\r\n {\r\n \"name\": \"Wait/WaitStep.PreDeploy\",\r\n \"stepGroup\": \"PilotRegion\",\r\n \"status\": \"Canceled\",\r\n \"operationInfo\": {\r\n \"deploymentName\": \"\",\r\n \"startTime\": \"2019-03-27T20:10:15.488Z\",\r\n \"endTime\": \"2019-03-27T20:12:16.2Z\",\r\n \"lastUpdatedTime\": \"2019-03-27T20:12:16.2Z\"\r\n },\r\n \"resourceOperations\": [],\r\n \"messages\": []\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"buildVersion\": \"1.0.0\",\r\n \"targetServiceTopologyId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology\",\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource\",\r\n \"stepGroups\": [\r\n {\r\n \"name\": \"PilotRegion\",\r\n \"deploymentTargetId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit\",\r\n \"preDeploymentSteps\": [\r\n {\r\n \"stepId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/steps/WaitStep\"\r\n }\r\n ],\r\n \"postDeploymentSteps\": [],\r\n \"dependsOnStepGroups\": []\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3JvbGxvdXRzL2FkbXBzMjEyM1JvbGxvdXQ/YXBpLXZlcnNpb249MjAxOC0wOS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9bfe879-70c4-4396-8ce0-24a3c989636c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "dd0de4d5-1a4a-4d1b-a241-95e19e629faa" + ], + "x-ms-correlation-request-id": [ + "dd0de4d5-1a4a-4d1b-a241-95e19e629faa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201425Z:dd0de4d5-1a4a-4d1b-a241-95e19e629faa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "166" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DeploymentManager/rollouts/admps2123Rollout' under resource group 'admps2123' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout/cancel?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3JvbGxvdXRzL2FkbXBzMjEyM1JvbGxvdXQvY2FuY2VsP2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da576c88-7f30-4db3-b6d4-32f81d5cc838" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout?api-version=2018-09-01-preview" + ], + "x-ms-client-request-id": [ + "da576c88-7f30-4db3-b6d4-32f81d5cc838" + ], + "x-ms-correlation-request-id": [ + "1968909e-caa0-4b0d-bb43-6f029d9857ad" + ], + "x-ms-request-id": [ + "1a038be2-cf87-431b-a2df-fffe91a5c57e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201105Z:1968909e-caa0-4b0d-bb43-6f029d9857ad" + ], + "Date": [ + "Wed, 27 Mar 2019 20:11:05 GMT" + ], + "Content-Length": [ + "1582" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"identityIds\": [\r\n \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.ManagedIdentity/userAssignedIdentities/admps2123Identity\"\r\n ]\r\n },\r\n \"properties\": {\r\n \"status\": \"Canceling\",\r\n \"operationInfo\": {\r\n \"retryAttempt\": 0,\r\n \"skipSucceededOnRetry\": false,\r\n \"startTime\": \"2019-03-27T20:10:09.976Z\",\r\n \"lastUpdatedTime\": \"2019-03-27T20:10:09.976Z\"\r\n },\r\n \"buildVersion\": \"1.0.0\",\r\n \"targetServiceTopologyId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology\",\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource\",\r\n \"stepGroups\": [\r\n {\r\n \"name\": \"PilotRegion\",\r\n \"deploymentTargetId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit\",\r\n \"preDeploymentSteps\": [\r\n {\r\n \"stepId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/steps/WaitStep\"\r\n }\r\n ],\r\n \"postDeploymentSteps\": [],\r\n \"dependsOnStepGroups\": []\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout\",\r\n \"name\": \"admps2123Rollout\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/validate?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json\",\r\n \"resources\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"type\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"Identity\": {\r\n \"type\": \"userAssigned\",\r\n \"identityIds\": [\r\n \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.ManagedIdentity/userAssignedIdentities/admps2123Identity\"\r\n ]\r\n },\r\n \"properties\": {\r\n \"buildVersion\": \"1.0.0\",\r\n \"targetServiceTopologyId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology\",\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource\",\r\n \"stepGroups\": [\r\n {\r\n \"name\": \"PilotRegion\",\r\n \"deploymentTargetId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123InvalidServiceUnit\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f6114a5-43ed-48ae-af96-236a7fc36925" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1636" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "27cb1482-f1e8-477c-a248-36203723e926" + ], + "x-ms-correlation-request-id": [ + "27cb1482-f1e8-477c-a248-36203723e926" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201308Z:27cb1482-f1e8-477c-a248-36203723e926" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:07 GMT" + ], + "Content-Length": [ + "1763" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-03-27T20:13:08.2480338Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"27cb1482-f1e8-477c-a248-36203723e926\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"type\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"location\": \"Central US\",\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"identityIds\": [\r\n \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.ManagedIdentity/userAssignedIdentities/admps2123Identity\"\r\n ]\r\n },\r\n \"properties\": {\r\n \"buildVersion\": \"1.0.0\",\r\n \"targetServiceTopologyId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology\",\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource\",\r\n \"stepGroups\": [\r\n {\r\n \"name\": \"PilotRegion\",\r\n \"deploymentTargetId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123InvalidServiceUnit\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json\",\r\n \"resources\": [\r\n {\r\n \"location\": \"Central US\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"type\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"Identity\": {\r\n \"type\": \"userAssigned\",\r\n \"identityIds\": [\r\n \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.ManagedIdentity/userAssignedIdentities/admps2123Identity\"\r\n ]\r\n },\r\n \"properties\": {\r\n \"buildVersion\": \"1.0.0\",\r\n \"targetServiceTopologyId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology\",\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource\",\r\n \"stepGroups\": [\r\n {\r\n \"name\": \"PilotRegion\",\r\n \"deploymentTargetId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123InvalidServiceUnit\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35460f07-0abf-40aa-beb0-f6f5af97f0b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1636" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operationStatuses/08586478892956626098?api-version=2018-05-01" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "7a277fc3-bf06-4b26-85e6-2b0cdf970454" + ], + "x-ms-correlation-request-id": [ + "7a277fc3-bf06-4b26-85e6-2b0cdf970454" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201310Z:7a277fc3-bf06-4b26-85e6-2b0cdf970454" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:10 GMT" + ], + "Content-Length": [ + "559" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "843f7a23-07ec-4d74-ace7-7020827ccbed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "88f529c2-c60a-42fe-a208-1dfbdffb860d" + ], + "x-ms-correlation-request-id": [ + "88f529c2-c60a-42fe-a208-1dfbdffb860d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201311Z:88f529c2-c60a-42fe-a208-1dfbdffb860d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9077dcaf-14fe-4acf-9109-92a81288d3c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "0abefeb2-8ff4-484c-861e-b7308b52bf76" + ], + "x-ms-correlation-request-id": [ + "0abefeb2-8ff4-484c-861e-b7308b52bf76" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201311Z:0abefeb2-8ff4-484c-861e-b7308b52bf76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "109e3f23-0435-42f6-bf25-782d0b19ea0a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "aea4ee1a-be6a-473f-a75f-2e0f661efa58" + ], + "x-ms-correlation-request-id": [ + "aea4ee1a-be6a-473f-a75f-2e0f661efa58" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201311Z:aea4ee1a-be6a-473f-a75f-2e0f661efa58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7770dfc-64b9-469c-9426-4e0ce88a1a29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "dcdc7ddf-bd01-459a-b604-0eff9d99aaa0" + ], + "x-ms-correlation-request-id": [ + "dcdc7ddf-bd01-459a-b604-0eff9d99aaa0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201311Z:dcdc7ddf-bd01-459a-b604-0eff9d99aaa0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06001461-16bb-4aba-ba18-3e5034b7bcc1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "394a3521-6a11-43c0-aae4-bf0c510ba50e" + ], + "x-ms-correlation-request-id": [ + "394a3521-6a11-43c0-aae4-bf0c510ba50e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201312Z:394a3521-6a11-43c0-aae4-bf0c510ba50e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b0d4c78-592a-4f3f-991d-4976c1b1504f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "67b9e1de-7268-4e0a-8ced-6d37500d62b3" + ], + "x-ms-correlation-request-id": [ + "67b9e1de-7268-4e0a-8ced-6d37500d62b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201312Z:67b9e1de-7268-4e0a-8ced-6d37500d62b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "861fca36-f370-4e92-9dd8-ebe500d0583c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "20455504-1ad6-40cf-9d75-4a5926e58379" + ], + "x-ms-correlation-request-id": [ + "20455504-1ad6-40cf-9d75-4a5926e58379" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201312Z:20455504-1ad6-40cf-9d75-4a5926e58379" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e19a330d-7b4b-4858-b372-47fc0f3650fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "ac167bb4-bc7e-4c78-b200-957a59a7ccc8" + ], + "x-ms-correlation-request-id": [ + "ac167bb4-bc7e-4c78-b200-957a59a7ccc8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201312Z:ac167bb4-bc7e-4c78-b200-957a59a7ccc8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ecec535e-caa3-4ab1-8a03-27acc5a13665" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "033c5bc5-1596-4b18-b1c1-3b76f8847998" + ], + "x-ms-correlation-request-id": [ + "033c5bc5-1596-4b18-b1c1-3b76f8847998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201313Z:033c5bc5-1596-4b18-b1c1-3b76f8847998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c30ce1f-f804-4dd7-a5b9-9f37976c8eb7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "a3446a7e-ae4e-49b4-a32c-8760d34c9eee" + ], + "x-ms-correlation-request-id": [ + "a3446a7e-ae4e-49b4-a32c-8760d34c9eee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201313Z:a3446a7e-ae4e-49b4-a32c-8760d34c9eee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2913ccd6-49a0-4dac-b402-b3ba7559110a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "50e20a5a-85d6-4e23-a256-27ff6445d0f6" + ], + "x-ms-correlation-request-id": [ + "50e20a5a-85d6-4e23-a256-27ff6445d0f6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201313Z:50e20a5a-85d6-4e23-a256-27ff6445d0f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b874b73d-03ee-4f72-9016-bd5c79c17d2c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "24d074a8-2599-4e90-98d1-c63227afe13b" + ], + "x-ms-correlation-request-id": [ + "24d074a8-2599-4e90-98d1-c63227afe13b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201313Z:24d074a8-2599-4e90-98d1-c63227afe13b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d9ce5fff-2bf7-4b88-8199-934b48fc803f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "c17799e7-7efa-4c8d-bcb5-497c3ade7681" + ], + "x-ms-correlation-request-id": [ + "c17799e7-7efa-4c8d-bcb5-497c3ade7681" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201313Z:c17799e7-7efa-4c8d-bcb5-497c3ade7681" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b456f352-533f-4e53-b08e-2d5bd40e64a0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "ad85e181-19d9-4fe3-8078-8ff9bcd95676" + ], + "x-ms-correlation-request-id": [ + "ad85e181-19d9-4fe3-8078-8ff9bcd95676" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201314Z:ad85e181-19d9-4fe3-8078-8ff9bcd95676" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d0b5cf5-2958-4b83-8d5e-092e5857296d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "c6bf51c8-52e0-4b93-8270-c93d437dceb6" + ], + "x-ms-correlation-request-id": [ + "c6bf51c8-52e0-4b93-8270-c93d437dceb6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201314Z:c6bf51c8-52e0-4b93-8270-c93d437dceb6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d11622e1-eb3b-4d29-b39b-8f9e3657a1ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "a041a811-215f-4727-8195-ad8d76310809" + ], + "x-ms-correlation-request-id": [ + "a041a811-215f-4727-8195-ad8d76310809" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201314Z:a041a811-215f-4727-8195-ad8d76310809" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "221c8f52-1b7e-4964-863b-59de3afb8580" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "347a0f85-a59f-41bf-9de1-a061a0e2a6b3" + ], + "x-ms-correlation-request-id": [ + "347a0f85-a59f-41bf-9de1-a061a0e2a6b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201314Z:347a0f85-a59f-41bf-9de1-a061a0e2a6b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e7e0c1a-0697-4276-8adf-8f5169ba0258" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "6bbc3c2e-337d-4cd3-be45-ac9ed5a20986" + ], + "x-ms-correlation-request-id": [ + "6bbc3c2e-337d-4cd3-be45-ac9ed5a20986" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201315Z:6bbc3c2e-337d-4cd3-be45-ac9ed5a20986" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "01901a96-d5ad-41e3-91e3-e91e99e868ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "9dd2cf68-9532-45da-bccf-74a122586065" + ], + "x-ms-correlation-request-id": [ + "9dd2cf68-9532-45da-bccf-74a122586065" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201315Z:9dd2cf68-9532-45da-bccf-74a122586065" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ca9d001-d264-41b6-917c-6a1cb4bc593d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "49ba0b63-a0cc-43cf-b7a8-fda4687a2cd8" + ], + "x-ms-correlation-request-id": [ + "49ba0b63-a0cc-43cf-b7a8-fda4687a2cd8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201315Z:49ba0b63-a0cc-43cf-b7a8-fda4687a2cd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29ac9516-f94d-4dfc-a8bf-4d88be785aa2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "1fcb94d3-97df-4e70-b587-cc9811853b2d" + ], + "x-ms-correlation-request-id": [ + "1fcb94d3-97df-4e70-b587-cc9811853b2d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201315Z:1fcb94d3-97df-4e70-b587-cc9811853b2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4923cf7b-18d7-42e8-8d42-4d4caea88b01" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "1f4a7858-25f9-46f3-ac1b-61bb2ad91c56" + ], + "x-ms-correlation-request-id": [ + "1f4a7858-25f9-46f3-ac1b-61bb2ad91c56" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201316Z:1f4a7858-25f9-46f3-ac1b-61bb2ad91c56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1838e0fd-4bfc-422e-8fe8-6c2c1c694702" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "9248a19f-c44e-449d-b04a-772f46398b8a" + ], + "x-ms-correlation-request-id": [ + "9248a19f-c44e-449d-b04a-772f46398b8a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201316Z:9248a19f-c44e-449d-b04a-772f46398b8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47568fd2-c3ff-456a-abc4-4d8d66ca735d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "b1b12584-d79c-4220-907c-65fc49ba60a5" + ], + "x-ms-correlation-request-id": [ + "b1b12584-d79c-4220-907c-65fc49ba60a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201316Z:b1b12584-d79c-4220-907c-65fc49ba60a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "149dbd49-8a4c-4a4c-8cb2-38ae551b27e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "c084cd81-a97d-4d62-be17-263f022bea3a" + ], + "x-ms-correlation-request-id": [ + "c084cd81-a97d-4d62-be17-263f022bea3a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201317Z:c084cd81-a97d-4d62-be17-263f022bea3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5150bf36-d7de-42f1-9855-06afde3d6fb8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-request-id": [ + "583d16e4-ec72-451d-8e51-4ba02f4d753c" + ], + "x-ms-correlation-request-id": [ + "583d16e4-ec72-451d-8e51-4ba02f4d753c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201317Z:583d16e4-ec72-451d-8e51-4ba02f4d753c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78a40b1f-93af-4cd9-8c22-a0a05c6163dc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-request-id": [ + "f599490b-48bd-4e6f-88cf-635bfaf0f9a8" + ], + "x-ms-correlation-request-id": [ + "f599490b-48bd-4e6f-88cf-635bfaf0f9a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201317Z:f599490b-48bd-4e6f-88cf-635bfaf0f9a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea0525fd-e84d-4131-8f16-36ccfd160018" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-request-id": [ + "da3b789a-79fa-43fb-8a7d-02792c2ac9f5" + ], + "x-ms-correlation-request-id": [ + "da3b789a-79fa-43fb-8a7d-02792c2ac9f5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201317Z:da3b789a-79fa-43fb-8a7d-02792c2ac9f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83fbd9b9-f520-44b4-b96b-c18e021bd084" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-request-id": [ + "58ec719e-4322-40e5-afb7-27f1902f27d4" + ], + "x-ms-correlation-request-id": [ + "58ec719e-4322-40e5-afb7-27f1902f27d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201318Z:58ec719e-4322-40e5-afb7-27f1902f27d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b7524af-c351-4423-9b74-d1f658bfceaf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-request-id": [ + "8c785a7e-2c46-4078-ab42-0f3b7c62be28" + ], + "x-ms-correlation-request-id": [ + "8c785a7e-2c46-4078-ab42-0f3b7c62be28" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201318Z:8c785a7e-2c46-4078-ab42-0f3b7c62be28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8fac4b98-2749-498f-af45-811b895986b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-request-id": [ + "a924fa6e-a3a5-4b4c-892a-4fc096cd3a53" + ], + "x-ms-correlation-request-id": [ + "a924fa6e-a3a5-4b4c-892a-4fc096cd3a53" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201318Z:a924fa6e-a3a5-4b4c-892a-4fc096cd3a53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "891b5c17-b535-4b28-9ff3-dc66976f9791" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-request-id": [ + "c9f17a21-50b5-485e-97fd-ba6ba2ae9057" + ], + "x-ms-correlation-request-id": [ + "c9f17a21-50b5-485e-97fd-ba6ba2ae9057" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201318Z:c9f17a21-50b5-485e-97fd-ba6ba2ae9057" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e16b97a6-06a2-46af-bf93-9a514f96723f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-request-id": [ + "2b87de55-02da-4478-ac4b-009db090d949" + ], + "x-ms-correlation-request-id": [ + "2b87de55-02da-4478-ac4b-009db090d949" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201319Z:2b87de55-02da-4478-ac4b-009db090d949" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45460377-d4d3-46c5-b9c6-760c18ce213f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-request-id": [ + "65a61287-5af6-49f1-aeda-8600966bac62" + ], + "x-ms-correlation-request-id": [ + "65a61287-5af6-49f1-aeda-8600966bac62" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201319Z:65a61287-5af6-49f1-aeda-8600966bac62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3be876f-b219-44c0-be00-85337fde33ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-request-id": [ + "bb429e72-976b-4e68-b73b-04434b5f6231" + ], + "x-ms-correlation-request-id": [ + "bb429e72-976b-4e68-b73b-04434b5f6231" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201319Z:bb429e72-976b-4e68-b73b-04434b5f6231" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2cc08569-f1ee-424d-85da-4a58bf1943f9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-request-id": [ + "f64bddb5-f314-4545-9952-5ff2bc01dd97" + ], + "x-ms-correlation-request-id": [ + "f64bddb5-f314-4545-9952-5ff2bc01dd97" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201319Z:f64bddb5-f314-4545-9952-5ff2bc01dd97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88246476-90ad-4b3c-b4d6-04d265cd7367" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-request-id": [ + "24b589f1-d8b6-424b-adec-e42c88bad47d" + ], + "x-ms-correlation-request-id": [ + "24b589f1-d8b6-424b-adec-e42c88bad47d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201320Z:24b589f1-d8b6-424b-adec-e42c88bad47d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4709ad9f-0f73-4e66-88fd-86593930d982" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-request-id": [ + "a2d4d1bc-75e0-4959-a05a-b445ae0485bf" + ], + "x-ms-correlation-request-id": [ + "a2d4d1bc-75e0-4959-a05a-b445ae0485bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201320Z:a2d4d1bc-75e0-4959-a05a-b445ae0485bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "daffcfc3-10f3-424f-a42c-e8d0707ed401" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-request-id": [ + "0c579ee9-89d5-4b67-beae-f848b6464d7b" + ], + "x-ms-correlation-request-id": [ + "0c579ee9-89d5-4b67-beae-f848b6464d7b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201320Z:0c579ee9-89d5-4b67-beae-f848b6464d7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b0d73e2-9bb7-431c-983e-b699f76a167a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "x-ms-request-id": [ + "135fbe77-46ce-4705-b3ff-2190d2911cc2" + ], + "x-ms-correlation-request-id": [ + "135fbe77-46ce-4705-b3ff-2190d2911cc2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201320Z:135fbe77-46ce-4705-b3ff-2190d2911cc2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "43c6e1ad-a356-43ae-a60e-fcc8f1ba660b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-request-id": [ + "471a3015-b59a-4da0-a9f5-6a028600dd6d" + ], + "x-ms-correlation-request-id": [ + "471a3015-b59a-4da0-a9f5-6a028600dd6d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201321Z:471a3015-b59a-4da0-a9f5-6a028600dd6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a49013ab-b539-4d72-a26d-238d1ef2716b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "x-ms-request-id": [ + "888e83f1-e9cb-48f6-bf62-6a09be1281a0" + ], + "x-ms-correlation-request-id": [ + "888e83f1-e9cb-48f6-bf62-6a09be1281a0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201321Z:888e83f1-e9cb-48f6-bf62-6a09be1281a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b77a7cfc-6d4a-4b74-b59e-9da84243a081" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "x-ms-request-id": [ + "c8ec4bb1-05a0-4911-8a9b-0f9034b8fc27" + ], + "x-ms-correlation-request-id": [ + "c8ec4bb1-05a0-4911-8a9b-0f9034b8fc27" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201321Z:c8ec4bb1-05a0-4911-8a9b-0f9034b8fc27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f84ca219-7b84-46a5-9f1e-84a7133c8bd0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-request-id": [ + "88939b48-e963-44bc-b2fd-48f906bf1ff5" + ], + "x-ms-correlation-request-id": [ + "88939b48-e963-44bc-b2fd-48f906bf1ff5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201321Z:88939b48-e963-44bc-b2fd-48f906bf1ff5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce4ff798-fee1-4bdf-88ff-15fac6c1720e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-request-id": [ + "e505b54c-4bd4-4fb5-9367-c35ed1e7ba06" + ], + "x-ms-correlation-request-id": [ + "e505b54c-4bd4-4fb5-9367-c35ed1e7ba06" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201322Z:e505b54c-4bd4-4fb5-9367-c35ed1e7ba06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73f01f2d-aa62-497a-bad7-ff18f68f5ab3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "x-ms-request-id": [ + "b58d5fc2-cb4c-4a8e-9e5b-f087cd49137e" + ], + "x-ms-correlation-request-id": [ + "b58d5fc2-cb4c-4a8e-9e5b-f087cd49137e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201322Z:b58d5fc2-cb4c-4a8e-9e5b-f087cd49137e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7bb66a61-c1b8-4f16-abb0-10af8de13584" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], + "x-ms-request-id": [ + "cf138b85-6185-4e97-8a9f-ecc64f3a30df" + ], + "x-ms-correlation-request-id": [ + "cf138b85-6185-4e97-8a9f-ecc64f3a30df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201322Z:cf138b85-6185-4e97-8a9f-ecc64f3a30df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7fcf1db5-1b57-4a5c-a48c-9efc140d9589" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11904" + ], + "x-ms-request-id": [ + "0c3a8760-4691-4352-8194-658457493984" + ], + "x-ms-correlation-request-id": [ + "0c3a8760-4691-4352-8194-658457493984" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201322Z:0c3a8760-4691-4352-8194-658457493984" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca1f2e3c-15d6-46a8-a98d-20224d6d1fcd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "x-ms-request-id": [ + "01f3f224-747e-4029-ba7b-a6a07f7b11bd" + ], + "x-ms-correlation-request-id": [ + "01f3f224-747e-4029-ba7b-a6a07f7b11bd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201323Z:01f3f224-747e-4029-ba7b-a6a07f7b11bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05386058-574f-4743-9e69-e0e764c9b332" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "x-ms-request-id": [ + "173b5701-5582-427d-ac4d-ab6d4cfdc08d" + ], + "x-ms-correlation-request-id": [ + "173b5701-5582-427d-ac4d-ab6d4cfdc08d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201323Z:173b5701-5582-427d-ac4d-ab6d4cfdc08d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea69ec93-8595-46f7-9ea8-0eb38beb155f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], + "x-ms-request-id": [ + "5eeb2c92-ea07-47b7-ad81-9abde65d5aeb" + ], + "x-ms-correlation-request-id": [ + "5eeb2c92-ea07-47b7-ad81-9abde65d5aeb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201323Z:5eeb2c92-ea07-47b7-ad81-9abde65d5aeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc7bce97-ddb2-4c78-bd4e-514e2e034ac1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11896" + ], + "x-ms-request-id": [ + "a3bbc9d6-1a03-489b-955d-069d94d51e9d" + ], + "x-ms-correlation-request-id": [ + "a3bbc9d6-1a03-489b-955d-069d94d51e9d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201323Z:a3bbc9d6-1a03-489b-955d-069d94d51e9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d2aac8d-9068-42ae-813a-f92a9e4d0a0f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11894" + ], + "x-ms-request-id": [ + "5986a310-29da-4a76-8434-7eb4a475f93b" + ], + "x-ms-correlation-request-id": [ + "5986a310-29da-4a76-8434-7eb4a475f93b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201323Z:5986a310-29da-4a76-8434-7eb4a475f93b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e20df41-81b4-41ad-8a7b-2f15659dab0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11892" + ], + "x-ms-request-id": [ + "04592993-c885-4f75-9283-3dc89569595c" + ], + "x-ms-correlation-request-id": [ + "04592993-c885-4f75-9283-3dc89569595c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201324Z:04592993-c885-4f75-9283-3dc89569595c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89ea2ee1-5874-4a14-83ec-dfd04f4333fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11890" + ], + "x-ms-request-id": [ + "efef498a-4091-4535-bbf3-7b52165c73c9" + ], + "x-ms-correlation-request-id": [ + "efef498a-4091-4535-bbf3-7b52165c73c9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201324Z:efef498a-4091-4535-bbf3-7b52165c73c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a388d100-cea1-4fad-b8c9-8b4dccd2b5cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11888" + ], + "x-ms-request-id": [ + "b7fa1b2d-1c17-4fb2-bfd5-0fb83bc5bbfa" + ], + "x-ms-correlation-request-id": [ + "b7fa1b2d-1c17-4fb2-bfd5-0fb83bc5bbfa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201324Z:b7fa1b2d-1c17-4fb2-bfd5-0fb83bc5bbfa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d6b6003-ed74-497d-a18b-d9977c3e9032" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11886" + ], + "x-ms-request-id": [ + "996d55d5-77ab-40d8-9610-8d8cf39ae922" + ], + "x-ms-correlation-request-id": [ + "996d55d5-77ab-40d8-9610-8d8cf39ae922" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201324Z:996d55d5-77ab-40d8-9610-8d8cf39ae922" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "030e2c21-e485-45f3-aacf-b5232dfe5821" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11884" + ], + "x-ms-request-id": [ + "84b0d1e5-29f6-4668-acea-c29e7d861b72" + ], + "x-ms-correlation-request-id": [ + "84b0d1e5-29f6-4668-acea-c29e7d861b72" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201325Z:84b0d1e5-29f6-4668-acea-c29e7d861b72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f794b7e-0a0c-4c94-9054-a4cda845dd49" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11882" + ], + "x-ms-request-id": [ + "c4864ffe-6238-4038-a569-c156b39bdccc" + ], + "x-ms-correlation-request-id": [ + "c4864ffe-6238-4038-a569-c156b39bdccc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201325Z:c4864ffe-6238-4038-a569-c156b39bdccc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc40e9bb-13f6-4624-91b2-e7c2fbdb441e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11880" + ], + "x-ms-request-id": [ + "8d6f469b-a922-4a94-bf59-850625a6f4bf" + ], + "x-ms-correlation-request-id": [ + "8d6f469b-a922-4a94-bf59-850625a6f4bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201325Z:8d6f469b-a922-4a94-bf59-850625a6f4bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5de4813-11c8-4872-8897-d113747c6eff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11878" + ], + "x-ms-request-id": [ + "7f5f0d4f-8ce8-4e3a-8a89-798db28bc190" + ], + "x-ms-correlation-request-id": [ + "7f5f0d4f-8ce8-4e3a-8a89-798db28bc190" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201325Z:7f5f0d4f-8ce8-4e3a-8a89-798db28bc190" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0b8ea2d-fa21-4298-8d25-a966fd9880c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11876" + ], + "x-ms-request-id": [ + "2a242a65-93b5-46d3-96e8-1b7c815146be" + ], + "x-ms-correlation-request-id": [ + "2a242a65-93b5-46d3-96e8-1b7c815146be" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201325Z:2a242a65-93b5-46d3-96e8-1b7c815146be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "441f355d-bde1-4e28-9c05-9f483ef1fcb2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11874" + ], + "x-ms-request-id": [ + "4216bf3a-2a9c-492a-a0e5-77ac52774cb3" + ], + "x-ms-correlation-request-id": [ + "4216bf3a-2a9c-492a-a0e5-77ac52774cb3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201326Z:4216bf3a-2a9c-492a-a0e5-77ac52774cb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be02417a-1fc0-497f-bd58-0b7a0784f2cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11872" + ], + "x-ms-request-id": [ + "a9e6258b-c823-4757-97a8-375b605616e9" + ], + "x-ms-correlation-request-id": [ + "a9e6258b-c823-4757-97a8-375b605616e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201326Z:a9e6258b-c823-4757-97a8-375b605616e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "22c7ad0b-b891-40e3-8183-7a56d65a891b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11870" + ], + "x-ms-request-id": [ + "7d4ca52f-71de-4753-b669-8c9b40e75659" + ], + "x-ms-correlation-request-id": [ + "7d4ca52f-71de-4753-b669-8c9b40e75659" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201326Z:7d4ca52f-71de-4753-b669-8c9b40e75659" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f1feadac-a8fb-4f58-a987-b9f8b9bea33f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11868" + ], + "x-ms-request-id": [ + "629d697f-fd6e-4078-9e46-44c7b273f336" + ], + "x-ms-correlation-request-id": [ + "629d697f-fd6e-4078-9e46-44c7b273f336" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201326Z:629d697f-fd6e-4078-9e46-44c7b273f336" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "32a82e09-298b-42ed-b4e4-a4a91fcb0430" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11866" + ], + "x-ms-request-id": [ + "adc432d6-e1c1-4e45-b9f2-e00acc632e98" + ], + "x-ms-correlation-request-id": [ + "adc432d6-e1c1-4e45-b9f2-e00acc632e98" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201327Z:adc432d6-e1c1-4e45-b9f2-e00acc632e98" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08394959-035c-43ca-bb81-fe6048e50305" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11864" + ], + "x-ms-request-id": [ + "1efd32ac-1b20-4165-a9ff-a74686ef9a87" + ], + "x-ms-correlation-request-id": [ + "1efd32ac-1b20-4165-a9ff-a74686ef9a87" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201327Z:1efd32ac-1b20-4165-a9ff-a74686ef9a87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9386b163-c8e8-4b29-b486-007d1851eb82" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11862" + ], + "x-ms-request-id": [ + "38695843-aa06-4671-82b5-0543854cf6d5" + ], + "x-ms-correlation-request-id": [ + "38695843-aa06-4671-82b5-0543854cf6d5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201327Z:38695843-aa06-4671-82b5-0543854cf6d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc36b2ef-fa07-4b94-ae26-66ca1ed004bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11860" + ], + "x-ms-request-id": [ + "8e5cc5e8-4d38-44b2-8c05-2c9104adc404" + ], + "x-ms-correlation-request-id": [ + "8e5cc5e8-4d38-44b2-8c05-2c9104adc404" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201327Z:8e5cc5e8-4d38-44b2-8c05-2c9104adc404" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45dfd8b9-388a-45e8-a864-ab524065be58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11858" + ], + "x-ms-request-id": [ + "7406a20a-c016-46ab-957c-138d34091250" + ], + "x-ms-correlation-request-id": [ + "7406a20a-c016-46ab-957c-138d34091250" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201327Z:7406a20a-c016-46ab-957c-138d34091250" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "afed4e30-1a7d-40a2-a8dc-a1acb257a068" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11856" + ], + "x-ms-request-id": [ + "1522c30d-9ca9-4d44-ab71-f0326d2bd551" + ], + "x-ms-correlation-request-id": [ + "1522c30d-9ca9-4d44-ab71-f0326d2bd551" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201328Z:1522c30d-9ca9-4d44-ab71-f0326d2bd551" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7563ba27-b74e-4bba-86c4-1a93c12cc57e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11854" + ], + "x-ms-request-id": [ + "85d27892-3e4d-4995-9bd4-26282639c6eb" + ], + "x-ms-correlation-request-id": [ + "85d27892-3e4d-4995-9bd4-26282639c6eb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201328Z:85d27892-3e4d-4995-9bd4-26282639c6eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae0272b8-c0ef-4bd1-88ba-a4592b7fc210" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11852" + ], + "x-ms-request-id": [ + "300a81fc-e169-4aaa-8f2b-1d3baa7f556c" + ], + "x-ms-correlation-request-id": [ + "300a81fc-e169-4aaa-8f2b-1d3baa7f556c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201328Z:300a81fc-e169-4aaa-8f2b-1d3baa7f556c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba317908-db82-4472-9572-6c4223799d10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11850" + ], + "x-ms-request-id": [ + "82c26c9e-9ce3-40db-9ff3-64732fef3a55" + ], + "x-ms-correlation-request-id": [ + "82c26c9e-9ce3-40db-9ff3-64732fef3a55" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201328Z:82c26c9e-9ce3-40db-9ff3-64732fef3a55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3ae2493-3286-47fe-b3b8-2b5b14aeef2a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11848" + ], + "x-ms-request-id": [ + "12fa1edb-e9f5-445d-b371-db6c1e068ff9" + ], + "x-ms-correlation-request-id": [ + "12fa1edb-e9f5-445d-b371-db6c1e068ff9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201329Z:12fa1edb-e9f5-445d-b371-db6c1e068ff9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4f10071c-3b88-407f-9c43-b48b146153be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11846" + ], + "x-ms-request-id": [ + "53eee44d-f98a-4b04-97c9-c0250b97e417" + ], + "x-ms-correlation-request-id": [ + "53eee44d-f98a-4b04-97c9-c0250b97e417" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201329Z:53eee44d-f98a-4b04-97c9-c0250b97e417" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a096790-751d-41c5-b645-c30361759e07" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11844" + ], + "x-ms-request-id": [ + "b236f428-a136-4213-907c-d73191eb8a19" + ], + "x-ms-correlation-request-id": [ + "b236f428-a136-4213-907c-d73191eb8a19" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201329Z:b236f428-a136-4213-907c-d73191eb8a19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "22ee0445-2ee5-4b42-a135-31de7adddecd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11842" + ], + "x-ms-request-id": [ + "f2f3aeea-da1d-407d-b615-940203e912f2" + ], + "x-ms-correlation-request-id": [ + "f2f3aeea-da1d-407d-b615-940203e912f2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201329Z:f2f3aeea-da1d-407d-b615-940203e912f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28523c27-554e-40f5-b044-7ac644175362" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11840" + ], + "x-ms-request-id": [ + "8b6bb651-4a5c-441e-84fe-183cf2e8594f" + ], + "x-ms-correlation-request-id": [ + "8b6bb651-4a5c-441e-84fe-183cf2e8594f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201329Z:8b6bb651-4a5c-441e-84fe-183cf2e8594f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3388cd99-fb42-41be-99a2-779cb646fc2b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11838" + ], + "x-ms-request-id": [ + "c680b64c-a171-416e-91c5-1da66e12de25" + ], + "x-ms-correlation-request-id": [ + "c680b64c-a171-416e-91c5-1da66e12de25" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201330Z:c680b64c-a171-416e-91c5-1da66e12de25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d7f27db-b940-4e90-b491-48dfae83876b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11836" + ], + "x-ms-request-id": [ + "99b63857-6bb9-483d-9357-f9639b52d517" + ], + "x-ms-correlation-request-id": [ + "99b63857-6bb9-483d-9357-f9639b52d517" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201330Z:99b63857-6bb9-483d-9357-f9639b52d517" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "376f146b-722b-4589-9777-b740ecfe9451" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11834" + ], + "x-ms-request-id": [ + "5938caf7-2aec-4ce2-aa2e-412ae08fc98c" + ], + "x-ms-correlation-request-id": [ + "5938caf7-2aec-4ce2-aa2e-412ae08fc98c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201330Z:5938caf7-2aec-4ce2-aa2e-412ae08fc98c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c16f9a54-a06d-48da-8fe5-226d39bba458" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11832" + ], + "x-ms-request-id": [ + "151ac541-dc93-40da-9c7b-6715bae05eba" + ], + "x-ms-correlation-request-id": [ + "151ac541-dc93-40da-9c7b-6715bae05eba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201330Z:151ac541-dc93-40da-9c7b-6715bae05eba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d41aceac-1f48-482d-91a0-651204044b0f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11830" + ], + "x-ms-request-id": [ + "fe9996be-b09a-4045-b84e-679a9bb2bd54" + ], + "x-ms-correlation-request-id": [ + "fe9996be-b09a-4045-b84e-679a9bb2bd54" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201331Z:fe9996be-b09a-4045-b84e-679a9bb2bd54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49a5efc9-165f-4b44-a69a-4493d946519b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11828" + ], + "x-ms-request-id": [ + "b5cdb17e-cdb0-4874-babd-01a5d78bf3f4" + ], + "x-ms-correlation-request-id": [ + "b5cdb17e-cdb0-4874-babd-01a5d78bf3f4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201331Z:b5cdb17e-cdb0-4874-babd-01a5d78bf3f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6483a9a3-848c-4aa3-9a91-b1c7ec5ad18d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11826" + ], + "x-ms-request-id": [ + "a334eafa-b1aa-4664-977a-2b9c95369bfc" + ], + "x-ms-correlation-request-id": [ + "a334eafa-b1aa-4664-977a-2b9c95369bfc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201331Z:a334eafa-b1aa-4664-977a-2b9c95369bfc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b81b684-7ac3-4434-8a22-288fb58b49b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11824" + ], + "x-ms-request-id": [ + "3e6cf336-d88f-41ca-962e-16027dbc190d" + ], + "x-ms-correlation-request-id": [ + "3e6cf336-d88f-41ca-962e-16027dbc190d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201331Z:3e6cf336-d88f-41ca-962e-16027dbc190d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0dcf4bce-dc74-4686-bc23-b9a2042f2f5b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11822" + ], + "x-ms-request-id": [ + "f6735467-af35-4dcd-9ef4-9d87d687e79a" + ], + "x-ms-correlation-request-id": [ + "f6735467-af35-4dcd-9ef4-9d87d687e79a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201331Z:f6735467-af35-4dcd-9ef4-9d87d687e79a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad98a075-91c8-461f-b3ba-f91b2aa95b1d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11820" + ], + "x-ms-request-id": [ + "104d4979-5e2b-44bd-a298-46162d2ad3a5" + ], + "x-ms-correlation-request-id": [ + "104d4979-5e2b-44bd-a298-46162d2ad3a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201332Z:104d4979-5e2b-44bd-a298-46162d2ad3a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "695b3791-30b1-4b8f-a99a-5cbb7a022406" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11818" + ], + "x-ms-request-id": [ + "8e52f89a-6dbe-449f-b871-3f1e22766813" + ], + "x-ms-correlation-request-id": [ + "8e52f89a-6dbe-449f-b871-3f1e22766813" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201332Z:8e52f89a-6dbe-449f-b871-3f1e22766813" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b3fb11e1-ad29-46d7-b2f6-5efc9dc3f6a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11816" + ], + "x-ms-request-id": [ + "178b9502-c072-4bf3-97c7-9759e044323b" + ], + "x-ms-correlation-request-id": [ + "178b9502-c072-4bf3-97c7-9759e044323b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201332Z:178b9502-c072-4bf3-97c7-9759e044323b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21505210-347b-4660-9b61-34680f9205ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11814" + ], + "x-ms-request-id": [ + "61fe00dc-b7fd-47d1-8ef4-f02df8e7525d" + ], + "x-ms-correlation-request-id": [ + "61fe00dc-b7fd-47d1-8ef4-f02df8e7525d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201332Z:61fe00dc-b7fd-47d1-8ef4-f02df8e7525d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1022981a-2542-4ea2-b551-4ecbbc83dc7b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11812" + ], + "x-ms-request-id": [ + "7d2f92c9-328c-417a-881d-e2714c070f6e" + ], + "x-ms-correlation-request-id": [ + "7d2f92c9-328c-417a-881d-e2714c070f6e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201333Z:7d2f92c9-328c-417a-881d-e2714c070f6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6de1a730-cf75-44cd-84d0-85f326d2ff90" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11810" + ], + "x-ms-request-id": [ + "ed87375c-0046-4ce9-b0e3-cb078cc1ee98" + ], + "x-ms-correlation-request-id": [ + "ed87375c-0046-4ce9-b0e3-cb078cc1ee98" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201333Z:ed87375c-0046-4ce9-b0e3-cb078cc1ee98" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5c0d192-d994-4461-bbcc-874d1ad9537a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11808" + ], + "x-ms-request-id": [ + "5c018463-4f6e-448f-8c1a-5c356375e4e3" + ], + "x-ms-correlation-request-id": [ + "5c018463-4f6e-448f-8c1a-5c356375e4e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201333Z:5c018463-4f6e-448f-8c1a-5c356375e4e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d3ebc7a-7aff-4b2a-941b-570316d20a28" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11806" + ], + "x-ms-request-id": [ + "1d327923-77ba-4eca-9c18-9b5c8c783aa2" + ], + "x-ms-correlation-request-id": [ + "1d327923-77ba-4eca-9c18-9b5c8c783aa2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201333Z:1d327923-77ba-4eca-9c18-9b5c8c783aa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fffe64cd-f3af-48a7-b8d4-6425d29eb723" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11804" + ], + "x-ms-request-id": [ + "80f5fb51-ee16-4fe1-ba3d-1d6331a11c2c" + ], + "x-ms-correlation-request-id": [ + "80f5fb51-ee16-4fe1-ba3d-1d6331a11c2c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201333Z:80f5fb51-ee16-4fe1-ba3d-1d6331a11c2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8001c6a2-a19b-475a-b574-429a1c2fff61" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11802" + ], + "x-ms-request-id": [ + "ffa6a4c6-3d17-48b2-8283-8388fd3935e5" + ], + "x-ms-correlation-request-id": [ + "ffa6a4c6-3d17-48b2-8283-8388fd3935e5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201334Z:ffa6a4c6-3d17-48b2-8283-8388fd3935e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aab21794-299e-4b23-bc4a-c351d2d60023" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11800" + ], + "x-ms-request-id": [ + "7aeec51b-291a-4f04-9e3b-00cc9f008422" + ], + "x-ms-correlation-request-id": [ + "7aeec51b-291a-4f04-9e3b-00cc9f008422" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201334Z:7aeec51b-291a-4f04-9e3b-00cc9f008422" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84ad8ffa-18a4-4295-ae9c-c38c2c620563" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11798" + ], + "x-ms-request-id": [ + "b6d871b9-e197-43eb-9fd1-37ecade78874" + ], + "x-ms-correlation-request-id": [ + "b6d871b9-e197-43eb-9fd1-37ecade78874" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201334Z:b6d871b9-e197-43eb-9fd1-37ecade78874" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3050a73b-d6a6-4211-b6e0-73f210bef587" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11796" + ], + "x-ms-request-id": [ + "be7e4b8f-55b9-4f55-b755-57899439cb86" + ], + "x-ms-correlation-request-id": [ + "be7e4b8f-55b9-4f55-b755-57899439cb86" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201334Z:be7e4b8f-55b9-4f55-b755-57899439cb86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "492dafe1-9518-40af-b2e2-89113f0e8c2b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11794" + ], + "x-ms-request-id": [ + "7b1ac9fb-e4cf-4731-ae59-9ebf84201108" + ], + "x-ms-correlation-request-id": [ + "7b1ac9fb-e4cf-4731-ae59-9ebf84201108" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201335Z:7b1ac9fb-e4cf-4731-ae59-9ebf84201108" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "573f6aaf-df07-47cc-a59c-9d0b8f2a87a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11792" + ], + "x-ms-request-id": [ + "5354924b-ad52-4a39-a190-47f13d3c2cf8" + ], + "x-ms-correlation-request-id": [ + "5354924b-ad52-4a39-a190-47f13d3c2cf8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201335Z:5354924b-ad52-4a39-a190-47f13d3c2cf8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d56bdb5a-50ff-41f6-8153-475fa1f42420" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11790" + ], + "x-ms-request-id": [ + "d7d7932d-1e0c-4cb3-a1d1-1589e909fba2" + ], + "x-ms-correlation-request-id": [ + "d7d7932d-1e0c-4cb3-a1d1-1589e909fba2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201335Z:d7d7932d-1e0c-4cb3-a1d1-1589e909fba2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03285b0d-17da-4c5f-8e6b-8f75291553c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11788" + ], + "x-ms-request-id": [ + "56ef4384-e60a-40aa-b416-afb5fab6d0a2" + ], + "x-ms-correlation-request-id": [ + "56ef4384-e60a-40aa-b416-afb5fab6d0a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201336Z:56ef4384-e60a-40aa-b416-afb5fab6d0a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c635a093-c63a-477d-8a7f-7f00fd334516" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11786" + ], + "x-ms-request-id": [ + "47421492-0c3c-4b24-903a-ebdefa23d5db" + ], + "x-ms-correlation-request-id": [ + "47421492-0c3c-4b24-903a-ebdefa23d5db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201336Z:47421492-0c3c-4b24-903a-ebdefa23d5db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "791297a0-ecc2-426f-99da-03d520d79198" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11784" + ], + "x-ms-request-id": [ + "bb97b35c-8aa2-43d6-9555-73ddc5995801" + ], + "x-ms-correlation-request-id": [ + "bb97b35c-8aa2-43d6-9555-73ddc5995801" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201336Z:bb97b35c-8aa2-43d6-9555-73ddc5995801" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5962d0a2-d58b-4bd1-aec1-13b4f003c898" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11782" + ], + "x-ms-request-id": [ + "2b065c89-6cb0-45b3-8f89-39c6ee10698c" + ], + "x-ms-correlation-request-id": [ + "2b065c89-6cb0-45b3-8f89-39c6ee10698c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201336Z:2b065c89-6cb0-45b3-8f89-39c6ee10698c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1267d72c-1f9c-46f2-b081-0f1c2f0d6dc7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11780" + ], + "x-ms-request-id": [ + "c648936e-1cb6-4b61-8486-a0f9569fb6c3" + ], + "x-ms-correlation-request-id": [ + "c648936e-1cb6-4b61-8486-a0f9569fb6c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201337Z:c648936e-1cb6-4b61-8486-a0f9569fb6c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9066bf4-f54b-4439-906d-042646dec7f2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11778" + ], + "x-ms-request-id": [ + "fa4e9624-6dfd-4f75-8e9b-a8499f2f2f0c" + ], + "x-ms-correlation-request-id": [ + "fa4e9624-6dfd-4f75-8e9b-a8499f2f2f0c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201337Z:fa4e9624-6dfd-4f75-8e9b-a8499f2f2f0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f312b53-3ede-4c0d-bd67-66d195b1af02" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11776" + ], + "x-ms-request-id": [ + "0b2e4cda-b076-4850-bb74-55725446de86" + ], + "x-ms-correlation-request-id": [ + "0b2e4cda-b076-4850-bb74-55725446de86" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201337Z:0b2e4cda-b076-4850-bb74-55725446de86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e5aaf1d-5ee9-463f-96fc-fc728b6ac082" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11774" + ], + "x-ms-request-id": [ + "e35ac22d-45c2-4d11-bb2f-838982c156d2" + ], + "x-ms-correlation-request-id": [ + "e35ac22d-45c2-4d11-bb2f-838982c156d2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201337Z:e35ac22d-45c2-4d11-bb2f-838982c156d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2c1b491-ba0a-49e7-9814-408c114d3db6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11772" + ], + "x-ms-request-id": [ + "23caf46f-19c1-467e-8417-f4992374268a" + ], + "x-ms-correlation-request-id": [ + "23caf46f-19c1-467e-8417-f4992374268a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201337Z:23caf46f-19c1-467e-8417-f4992374268a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c248c05e-6a3a-4722-a9bd-89c44d5ccaa1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11770" + ], + "x-ms-request-id": [ + "18a94043-3104-4367-be77-7f2202ab1b06" + ], + "x-ms-correlation-request-id": [ + "18a94043-3104-4367-be77-7f2202ab1b06" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201338Z:18a94043-3104-4367-be77-7f2202ab1b06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7848c58a-1831-431c-a12e-1a3a6eafcec9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11768" + ], + "x-ms-request-id": [ + "29d13dd9-ab96-4a2a-9718-b4e085beb967" + ], + "x-ms-correlation-request-id": [ + "29d13dd9-ab96-4a2a-9718-b4e085beb967" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201338Z:29d13dd9-ab96-4a2a-9718-b4e085beb967" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a6f64ab-5d08-4c9e-b58c-e467a5f696e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11766" + ], + "x-ms-request-id": [ + "d4f2229d-d66e-41af-9fa0-5c7de825e753" + ], + "x-ms-correlation-request-id": [ + "d4f2229d-d66e-41af-9fa0-5c7de825e753" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201338Z:d4f2229d-d66e-41af-9fa0-5c7de825e753" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "772263b0-0404-430b-9864-18cef5c64a0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11764" + ], + "x-ms-request-id": [ + "910cb88d-df4d-442e-861a-d43c84d068ba" + ], + "x-ms-correlation-request-id": [ + "910cb88d-df4d-442e-861a-d43c84d068ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201338Z:910cb88d-df4d-442e-861a-d43c84d068ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3afaab7-4eee-4ed8-b49e-9e905c20979a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11762" + ], + "x-ms-request-id": [ + "d7da5f06-ed7c-4ad4-b34c-4af74b8bbf34" + ], + "x-ms-correlation-request-id": [ + "d7da5f06-ed7c-4ad4-b34c-4af74b8bbf34" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201339Z:d7da5f06-ed7c-4ad4-b34c-4af74b8bbf34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9e1accf-41a2-4b4a-aeab-d46ad096d6f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11760" + ], + "x-ms-request-id": [ + "b532b5ae-dcc5-43a7-aa0b-8227305ffde0" + ], + "x-ms-correlation-request-id": [ + "b532b5ae-dcc5-43a7-aa0b-8227305ffde0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201339Z:b532b5ae-dcc5-43a7-aa0b-8227305ffde0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e68fd1f1-3b41-4794-acd4-1f55a9c12f30" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11758" + ], + "x-ms-request-id": [ + "2e58f700-ea5e-40c2-bd39-378a2435e749" + ], + "x-ms-correlation-request-id": [ + "2e58f700-ea5e-40c2-bd39-378a2435e749" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201339Z:2e58f700-ea5e-40c2-bd39-378a2435e749" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58066002-079e-403c-a680-697b4fc09765" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11756" + ], + "x-ms-request-id": [ + "ad4bd960-9049-4c07-ab37-b71604f58f78" + ], + "x-ms-correlation-request-id": [ + "ad4bd960-9049-4c07-ab37-b71604f58f78" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201339Z:ad4bd960-9049-4c07-ab37-b71604f58f78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "599ab907-9c28-45e7-9f24-c2903605071a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11754" + ], + "x-ms-request-id": [ + "573c5d52-ec9e-4bf1-9753-5b6f69dea52c" + ], + "x-ms-correlation-request-id": [ + "573c5d52-ec9e-4bf1-9753-5b6f69dea52c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201339Z:573c5d52-ec9e-4bf1-9753-5b6f69dea52c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f27cb83-3384-489c-acb9-b4a744a9c3df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11752" + ], + "x-ms-request-id": [ + "c6361e9a-a5cf-472b-ab72-47012fc1b3a9" + ], + "x-ms-correlation-request-id": [ + "c6361e9a-a5cf-472b-ab72-47012fc1b3a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201340Z:c6361e9a-a5cf-472b-ab72-47012fc1b3a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0fb559b4-91ab-4c02-a8ca-7d7d162a7a93" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11750" + ], + "x-ms-request-id": [ + "59f54889-3ba5-49d2-afb0-37c3cea7a1bf" + ], + "x-ms-correlation-request-id": [ + "59f54889-3ba5-49d2-afb0-37c3cea7a1bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201340Z:59f54889-3ba5-49d2-afb0-37c3cea7a1bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e52d2126-1821-4574-b07b-c29b414ef01a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11748" + ], + "x-ms-request-id": [ + "3106ef49-3ec8-4782-b1de-fbef97d2408e" + ], + "x-ms-correlation-request-id": [ + "3106ef49-3ec8-4782-b1de-fbef97d2408e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201340Z:3106ef49-3ec8-4782-b1de-fbef97d2408e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c45bb63-2bb0-4846-a5e0-0af0cf3a71d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11746" + ], + "x-ms-request-id": [ + "7e5a2b4c-46c1-4369-9e85-deb83633b6ba" + ], + "x-ms-correlation-request-id": [ + "7e5a2b4c-46c1-4369-9e85-deb83633b6ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201340Z:7e5a2b4c-46c1-4369-9e85-deb83633b6ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9dd3d650-3e77-4637-a80d-cf2a476d9df4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11744" + ], + "x-ms-request-id": [ + "4f4b0323-5417-490f-ba13-d2b204b4bfff" + ], + "x-ms-correlation-request-id": [ + "4f4b0323-5417-490f-ba13-d2b204b4bfff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201341Z:4f4b0323-5417-490f-ba13-d2b204b4bfff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25a70384-b224-41be-9a12-55b1c7bc78c8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11742" + ], + "x-ms-request-id": [ + "4a144f50-eb56-4ee2-a3b5-262528cada48" + ], + "x-ms-correlation-request-id": [ + "4a144f50-eb56-4ee2-a3b5-262528cada48" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201341Z:4a144f50-eb56-4ee2-a3b5-262528cada48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "247e0a1d-119b-4b73-bd8f-51cad7f4b9bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11740" + ], + "x-ms-request-id": [ + "83976fd0-7d2f-4fb5-813d-4ba875aa5aa3" + ], + "x-ms-correlation-request-id": [ + "83976fd0-7d2f-4fb5-813d-4ba875aa5aa3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201341Z:83976fd0-7d2f-4fb5-813d-4ba875aa5aa3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11bda1d1-f421-4a58-9f41-e21a7508a965" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11738" + ], + "x-ms-request-id": [ + "b8ff0d2d-4671-473c-b096-1cabb31dd4a9" + ], + "x-ms-correlation-request-id": [ + "b8ff0d2d-4671-473c-b096-1cabb31dd4a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201341Z:b8ff0d2d-4671-473c-b096-1cabb31dd4a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74745b4a-2cda-4e9f-95e5-1d80949b14cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11736" + ], + "x-ms-request-id": [ + "271039dc-8c3f-48dd-9dc6-9ec95312b980" + ], + "x-ms-correlation-request-id": [ + "271039dc-8c3f-48dd-9dc6-9ec95312b980" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201342Z:271039dc-8c3f-48dd-9dc6-9ec95312b980" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d440f240-7351-48da-b80d-6648a6b4421a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11734" + ], + "x-ms-request-id": [ + "8c8e74db-e864-4999-a05a-caec35eaf793" + ], + "x-ms-correlation-request-id": [ + "8c8e74db-e864-4999-a05a-caec35eaf793" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201342Z:8c8e74db-e864-4999-a05a-caec35eaf793" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4555ea9-ca1a-4ece-8b70-58a61b77a3e5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11732" + ], + "x-ms-request-id": [ + "6a6c89a6-c62b-44c0-9ef6-555b54b46355" + ], + "x-ms-correlation-request-id": [ + "6a6c89a6-c62b-44c0-9ef6-555b54b46355" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201342Z:6a6c89a6-c62b-44c0-9ef6-555b54b46355" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "888e303f-0d43-4cdd-8bec-50dcdeb7950f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11730" + ], + "x-ms-request-id": [ + "230e93a2-5afa-4cf3-a43f-f273f6e80421" + ], + "x-ms-correlation-request-id": [ + "230e93a2-5afa-4cf3-a43f-f273f6e80421" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201342Z:230e93a2-5afa-4cf3-a43f-f273f6e80421" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff4f8a9c-ce1b-4c55-a6ee-be05f301b703" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11728" + ], + "x-ms-request-id": [ + "e84f4ce2-4869-4a1b-8e8b-2e2e9a54ffaa" + ], + "x-ms-correlation-request-id": [ + "e84f4ce2-4869-4a1b-8e8b-2e2e9a54ffaa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201342Z:e84f4ce2-4869-4a1b-8e8b-2e2e9a54ffaa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5831390b-f835-4114-b3c0-681f48cdd12f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11726" + ], + "x-ms-request-id": [ + "399be54d-d405-4e59-ab46-7d84bb0fdb1d" + ], + "x-ms-correlation-request-id": [ + "399be54d-d405-4e59-ab46-7d84bb0fdb1d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201343Z:399be54d-d405-4e59-ab46-7d84bb0fdb1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fadfb3e4-eb46-4822-8104-bc39c3d4ab9d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11724" + ], + "x-ms-request-id": [ + "d2fb95a8-baec-41ce-8c31-52ca04563da4" + ], + "x-ms-correlation-request-id": [ + "d2fb95a8-baec-41ce-8c31-52ca04563da4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201343Z:d2fb95a8-baec-41ce-8c31-52ca04563da4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4e4570d-4691-457d-8dc5-fcdbe60e2b19" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11722" + ], + "x-ms-request-id": [ + "2bb510c6-c910-4ece-9b63-4e9daae16ecf" + ], + "x-ms-correlation-request-id": [ + "2bb510c6-c910-4ece-9b63-4e9daae16ecf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201343Z:2bb510c6-c910-4ece-9b63-4e9daae16ecf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c0fabfa-213b-4d1c-8699-73ae85986368" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11720" + ], + "x-ms-request-id": [ + "8cb60266-ff3d-4b7a-81e5-4662e12d957f" + ], + "x-ms-correlation-request-id": [ + "8cb60266-ff3d-4b7a-81e5-4662e12d957f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201343Z:8cb60266-ff3d-4b7a-81e5-4662e12d957f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e34ec7a-6586-4b46-84a1-d6bb42f5274d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11718" + ], + "x-ms-request-id": [ + "73a341ee-613b-4430-8492-de4c5ea70e83" + ], + "x-ms-correlation-request-id": [ + "73a341ee-613b-4430-8492-de4c5ea70e83" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201344Z:73a341ee-613b-4430-8492-de4c5ea70e83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2b68e61-b754-434b-9c9d-43eb1928a702" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11716" + ], + "x-ms-request-id": [ + "5de15ea1-2778-49d3-b46a-036f3c652a02" + ], + "x-ms-correlation-request-id": [ + "5de15ea1-2778-49d3-b46a-036f3c652a02" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201344Z:5de15ea1-2778-49d3-b46a-036f3c652a02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e22804f8-8d62-4737-84ea-eb3e1211d365" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11714" + ], + "x-ms-request-id": [ + "ca2fd372-76a0-4169-b1dc-9e6da405a215" + ], + "x-ms-correlation-request-id": [ + "ca2fd372-76a0-4169-b1dc-9e6da405a215" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201344Z:ca2fd372-76a0-4169-b1dc-9e6da405a215" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69141e86-f976-4456-a724-7951248c809c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11712" + ], + "x-ms-request-id": [ + "749cda86-1b16-4ee5-956e-173196236b82" + ], + "x-ms-correlation-request-id": [ + "749cda86-1b16-4ee5-956e-173196236b82" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201344Z:749cda86-1b16-4ee5-956e-173196236b82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "19f032c6-c481-4540-92d0-921d9ab5f0ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11710" + ], + "x-ms-request-id": [ + "7555b53e-9ed8-418a-b178-06273afc8fde" + ], + "x-ms-correlation-request-id": [ + "7555b53e-9ed8-418a-b178-06273afc8fde" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201344Z:7555b53e-9ed8-418a-b178-06273afc8fde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d0b3096a-5717-4768-8a0a-93be4a0f3db8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11708" + ], + "x-ms-request-id": [ + "5c17e4a7-c8c4-492f-aea8-df966c4f22a0" + ], + "x-ms-correlation-request-id": [ + "5c17e4a7-c8c4-492f-aea8-df966c4f22a0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201345Z:5c17e4a7-c8c4-492f-aea8-df966c4f22a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "729d6849-fd08-460f-b8e6-2233e23952f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11706" + ], + "x-ms-request-id": [ + "9392d245-5298-4e41-950c-ea190d9bb49a" + ], + "x-ms-correlation-request-id": [ + "9392d245-5298-4e41-950c-ea190d9bb49a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201345Z:9392d245-5298-4e41-950c-ea190d9bb49a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17d6763d-513a-40c3-a0c7-4077fd6e5578" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11704" + ], + "x-ms-request-id": [ + "ec7873fa-2567-4e7b-942c-d0ceb3729c40" + ], + "x-ms-correlation-request-id": [ + "ec7873fa-2567-4e7b-942c-d0ceb3729c40" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201345Z:ec7873fa-2567-4e7b-942c-d0ceb3729c40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4825ab7-11ff-4d90-8571-875d18675c9a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11702" + ], + "x-ms-request-id": [ + "f27dc5b6-8ba2-43d8-9a72-a1afce51778a" + ], + "x-ms-correlation-request-id": [ + "f27dc5b6-8ba2-43d8-9a72-a1afce51778a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201345Z:f27dc5b6-8ba2-43d8-9a72-a1afce51778a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4962163-f70b-46e3-97f1-c9972f625dfc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11700" + ], + "x-ms-request-id": [ + "e515a4b9-f9d8-458a-af91-2900189ce56e" + ], + "x-ms-correlation-request-id": [ + "e515a4b9-f9d8-458a-af91-2900189ce56e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201346Z:e515a4b9-f9d8-458a-af91-2900189ce56e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f149115-0432-41cd-9bb1-edebcdbea56a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11698" + ], + "x-ms-request-id": [ + "a86b7ee0-8a8a-45d8-bd5c-72147c28c806" + ], + "x-ms-correlation-request-id": [ + "a86b7ee0-8a8a-45d8-bd5c-72147c28c806" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201346Z:a86b7ee0-8a8a-45d8-bd5c-72147c28c806" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7be78a8d-407c-4d12-868d-4c061d88845d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11696" + ], + "x-ms-request-id": [ + "4408fefc-597e-40f5-ae21-780a9cfddf2a" + ], + "x-ms-correlation-request-id": [ + "4408fefc-597e-40f5-ae21-780a9cfddf2a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201346Z:4408fefc-597e-40f5-ae21-780a9cfddf2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c252368-60ae-4c49-bf41-fa39ddad38fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11694" + ], + "x-ms-request-id": [ + "084e9af2-f162-4fb5-b553-dd812e850edc" + ], + "x-ms-correlation-request-id": [ + "084e9af2-f162-4fb5-b553-dd812e850edc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201346Z:084e9af2-f162-4fb5-b553-dd812e850edc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3141f08d-c395-489c-b309-eeb4a9a3a242" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11692" + ], + "x-ms-request-id": [ + "1436dc5d-af95-4bd2-a427-a77647168b23" + ], + "x-ms-correlation-request-id": [ + "1436dc5d-af95-4bd2-a427-a77647168b23" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201347Z:1436dc5d-af95-4bd2-a427-a77647168b23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9078bc5-2721-414e-bd92-a60e69dd301a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11690" + ], + "x-ms-request-id": [ + "ecc3ff03-453f-448d-8a4f-af9e8f3fbf18" + ], + "x-ms-correlation-request-id": [ + "ecc3ff03-453f-448d-8a4f-af9e8f3fbf18" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201347Z:ecc3ff03-453f-448d-8a4f-af9e8f3fbf18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0817798c-233d-4615-82d2-35dd047a6c5f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11688" + ], + "x-ms-request-id": [ + "544e73b6-0e40-42cb-9a37-18499eb0c81b" + ], + "x-ms-correlation-request-id": [ + "544e73b6-0e40-42cb-9a37-18499eb0c81b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201347Z:544e73b6-0e40-42cb-9a37-18499eb0c81b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad70f271-a353-4359-84df-30fdcaf381f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11686" + ], + "x-ms-request-id": [ + "688a4b5b-3b93-4cef-acce-17b9c0e7a3bf" + ], + "x-ms-correlation-request-id": [ + "688a4b5b-3b93-4cef-acce-17b9c0e7a3bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201347Z:688a4b5b-3b93-4cef-acce-17b9c0e7a3bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63e40520-0564-4f56-92e8-b684274beac9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11684" + ], + "x-ms-request-id": [ + "2b68eddc-4917-4694-b7b7-d2c23614e11d" + ], + "x-ms-correlation-request-id": [ + "2b68eddc-4917-4694-b7b7-d2c23614e11d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201347Z:2b68eddc-4917-4694-b7b7-d2c23614e11d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "385795bd-a155-4d10-8fc2-3576c4d23632" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11682" + ], + "x-ms-request-id": [ + "504ff6a2-9f07-496a-9455-270434141e74" + ], + "x-ms-correlation-request-id": [ + "504ff6a2-9f07-496a-9455-270434141e74" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201348Z:504ff6a2-9f07-496a-9455-270434141e74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfcbe65c-77ed-49f4-9742-d30ac0be4209" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11680" + ], + "x-ms-request-id": [ + "2050ade1-9924-4969-88d4-cc5436ffd838" + ], + "x-ms-correlation-request-id": [ + "2050ade1-9924-4969-88d4-cc5436ffd838" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201348Z:2050ade1-9924-4969-88d4-cc5436ffd838" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b014d19c-8f95-4543-8d98-bfcd4ef1f7a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11678" + ], + "x-ms-request-id": [ + "1c6e0533-00ff-478f-a572-c61df326ffe7" + ], + "x-ms-correlation-request-id": [ + "1c6e0533-00ff-478f-a572-c61df326ffe7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201348Z:1c6e0533-00ff-478f-a572-c61df326ffe7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91a74bce-6411-48ea-aa81-180fbd2e21bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11676" + ], + "x-ms-request-id": [ + "8b54b9aa-eda0-4d86-9e9b-f64692a48c77" + ], + "x-ms-correlation-request-id": [ + "8b54b9aa-eda0-4d86-9e9b-f64692a48c77" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201348Z:8b54b9aa-eda0-4d86-9e9b-f64692a48c77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eeab31e0-85fb-4f40-b426-d8f7359bf296" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11674" + ], + "x-ms-request-id": [ + "f927430d-4d74-4d03-9f11-230be67f1279" + ], + "x-ms-correlation-request-id": [ + "f927430d-4d74-4d03-9f11-230be67f1279" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201349Z:f927430d-4d74-4d03-9f11-230be67f1279" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "efbc3c4b-b42f-44b5-91ae-9f73a1c8e1af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11672" + ], + "x-ms-request-id": [ + "cb9b3c0c-bdac-453d-a7f0-2220d89095cf" + ], + "x-ms-correlation-request-id": [ + "cb9b3c0c-bdac-453d-a7f0-2220d89095cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201349Z:cb9b3c0c-bdac-453d-a7f0-2220d89095cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81a63283-545e-4139-8ec8-764abc27fc57" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11670" + ], + "x-ms-request-id": [ + "b1dc5d12-2b09-414f-93f2-af953b0ace26" + ], + "x-ms-correlation-request-id": [ + "b1dc5d12-2b09-414f-93f2-af953b0ace26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201349Z:b1dc5d12-2b09-414f-93f2-af953b0ace26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4714042-4688-4b65-93dc-675c6bc8cd52" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11668" + ], + "x-ms-request-id": [ + "6e860358-6b72-49d0-ae89-9c946c42da0c" + ], + "x-ms-correlation-request-id": [ + "6e860358-6b72-49d0-ae89-9c946c42da0c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201349Z:6e860358-6b72-49d0-ae89-9c946c42da0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dffaac1d-c689-471e-9edf-3fe60f9691ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11666" + ], + "x-ms-request-id": [ + "251e38cd-60d4-4c2d-b771-1da8994c8c81" + ], + "x-ms-correlation-request-id": [ + "251e38cd-60d4-4c2d-b771-1da8994c8c81" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201349Z:251e38cd-60d4-4c2d-b771-1da8994c8c81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29991c82-9d4b-4bf9-8ff8-6935773e964e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11664" + ], + "x-ms-request-id": [ + "8a5eb6cb-ae12-4e99-92fe-676b67596ee5" + ], + "x-ms-correlation-request-id": [ + "8a5eb6cb-ae12-4e99-92fe-676b67596ee5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201350Z:8a5eb6cb-ae12-4e99-92fe-676b67596ee5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cace7bb4-26f5-447d-9ce4-99810f712173" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11662" + ], + "x-ms-request-id": [ + "b76e44fd-e3be-4b21-aec5-aee1ed5d38d7" + ], + "x-ms-correlation-request-id": [ + "b76e44fd-e3be-4b21-aec5-aee1ed5d38d7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201350Z:b76e44fd-e3be-4b21-aec5-aee1ed5d38d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58d3a368-604b-4c44-a98a-8349b3949dc2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11660" + ], + "x-ms-request-id": [ + "44ce9038-6775-4656-92d1-39d113fe6ad2" + ], + "x-ms-correlation-request-id": [ + "44ce9038-6775-4656-92d1-39d113fe6ad2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201350Z:44ce9038-6775-4656-92d1-39d113fe6ad2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "faf568f2-0d83-4e57-bb41-77112585f5c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11658" + ], + "x-ms-request-id": [ + "60bf38fe-f9e4-44d7-b4be-7cf23640b038" + ], + "x-ms-correlation-request-id": [ + "60bf38fe-f9e4-44d7-b4be-7cf23640b038" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201350Z:60bf38fe-f9e4-44d7-b4be-7cf23640b038" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f55b7acc-f8d3-4c5c-8478-f320015e6378" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11656" + ], + "x-ms-request-id": [ + "607ac4ee-26ed-4a1b-9ff5-2d0f89750cdd" + ], + "x-ms-correlation-request-id": [ + "607ac4ee-26ed-4a1b-9ff5-2d0f89750cdd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201351Z:607ac4ee-26ed-4a1b-9ff5-2d0f89750cdd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8511a2bd-9bbf-4c8a-90a2-e905ca7ce7ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11654" + ], + "x-ms-request-id": [ + "a234fe35-720c-4acc-8895-d36b28ff1050" + ], + "x-ms-correlation-request-id": [ + "a234fe35-720c-4acc-8895-d36b28ff1050" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201351Z:a234fe35-720c-4acc-8895-d36b28ff1050" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed5e6f37-9bd1-45d5-870b-4fa3cb9e15a0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11652" + ], + "x-ms-request-id": [ + "02f3d985-19e5-4f8d-8335-869a382f3931" + ], + "x-ms-correlation-request-id": [ + "02f3d985-19e5-4f8d-8335-869a382f3931" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201351Z:02f3d985-19e5-4f8d-8335-869a382f3931" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62c5cbe2-923e-4e10-8c8f-6bd7034e6b56" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11650" + ], + "x-ms-request-id": [ + "1ee8471f-713c-4d55-8bb8-c024ecacaba7" + ], + "x-ms-correlation-request-id": [ + "1ee8471f-713c-4d55-8bb8-c024ecacaba7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201351Z:1ee8471f-713c-4d55-8bb8-c024ecacaba7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3edf917f-2ca9-47c8-ac79-4001897a90c8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11648" + ], + "x-ms-request-id": [ + "7e08740a-98ea-4c78-b44d-9d3895d039db" + ], + "x-ms-correlation-request-id": [ + "7e08740a-98ea-4c78-b44d-9d3895d039db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201351Z:7e08740a-98ea-4c78-b44d-9d3895d039db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5714369-c62a-479c-b57c-97aa067448ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11646" + ], + "x-ms-request-id": [ + "776cf71e-7412-4806-89e3-cb2ef0883078" + ], + "x-ms-correlation-request-id": [ + "776cf71e-7412-4806-89e3-cb2ef0883078" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201352Z:776cf71e-7412-4806-89e3-cb2ef0883078" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "274fd6b5-0127-4adc-a068-90df71a42d85" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11644" + ], + "x-ms-request-id": [ + "486b919f-a266-4614-94ce-628e0b3a9f49" + ], + "x-ms-correlation-request-id": [ + "486b919f-a266-4614-94ce-628e0b3a9f49" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201352Z:486b919f-a266-4614-94ce-628e0b3a9f49" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4607e81-8730-4c2f-9498-1de9412e81c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11642" + ], + "x-ms-request-id": [ + "8cd7b31d-3f50-48fb-a533-1083875a1da5" + ], + "x-ms-correlation-request-id": [ + "8cd7b31d-3f50-48fb-a533-1083875a1da5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201352Z:8cd7b31d-3f50-48fb-a533-1083875a1da5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4dc0ed7a-7bb3-4986-b4a7-729b59d4a39c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11640" + ], + "x-ms-request-id": [ + "0a4b1d99-8752-47c0-abf4-cf94154f4286" + ], + "x-ms-correlation-request-id": [ + "0a4b1d99-8752-47c0-abf4-cf94154f4286" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201352Z:0a4b1d99-8752-47c0-abf4-cf94154f4286" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "431bf608-a7d4-4527-ac06-27cd9590e055" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11638" + ], + "x-ms-request-id": [ + "40852881-3f61-4eeb-b82b-a943bc6b4ee6" + ], + "x-ms-correlation-request-id": [ + "40852881-3f61-4eeb-b82b-a943bc6b4ee6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201353Z:40852881-3f61-4eeb-b82b-a943bc6b4ee6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4e6f802-3f9b-41bc-a2dd-62e647c5be0e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11636" + ], + "x-ms-request-id": [ + "2c434636-23a7-4467-bf3e-17198263c9d1" + ], + "x-ms-correlation-request-id": [ + "2c434636-23a7-4467-bf3e-17198263c9d1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201353Z:2c434636-23a7-4467-bf3e-17198263c9d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c040a722-b38f-4d87-a376-220da1ddc8c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11634" + ], + "x-ms-request-id": [ + "a75adfb0-9325-4f45-82dd-55d88549ed69" + ], + "x-ms-correlation-request-id": [ + "a75adfb0-9325-4f45-82dd-55d88549ed69" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201353Z:a75adfb0-9325-4f45-82dd-55d88549ed69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "46b4f062-a4e7-4b31-a37a-5d5085b0693b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11632" + ], + "x-ms-request-id": [ + "26a9f4f7-bc28-4a2b-afb6-692a5ed092d0" + ], + "x-ms-correlation-request-id": [ + "26a9f4f7-bc28-4a2b-afb6-692a5ed092d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201353Z:26a9f4f7-bc28-4a2b-afb6-692a5ed092d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52c23ef0-d4f7-4fae-910b-c16aac2e44c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11630" + ], + "x-ms-request-id": [ + "90f55078-4bf5-47ee-9d2c-09deca07e619" + ], + "x-ms-correlation-request-id": [ + "90f55078-4bf5-47ee-9d2c-09deca07e619" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201353Z:90f55078-4bf5-47ee-9d2c-09deca07e619" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56f42f74-e6a7-4d64-b44a-ec0921b1a388" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11628" + ], + "x-ms-request-id": [ + "f17e2853-43b8-4ac4-9489-aef558d8fd7d" + ], + "x-ms-correlation-request-id": [ + "f17e2853-43b8-4ac4-9489-aef558d8fd7d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201354Z:f17e2853-43b8-4ac4-9489-aef558d8fd7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10eefa66-5808-4d0c-878d-bb2ed82008c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11626" + ], + "x-ms-request-id": [ + "3a5e6aaf-432a-47ca-88a4-a91f3992788a" + ], + "x-ms-correlation-request-id": [ + "3a5e6aaf-432a-47ca-88a4-a91f3992788a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201354Z:3a5e6aaf-432a-47ca-88a4-a91f3992788a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de49f4dc-d4b4-4874-93eb-6b16a37dbbdc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11624" + ], + "x-ms-request-id": [ + "cffb3f6b-ee6a-4f7e-b236-4f48482898cc" + ], + "x-ms-correlation-request-id": [ + "cffb3f6b-ee6a-4f7e-b236-4f48482898cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201354Z:cffb3f6b-ee6a-4f7e-b236-4f48482898cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b069777-8380-4da9-b8e6-b572d38955b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11622" + ], + "x-ms-request-id": [ + "9c06bbaf-ee26-46a9-a2a8-0a19f4986cfb" + ], + "x-ms-correlation-request-id": [ + "9c06bbaf-ee26-46a9-a2a8-0a19f4986cfb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201354Z:9c06bbaf-ee26-46a9-a2a8-0a19f4986cfb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7b7578d-439a-4b21-b32d-49717d1c50e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11620" + ], + "x-ms-request-id": [ + "5addfa54-00da-46f4-8baf-d66fb99155fc" + ], + "x-ms-correlation-request-id": [ + "5addfa54-00da-46f4-8baf-d66fb99155fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201355Z:5addfa54-00da-46f4-8baf-d66fb99155fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66753120-8d20-459d-b8eb-7cbfb738be0f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11618" + ], + "x-ms-request-id": [ + "98b541e6-1ae5-49b7-af5a-b2da1623287f" + ], + "x-ms-correlation-request-id": [ + "98b541e6-1ae5-49b7-af5a-b2da1623287f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201355Z:98b541e6-1ae5-49b7-af5a-b2da1623287f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c82083cd-5612-4476-9ec2-217f653848ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11616" + ], + "x-ms-request-id": [ + "86e8979e-fb31-4fb0-834e-6f5521a10a84" + ], + "x-ms-correlation-request-id": [ + "86e8979e-fb31-4fb0-834e-6f5521a10a84" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201355Z:86e8979e-fb31-4fb0-834e-6f5521a10a84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3633e4b-deb7-4b4f-9e26-4f6ac8e7b2e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11614" + ], + "x-ms-request-id": [ + "f254d258-07bd-4834-a650-abec56f7d31b" + ], + "x-ms-correlation-request-id": [ + "f254d258-07bd-4834-a650-abec56f7d31b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201355Z:f254d258-07bd-4834-a650-abec56f7d31b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56ea91ce-93b5-4bac-a359-2f248a7eabf4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11612" + ], + "x-ms-request-id": [ + "4a6e13b6-2998-4a81-8dc0-6505ad288d71" + ], + "x-ms-correlation-request-id": [ + "4a6e13b6-2998-4a81-8dc0-6505ad288d71" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201355Z:4a6e13b6-2998-4a81-8dc0-6505ad288d71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb0fb553-bae7-4bd1-9d9a-d7d1d85d1c71" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11610" + ], + "x-ms-request-id": [ + "a13cfeae-06fa-4c0c-a78d-d3cef644c7a3" + ], + "x-ms-correlation-request-id": [ + "a13cfeae-06fa-4c0c-a78d-d3cef644c7a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201356Z:a13cfeae-06fa-4c0c-a78d-d3cef644c7a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ddb57ed2-06dd-410e-81be-27ba95af517e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11608" + ], + "x-ms-request-id": [ + "4c6b50dc-a964-407c-a299-57b0a1d478cb" + ], + "x-ms-correlation-request-id": [ + "4c6b50dc-a964-407c-a299-57b0a1d478cb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201356Z:4c6b50dc-a964-407c-a299-57b0a1d478cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9bdeb0e-587b-425b-82f7-c3734877b1c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11606" + ], + "x-ms-request-id": [ + "89253cf7-503d-4f72-bc21-13e15a3d2430" + ], + "x-ms-correlation-request-id": [ + "89253cf7-503d-4f72-bc21-13e15a3d2430" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201356Z:89253cf7-503d-4f72-bc21-13e15a3d2430" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b23c4e7-a00b-4bd4-99cd-0f784ce3eae7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11604" + ], + "x-ms-request-id": [ + "8a00ec9a-4186-48ac-84fb-cfe9b8e9cee8" + ], + "x-ms-correlation-request-id": [ + "8a00ec9a-4186-48ac-84fb-cfe9b8e9cee8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201356Z:8a00ec9a-4186-48ac-84fb-cfe9b8e9cee8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4880c05f-5489-42bc-80ec-5e7e2f44aec1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11602" + ], + "x-ms-request-id": [ + "ba347ad0-3cfd-43bc-aea0-6c69d810f8fc" + ], + "x-ms-correlation-request-id": [ + "ba347ad0-3cfd-43bc-aea0-6c69d810f8fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201357Z:ba347ad0-3cfd-43bc-aea0-6c69d810f8fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bd139de-43ea-47eb-947c-398f8cd08579" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11600" + ], + "x-ms-request-id": [ + "3ad3c443-d169-48ab-aa8f-696561671bc7" + ], + "x-ms-correlation-request-id": [ + "3ad3c443-d169-48ab-aa8f-696561671bc7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201357Z:3ad3c443-d169-48ab-aa8f-696561671bc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4f4d2eb6-6085-412a-83b8-8677c5a03d43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11598" + ], + "x-ms-request-id": [ + "d0cf4a7a-e8ec-4e8a-939b-e4100eb6ea58" + ], + "x-ms-correlation-request-id": [ + "d0cf4a7a-e8ec-4e8a-939b-e4100eb6ea58" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201357Z:d0cf4a7a-e8ec-4e8a-939b-e4100eb6ea58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14fa53bf-6720-496b-9b91-71e291585155" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11596" + ], + "x-ms-request-id": [ + "b1a9d762-4096-4683-97a4-1989ca2efcd7" + ], + "x-ms-correlation-request-id": [ + "b1a9d762-4096-4683-97a4-1989ca2efcd7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201357Z:b1a9d762-4096-4683-97a4-1989ca2efcd7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e1d8baa-2e0f-4c16-b461-2ee5449ab1c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11594" + ], + "x-ms-request-id": [ + "dd2e6bb4-fb57-484c-a17a-5e203fc74826" + ], + "x-ms-correlation-request-id": [ + "dd2e6bb4-fb57-484c-a17a-5e203fc74826" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201358Z:dd2e6bb4-fb57-484c-a17a-5e203fc74826" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b0ec814-4e58-4601-bea8-96d2162b728d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11592" + ], + "x-ms-request-id": [ + "21fc821d-2e3f-4246-8a1a-369dc83f78f0" + ], + "x-ms-correlation-request-id": [ + "21fc821d-2e3f-4246-8a1a-369dc83f78f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201358Z:21fc821d-2e3f-4246-8a1a-369dc83f78f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80336b70-614c-43b5-832d-039da167f104" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11590" + ], + "x-ms-request-id": [ + "09252fb1-02fe-46b5-885e-b95bbd15dcd1" + ], + "x-ms-correlation-request-id": [ + "09252fb1-02fe-46b5-885e-b95bbd15dcd1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201358Z:09252fb1-02fe-46b5-885e-b95bbd15dcd1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ef24179-3bf4-4aa5-9747-a27b0c45be03" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11588" + ], + "x-ms-request-id": [ + "e4a7c557-e89d-49e1-9a0b-09f59c03ae31" + ], + "x-ms-correlation-request-id": [ + "e4a7c557-e89d-49e1-9a0b-09f59c03ae31" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201358Z:e4a7c557-e89d-49e1-9a0b-09f59c03ae31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9312681d-8f3b-4d01-a7ff-7396c9c262b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11586" + ], + "x-ms-request-id": [ + "00080e20-36f1-4ba2-853c-67f74d973aec" + ], + "x-ms-correlation-request-id": [ + "00080e20-36f1-4ba2-853c-67f74d973aec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201358Z:00080e20-36f1-4ba2-853c-67f74d973aec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee0499c8-a757-4602-8e8e-931cc3cfd4ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11584" + ], + "x-ms-request-id": [ + "41c5af6a-6564-4c9e-8c0b-aef4753bca30" + ], + "x-ms-correlation-request-id": [ + "41c5af6a-6564-4c9e-8c0b-aef4753bca30" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201359Z:41c5af6a-6564-4c9e-8c0b-aef4753bca30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53e342b3-f77f-434e-a081-e0fc439fada1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11582" + ], + "x-ms-request-id": [ + "65586fe0-5727-4791-a6d6-71b75c758d0b" + ], + "x-ms-correlation-request-id": [ + "65586fe0-5727-4791-a6d6-71b75c758d0b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201359Z:65586fe0-5727-4791-a6d6-71b75c758d0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1dcc7f8b-3007-4d1d-9485-3eb552310d33" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11580" + ], + "x-ms-request-id": [ + "b6f73e2b-43d0-47c3-a232-2623f5c2d3b6" + ], + "x-ms-correlation-request-id": [ + "b6f73e2b-43d0-47c3-a232-2623f5c2d3b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201359Z:b6f73e2b-43d0-47c3-a232-2623f5c2d3b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8091b7e-2d6e-4fca-ba76-57535f9a6302" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11578" + ], + "x-ms-request-id": [ + "8c0213d2-0d77-4be2-9877-93d5d72049b8" + ], + "x-ms-correlation-request-id": [ + "8c0213d2-0d77-4be2-9877-93d5d72049b8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201359Z:8c0213d2-0d77-4be2-9877-93d5d72049b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "528a0f95-b162-49d8-8df4-ee2dcccadcdb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11576" + ], + "x-ms-request-id": [ + "776bc10b-fbff-41b4-8bde-75fafa3ac6ce" + ], + "x-ms-correlation-request-id": [ + "776bc10b-fbff-41b4-8bde-75fafa3ac6ce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201400Z:776bc10b-fbff-41b4-8bde-75fafa3ac6ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0869ea10-1eab-4300-b46a-090fba132f08" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11574" + ], + "x-ms-request-id": [ + "5a5b3a5d-0955-463b-a2fa-a8b1286bf43c" + ], + "x-ms-correlation-request-id": [ + "5a5b3a5d-0955-463b-a2fa-a8b1286bf43c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201400Z:5a5b3a5d-0955-463b-a2fa-a8b1286bf43c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a690f8a-8abb-4999-9e67-857ce6978f99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11572" + ], + "x-ms-request-id": [ + "026adb6e-34a7-45f0-a809-1bf01c45fe44" + ], + "x-ms-correlation-request-id": [ + "026adb6e-34a7-45f0-a809-1bf01c45fe44" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201400Z:026adb6e-34a7-45f0-a809-1bf01c45fe44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89827050-1ea6-43bf-b40e-c048c2c167ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11570" + ], + "x-ms-request-id": [ + "d87555c2-490b-4538-a16f-da7c1dab38c6" + ], + "x-ms-correlation-request-id": [ + "d87555c2-490b-4538-a16f-da7c1dab38c6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201400Z:d87555c2-490b-4538-a16f-da7c1dab38c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca9edf58-9c92-4550-8139-20a64c68c05c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11568" + ], + "x-ms-request-id": [ + "b6a0d8f9-5f8c-4307-8941-6663a3692fd9" + ], + "x-ms-correlation-request-id": [ + "b6a0d8f9-5f8c-4307-8941-6663a3692fd9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201400Z:b6a0d8f9-5f8c-4307-8941-6663a3692fd9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c04fe696-06a5-46a7-9724-cf7951cafdea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11566" + ], + "x-ms-request-id": [ + "d589dc4d-4e67-4301-a107-9f06ff373f43" + ], + "x-ms-correlation-request-id": [ + "d589dc4d-4e67-4301-a107-9f06ff373f43" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201401Z:d589dc4d-4e67-4301-a107-9f06ff373f43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64c892c1-4606-4360-bf3f-fcce6a03c203" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11564" + ], + "x-ms-request-id": [ + "9a564891-4fd7-4243-a032-a261dfd0c37e" + ], + "x-ms-correlation-request-id": [ + "9a564891-4fd7-4243-a032-a261dfd0c37e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201401Z:9a564891-4fd7-4243-a032-a261dfd0c37e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe8c7813-5614-4335-af76-2f67bb324005" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11562" + ], + "x-ms-request-id": [ + "e2e1b1ae-d980-4028-aaff-4db0f08ef030" + ], + "x-ms-correlation-request-id": [ + "e2e1b1ae-d980-4028-aaff-4db0f08ef030" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201401Z:e2e1b1ae-d980-4028-aaff-4db0f08ef030" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc623727-9ad2-41c3-9588-c7104800ee21" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11560" + ], + "x-ms-request-id": [ + "c5dc5390-6299-4704-96fe-93bf7f2f13e5" + ], + "x-ms-correlation-request-id": [ + "c5dc5390-6299-4704-96fe-93bf7f2f13e5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201401Z:c5dc5390-6299-4704-96fe-93bf7f2f13e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7dd7132-a5c1-4807-a790-e9c77272437e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11558" + ], + "x-ms-request-id": [ + "4ce6e657-6f52-439a-904a-7dd9e3a31ee4" + ], + "x-ms-correlation-request-id": [ + "4ce6e657-6f52-439a-904a-7dd9e3a31ee4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201402Z:4ce6e657-6f52-439a-904a-7dd9e3a31ee4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2ac40f7-36ab-4587-bbdd-eadf6bab4f46" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11556" + ], + "x-ms-request-id": [ + "4e8b4f63-4247-4bd6-9d4b-1a4a0bd6c7f6" + ], + "x-ms-correlation-request-id": [ + "4e8b4f63-4247-4bd6-9d4b-1a4a0bd6c7f6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201402Z:4e8b4f63-4247-4bd6-9d4b-1a4a0bd6c7f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a5f81fa-bb38-4c2e-b059-d2d174361585" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11554" + ], + "x-ms-request-id": [ + "99cf43b9-cdb4-40a0-883d-ea738259913f" + ], + "x-ms-correlation-request-id": [ + "99cf43b9-cdb4-40a0-883d-ea738259913f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201402Z:99cf43b9-cdb4-40a0-883d-ea738259913f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbbc9327-d98e-44c2-84af-3842ab02a5ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11552" + ], + "x-ms-request-id": [ + "14b00cb1-5c03-46e6-a861-2ce271345bd8" + ], + "x-ms-correlation-request-id": [ + "14b00cb1-5c03-46e6-a861-2ce271345bd8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201402Z:14b00cb1-5c03-46e6-a861-2ce271345bd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30ea482a-fbb0-4439-abd0-cf61481a4e48" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11550" + ], + "x-ms-request-id": [ + "caed84e5-7aef-4bc3-9f32-4786cf7cc1f1" + ], + "x-ms-correlation-request-id": [ + "caed84e5-7aef-4bc3-9f32-4786cf7cc1f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201403Z:caed84e5-7aef-4bc3-9f32-4786cf7cc1f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44494dc4-7375-4b6a-8f4d-f5711b90dc98" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11548" + ], + "x-ms-request-id": [ + "a0db3169-0b73-428c-9fd6-6a941aaaef21" + ], + "x-ms-correlation-request-id": [ + "a0db3169-0b73-428c-9fd6-6a941aaaef21" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201403Z:a0db3169-0b73-428c-9fd6-6a941aaaef21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a612c0e-d12d-4584-8881-4081edef41bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11546" + ], + "x-ms-request-id": [ + "89a42634-dec8-4bb6-a450-078d056116b3" + ], + "x-ms-correlation-request-id": [ + "89a42634-dec8-4bb6-a450-078d056116b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201403Z:89a42634-dec8-4bb6-a450-078d056116b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23434117-e071-493b-b2ee-8d1d459585e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11544" + ], + "x-ms-request-id": [ + "f9e5c6dc-1255-4e1d-af86-bdb371e9a721" + ], + "x-ms-correlation-request-id": [ + "f9e5c6dc-1255-4e1d-af86-bdb371e9a721" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201403Z:f9e5c6dc-1255-4e1d-af86-bdb371e9a721" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "319b64d1-e8bd-43d2-891b-0a037d9fc7dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11542" + ], + "x-ms-request-id": [ + "6044c712-62c6-4490-b6b1-0e2ea3ec6c43" + ], + "x-ms-correlation-request-id": [ + "6044c712-62c6-4490-b6b1-0e2ea3ec6c43" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201403Z:6044c712-62c6-4490-b6b1-0e2ea3ec6c43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44a73f60-af77-45c2-bd32-0ebc593c9547" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11540" + ], + "x-ms-request-id": [ + "72afb7c9-0e2e-4e07-bbbd-757b9c0683ae" + ], + "x-ms-correlation-request-id": [ + "72afb7c9-0e2e-4e07-bbbd-757b9c0683ae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201404Z:72afb7c9-0e2e-4e07-bbbd-757b9c0683ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "809f3a65-71b0-4ec0-b67b-bd0caff69c3f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11538" + ], + "x-ms-request-id": [ + "ddb2ea77-51d8-43ba-b0be-4e2d56e2436b" + ], + "x-ms-correlation-request-id": [ + "ddb2ea77-51d8-43ba-b0be-4e2d56e2436b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201404Z:ddb2ea77-51d8-43ba-b0be-4e2d56e2436b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50ffcf2d-fa79-4661-a1bf-84e575d10f15" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11536" + ], + "x-ms-request-id": [ + "8f15413a-af45-40ea-a624-9575a9c5fa0c" + ], + "x-ms-correlation-request-id": [ + "8f15413a-af45-40ea-a624-9575a9c5fa0c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201404Z:8f15413a-af45-40ea-a624-9575a9c5fa0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68c21736-c598-44f7-8522-fdf2050ce43b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11534" + ], + "x-ms-request-id": [ + "d69acc34-c1cc-4ac0-843d-d7a7bbed1d86" + ], + "x-ms-correlation-request-id": [ + "d69acc34-c1cc-4ac0-843d-d7a7bbed1d86" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201404Z:d69acc34-c1cc-4ac0-843d-d7a7bbed1d86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "efa033d1-aa16-4e0d-979a-41f58695e516" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11532" + ], + "x-ms-request-id": [ + "649dbedf-d315-411f-b9a2-4814946ee59b" + ], + "x-ms-correlation-request-id": [ + "649dbedf-d315-411f-b9a2-4814946ee59b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201405Z:649dbedf-d315-411f-b9a2-4814946ee59b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bec405e0-6ef7-47d9-a667-bc86ec2c5cd8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11530" + ], + "x-ms-request-id": [ + "4442d939-d2e8-4d1a-aad9-977694b4e3ed" + ], + "x-ms-correlation-request-id": [ + "4442d939-d2e8-4d1a-aad9-977694b4e3ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201405Z:4442d939-d2e8-4d1a-aad9-977694b4e3ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a251e936-6201-4e92-91f7-3d41df036fbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11528" + ], + "x-ms-request-id": [ + "1c15e35d-2e9d-4394-abc1-eb3694cdb1a6" + ], + "x-ms-correlation-request-id": [ + "1c15e35d-2e9d-4394-abc1-eb3694cdb1a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201405Z:1c15e35d-2e9d-4394-abc1-eb3694cdb1a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5a65d0d-b0ca-4a10-8102-2a4ebd1cce73" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11526" + ], + "x-ms-request-id": [ + "cf60cd12-c4db-41fa-89c1-fd1c50adcc17" + ], + "x-ms-correlation-request-id": [ + "cf60cd12-c4db-41fa-89c1-fd1c50adcc17" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201405Z:cf60cd12-c4db-41fa-89c1-fd1c50adcc17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a32bd4b5-34a4-41f6-96d4-c6feae036a41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11524" + ], + "x-ms-request-id": [ + "0acc9bb5-7c15-4d0e-814a-94aad891ecb4" + ], + "x-ms-correlation-request-id": [ + "0acc9bb5-7c15-4d0e-814a-94aad891ecb4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201405Z:0acc9bb5-7c15-4d0e-814a-94aad891ecb4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6d9645f-f2df-4bc6-afb6-7d4ed5459232" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11522" + ], + "x-ms-request-id": [ + "3e108c73-97df-4960-9897-425a83a2750f" + ], + "x-ms-correlation-request-id": [ + "3e108c73-97df-4960-9897-425a83a2750f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201406Z:3e108c73-97df-4960-9897-425a83a2750f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1a7d8fc-d3b3-439a-9f23-bf8f6ec17c2b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11520" + ], + "x-ms-request-id": [ + "37199fa8-44e5-42aa-836d-57171ca42f27" + ], + "x-ms-correlation-request-id": [ + "37199fa8-44e5-42aa-836d-57171ca42f27" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201406Z:37199fa8-44e5-42aa-836d-57171ca42f27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eea7ff43-e3aa-4dc8-8165-67543c4f51ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11518" + ], + "x-ms-request-id": [ + "517ca552-414a-447f-beb8-2ee1bb4b89cd" + ], + "x-ms-correlation-request-id": [ + "517ca552-414a-447f-beb8-2ee1bb4b89cd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201406Z:517ca552-414a-447f-beb8-2ee1bb4b89cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17157324-653c-4d95-ae36-bd1eaa8a9b1d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11516" + ], + "x-ms-request-id": [ + "a5264586-33dd-45e9-bf9a-f4fe53f6d9a2" + ], + "x-ms-correlation-request-id": [ + "a5264586-33dd-45e9-bf9a-f4fe53f6d9a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201406Z:a5264586-33dd-45e9-bf9a-f4fe53f6d9a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f668919-4edf-44de-abe2-c0e2acdc074a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11514" + ], + "x-ms-request-id": [ + "30aa795c-f26b-49dd-93fc-a5c6ecdadcfc" + ], + "x-ms-correlation-request-id": [ + "30aa795c-f26b-49dd-93fc-a5c6ecdadcfc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201407Z:30aa795c-f26b-49dd-93fc-a5c6ecdadcfc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3655374e-c65d-4fca-8184-6047d5e6f7d1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11512" + ], + "x-ms-request-id": [ + "4cd2d051-4f5b-48c6-ae8b-f6af47b9ebbb" + ], + "x-ms-correlation-request-id": [ + "4cd2d051-4f5b-48c6-ae8b-f6af47b9ebbb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201407Z:4cd2d051-4f5b-48c6-ae8b-f6af47b9ebbb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f457af0-85f3-4a06-8d8e-c24f40a13065" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11510" + ], + "x-ms-request-id": [ + "fbe37a51-78cb-40b4-b1ac-d561768737de" + ], + "x-ms-correlation-request-id": [ + "fbe37a51-78cb-40b4-b1ac-d561768737de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201407Z:fbe37a51-78cb-40b4-b1ac-d561768737de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d8ca4e5-0313-47af-9738-8b47a0e14272" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11508" + ], + "x-ms-request-id": [ + "f1a2a993-1b49-4c17-a566-ca15eb103023" + ], + "x-ms-correlation-request-id": [ + "f1a2a993-1b49-4c17-a566-ca15eb103023" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201407Z:f1a2a993-1b49-4c17-a566-ca15eb103023" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5524c0b8-5a8e-4ec7-ba97-d070cb4ec64c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11506" + ], + "x-ms-request-id": [ + "8a674ba3-29f4-4432-a01c-944ce6e49927" + ], + "x-ms-correlation-request-id": [ + "8a674ba3-29f4-4432-a01c-944ce6e49927" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201408Z:8a674ba3-29f4-4432-a01c-944ce6e49927" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15f9fc5a-6c1e-4c1b-96ef-ebf4f86d1d21" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11504" + ], + "x-ms-request-id": [ + "cb1b07b6-0f9b-47cf-bf9b-5cca41766daa" + ], + "x-ms-correlation-request-id": [ + "cb1b07b6-0f9b-47cf-bf9b-5cca41766daa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201408Z:cb1b07b6-0f9b-47cf-bf9b-5cca41766daa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d055d31-b109-4ff8-af4c-a79e19237ef1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11502" + ], + "x-ms-request-id": [ + "684e26f5-147a-4422-b30d-380b40d6760a" + ], + "x-ms-correlation-request-id": [ + "684e26f5-147a-4422-b30d-380b40d6760a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201408Z:684e26f5-147a-4422-b30d-380b40d6760a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "22fcd15f-a32a-4d77-849b-dbbddeff547b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11500" + ], + "x-ms-request-id": [ + "d8b2cb28-a2a0-40a9-8c40-177c0302a43a" + ], + "x-ms-correlation-request-id": [ + "d8b2cb28-a2a0-40a9-8c40-177c0302a43a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201408Z:d8b2cb28-a2a0-40a9-8c40-177c0302a43a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d0ba67ea-67d2-46ff-8044-704aec02c64c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11498" + ], + "x-ms-request-id": [ + "983eba80-fd44-45fd-81be-f8b2d40e7446" + ], + "x-ms-correlation-request-id": [ + "983eba80-fd44-45fd-81be-f8b2d40e7446" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201408Z:983eba80-fd44-45fd-81be-f8b2d40e7446" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b47004b-6ec7-47b4-944e-d8226e1c288e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11496" + ], + "x-ms-request-id": [ + "30af4032-3fdb-4bf9-80cc-25298af13570" + ], + "x-ms-correlation-request-id": [ + "30af4032-3fdb-4bf9-80cc-25298af13570" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201409Z:30af4032-3fdb-4bf9-80cc-25298af13570" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8fe2da29-11ff-4283-a9e5-f914b7ec7cec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11494" + ], + "x-ms-request-id": [ + "6b3e4914-0354-4d7b-a66c-7ecef5f78b1b" + ], + "x-ms-correlation-request-id": [ + "6b3e4914-0354-4d7b-a66c-7ecef5f78b1b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201409Z:6b3e4914-0354-4d7b-a66c-7ecef5f78b1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a67eb8a-28eb-44f2-add7-3a3062848cea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11492" + ], + "x-ms-request-id": [ + "bebad072-6cf3-41df-adde-30d53d0d9740" + ], + "x-ms-correlation-request-id": [ + "bebad072-6cf3-41df-adde-30d53d0d9740" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201409Z:bebad072-6cf3-41df-adde-30d53d0d9740" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdf11496-dbbe-47ab-bd31-2a489045119e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11490" + ], + "x-ms-request-id": [ + "cdc8f933-518e-48f2-b133-b8b595f42e35" + ], + "x-ms-correlation-request-id": [ + "cdc8f933-518e-48f2-b133-b8b595f42e35" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201409Z:cdc8f933-518e-48f2-b133-b8b595f42e35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13829323-0374-4b0f-96cd-6e45c17f82e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11488" + ], + "x-ms-request-id": [ + "ffe49750-523a-4ae1-b54b-eaa592067040" + ], + "x-ms-correlation-request-id": [ + "ffe49750-523a-4ae1-b54b-eaa592067040" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201410Z:ffe49750-523a-4ae1-b54b-eaa592067040" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61ea920b-08e7-4872-a649-c26e8b449fee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11486" + ], + "x-ms-request-id": [ + "08178103-a098-4ceb-96ca-1b1f15287923" + ], + "x-ms-correlation-request-id": [ + "08178103-a098-4ceb-96ca-1b1f15287923" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201410Z:08178103-a098-4ceb-96ca-1b1f15287923" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02de43d6-505a-4ff3-8575-be328dc5dad6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11484" + ], + "x-ms-request-id": [ + "650a8008-dd2b-4afd-a0a5-fa2a5023094a" + ], + "x-ms-correlation-request-id": [ + "650a8008-dd2b-4afd-a0a5-fa2a5023094a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201410Z:650a8008-dd2b-4afd-a0a5-fa2a5023094a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04141883-6fe6-4727-a77c-f04d9e44991d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11482" + ], + "x-ms-request-id": [ + "e7f7086f-699e-491b-9214-32b1116d1f4f" + ], + "x-ms-correlation-request-id": [ + "e7f7086f-699e-491b-9214-32b1116d1f4f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201410Z:e7f7086f-699e-491b-9214-32b1116d1f4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fee9cdb8-af88-4ff0-b9f7-7535e79f679d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11480" + ], + "x-ms-request-id": [ + "2795cb2b-99d5-489f-ae2f-a3af95b9e23c" + ], + "x-ms-correlation-request-id": [ + "2795cb2b-99d5-489f-ae2f-a3af95b9e23c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201410Z:2795cb2b-99d5-489f-ae2f-a3af95b9e23c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35225a30-8c1c-4419-838d-7a9921b2ebff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11478" + ], + "x-ms-request-id": [ + "18e2e368-56b5-46f1-bcd0-77d2c6ff5edb" + ], + "x-ms-correlation-request-id": [ + "18e2e368-56b5-46f1-bcd0-77d2c6ff5edb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201411Z:18e2e368-56b5-46f1-bcd0-77d2c6ff5edb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1381466f-f063-49e8-8c26-9c49da7fa9fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11476" + ], + "x-ms-request-id": [ + "0bff9666-435d-44d1-be0f-57645ffbe165" + ], + "x-ms-correlation-request-id": [ + "0bff9666-435d-44d1-be0f-57645ffbe165" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201411Z:0bff9666-435d-44d1-be0f-57645ffbe165" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52ac2422-146f-41c9-94ca-a26745f99b0c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11474" + ], + "x-ms-request-id": [ + "f4ee7c45-035d-44af-abc8-7e25370fcc83" + ], + "x-ms-correlation-request-id": [ + "f4ee7c45-035d-44af-abc8-7e25370fcc83" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201411Z:f4ee7c45-035d-44af-abc8-7e25370fcc83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ae5a986-d770-4c2a-b756-b5c9ed316dae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11472" + ], + "x-ms-request-id": [ + "62c08bf3-365b-49fb-9305-56ccf583a05a" + ], + "x-ms-correlation-request-id": [ + "62c08bf3-365b-49fb-9305-56ccf583a05a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201411Z:62c08bf3-365b-49fb-9305-56ccf583a05a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98583e9d-5592-438a-8841-85d65a5bbebb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11470" + ], + "x-ms-request-id": [ + "f55dcd73-f772-4851-9a06-60c288e5693a" + ], + "x-ms-correlation-request-id": [ + "f55dcd73-f772-4851-9a06-60c288e5693a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201412Z:f55dcd73-f772-4851-9a06-60c288e5693a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e55f6fca-c733-4ca6-9778-151f00c01b81" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11468" + ], + "x-ms-request-id": [ + "2d9f5fae-158b-4e9a-ab88-df06386567cf" + ], + "x-ms-correlation-request-id": [ + "2d9f5fae-158b-4e9a-ab88-df06386567cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201412Z:2d9f5fae-158b-4e9a-ab88-df06386567cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66791cbc-7af9-44b1-8598-bcb2afd24e3f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11466" + ], + "x-ms-request-id": [ + "773007ee-3595-4e18-b7f2-e528cbf55d55" + ], + "x-ms-correlation-request-id": [ + "773007ee-3595-4e18-b7f2-e528cbf55d55" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201412Z:773007ee-3595-4e18-b7f2-e528cbf55d55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74107296-b754-4364-8e87-e0a877b9d4b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11464" + ], + "x-ms-request-id": [ + "14401f10-0eec-4007-9dcf-c292a28b2271" + ], + "x-ms-correlation-request-id": [ + "14401f10-0eec-4007-9dcf-c292a28b2271" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201412Z:14401f10-0eec-4007-9dcf-c292a28b2271" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a761550-61cc-4afc-a152-6d34bb3108d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11462" + ], + "x-ms-request-id": [ + "4983e7c2-406e-4cd9-99c7-251594edf4b9" + ], + "x-ms-correlation-request-id": [ + "4983e7c2-406e-4cd9-99c7-251594edf4b9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201412Z:4983e7c2-406e-4cd9-99c7-251594edf4b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a17842b1-0d83-4e72-9c36-29e4fd372907" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11460" + ], + "x-ms-request-id": [ + "df5cd392-6aa5-4b13-b578-4397e1c0fc68" + ], + "x-ms-correlation-request-id": [ + "df5cd392-6aa5-4b13-b578-4397e1c0fc68" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201413Z:df5cd392-6aa5-4b13-b578-4397e1c0fc68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f9a60be-8d35-4d35-a879-a203a878cfda" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11458" + ], + "x-ms-request-id": [ + "1b213a10-a11d-4e0c-b916-23124100bf4c" + ], + "x-ms-correlation-request-id": [ + "1b213a10-a11d-4e0c-b916-23124100bf4c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201413Z:1b213a10-a11d-4e0c-b916-23124100bf4c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66673ab7-940c-4c75-bfcf-9b304b8557fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11456" + ], + "x-ms-request-id": [ + "486cbfac-5e53-423c-b677-ea629b98bc35" + ], + "x-ms-correlation-request-id": [ + "486cbfac-5e53-423c-b677-ea629b98bc35" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201413Z:486cbfac-5e53-423c-b677-ea629b98bc35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0854184-2139-4cf0-a0a3-eed9c80870c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11454" + ], + "x-ms-request-id": [ + "9160ef2f-a62e-47c1-8a88-f8974a3df441" + ], + "x-ms-correlation-request-id": [ + "9160ef2f-a62e-47c1-8a88-f8974a3df441" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201413Z:9160ef2f-a62e-47c1-8a88-f8974a3df441" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "632a6067-f5d3-4c5d-ab66-c13c83eb8a72" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11452" + ], + "x-ms-request-id": [ + "27b9c26f-14d4-4d81-a023-085de31e30e8" + ], + "x-ms-correlation-request-id": [ + "27b9c26f-14d4-4d81-a023-085de31e30e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201414Z:27b9c26f-14d4-4d81-a023-085de31e30e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "803c161d-12b0-4f7b-910c-4fc64c97a77d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11450" + ], + "x-ms-request-id": [ + "75e962e3-9816-4ac7-9e12-a444903b7632" + ], + "x-ms-correlation-request-id": [ + "75e962e3-9816-4ac7-9e12-a444903b7632" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201414Z:75e962e3-9816-4ac7-9e12-a444903b7632" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0318189-8266-4be6-a665-e5a737bab00f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11448" + ], + "x-ms-request-id": [ + "8391c1dd-4d62-460e-9880-94350e716721" + ], + "x-ms-correlation-request-id": [ + "8391c1dd-4d62-460e-9880-94350e716721" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201414Z:8391c1dd-4d62-460e-9880-94350e716721" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3cb51d3e-7034-4a97-9c61-72ea9d530ca4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11446" + ], + "x-ms-request-id": [ + "a995ed52-1330-498a-a1ab-683a7818466f" + ], + "x-ms-correlation-request-id": [ + "a995ed52-1330-498a-a1ab-683a7818466f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201414Z:a995ed52-1330-498a-a1ab-683a7818466f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a46a74bd-dca7-49c2-9b47-9b2467764fc1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11444" + ], + "x-ms-request-id": [ + "07e76800-a3d8-4920-a18a-f09f4618a150" + ], + "x-ms-correlation-request-id": [ + "07e76800-a3d8-4920-a18a-f09f4618a150" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201415Z:07e76800-a3d8-4920-a18a-f09f4618a150" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "133fa422-2cc9-49c3-b083-736216855aa6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11442" + ], + "x-ms-request-id": [ + "5828eb9e-b5c2-4a10-9fc6-acafae012ab5" + ], + "x-ms-correlation-request-id": [ + "5828eb9e-b5c2-4a10-9fc6-acafae012ab5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201415Z:5828eb9e-b5c2-4a10-9fc6-acafae012ab5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50c3e662-2785-44d3-9a28-f97d9d6ca39c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11440" + ], + "x-ms-request-id": [ + "bac61856-cbef-439c-8e83-b1f0903f689d" + ], + "x-ms-correlation-request-id": [ + "bac61856-cbef-439c-8e83-b1f0903f689d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201415Z:bac61856-cbef-439c-8e83-b1f0903f689d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "190b2922-2256-4176-83e6-9f24a44bb5bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11438" + ], + "x-ms-request-id": [ + "776c6673-6254-45b5-babe-66d8e4b1599a" + ], + "x-ms-correlation-request-id": [ + "776c6673-6254-45b5-babe-66d8e4b1599a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201415Z:776c6673-6254-45b5-babe-66d8e4b1599a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b545d1a-b9f8-4884-ad75-0b2865a42339" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11436" + ], + "x-ms-request-id": [ + "b204c701-23a5-4ce8-a7d7-713f2087fd0c" + ], + "x-ms-correlation-request-id": [ + "b204c701-23a5-4ce8-a7d7-713f2087fd0c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201415Z:b204c701-23a5-4ce8-a7d7-713f2087fd0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a80d57c-42e3-45a9-b93d-afbfb4cb9bde" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11434" + ], + "x-ms-request-id": [ + "353c26de-bef5-4bb4-bc44-aec84fc22c13" + ], + "x-ms-correlation-request-id": [ + "353c26de-bef5-4bb4-bc44-aec84fc22c13" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201416Z:353c26de-bef5-4bb4-bc44-aec84fc22c13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42fca9ae-d9f4-470b-9dae-ee09b925407d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11432" + ], + "x-ms-request-id": [ + "d4823b68-be99-4241-bcd9-de4c892291ad" + ], + "x-ms-correlation-request-id": [ + "d4823b68-be99-4241-bcd9-de4c892291ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201416Z:d4823b68-be99-4241-bcd9-de4c892291ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc176ae1-ccd3-4c26-afe8-e17c1fdee7dc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11430" + ], + "x-ms-request-id": [ + "75a5fcc2-96b6-44d2-ac8f-cb751fb6ba8a" + ], + "x-ms-correlation-request-id": [ + "75a5fcc2-96b6-44d2-ac8f-cb751fb6ba8a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201416Z:75a5fcc2-96b6-44d2-ac8f-cb751fb6ba8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b505c1c-4f7a-491b-b096-de734756885a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11428" + ], + "x-ms-request-id": [ + "80a2a43e-7681-42ca-8976-91e3e1dc25d5" + ], + "x-ms-correlation-request-id": [ + "80a2a43e-7681-42ca-8976-91e3e1dc25d5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201416Z:80a2a43e-7681-42ca-8976-91e3e1dc25d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b62051c3-297b-45d5-a467-b12bb30ee8cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11426" + ], + "x-ms-request-id": [ + "7e21838f-370f-4105-a9c7-fb575019ee24" + ], + "x-ms-correlation-request-id": [ + "7e21838f-370f-4105-a9c7-fb575019ee24" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201417Z:7e21838f-370f-4105-a9c7-fb575019ee24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4b572d2-31de-462a-8d93-33e2e4f1df6f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11424" + ], + "x-ms-request-id": [ + "ce0e224e-087c-493e-9ce8-36eee30c4c84" + ], + "x-ms-correlation-request-id": [ + "ce0e224e-087c-493e-9ce8-36eee30c4c84" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201417Z:ce0e224e-087c-493e-9ce8-36eee30c4c84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3a38f42-85cd-4e23-844d-82c7579059f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11422" + ], + "x-ms-request-id": [ + "adfe45e1-1fc6-450d-803f-ecd9d650be58" + ], + "x-ms-correlation-request-id": [ + "adfe45e1-1fc6-450d-803f-ecd9d650be58" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201417Z:adfe45e1-1fc6-450d-803f-ecd9d650be58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "773" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.5709815Z\",\r\n \"duration\": \"PT4.3554865S\",\r\n \"trackingId\": \"6aa3190f-97e9-44f5-91be-2fa40a042a3b\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a232d4e1-120f-4ea1-b660-dc0035e3c6ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11420" + ], + "x-ms-request-id": [ + "67f6527a-beef-4255-9496-52910fdf3e24" + ], + "x-ms-correlation-request-id": [ + "67f6527a-beef-4255-9496-52910fdf3e24" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201417Z:67f6527a-beef-4255-9496-52910fdf3e24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "772" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-03-27T20:14:17.7011318Z\",\r\n \"duration\": \"PT1M2.4856368S\",\r\n \"trackingId\": \"bc8230b9-7ef6-476d-9b66-6ac4ee1f0552\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/deployments/admps2123InvalidRollout/operations?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25452fe8-f871-45f5-9c82-addf9e838a96" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11418" + ], + "x-ms-request-id": [ + "3ef3aaf7-e21f-431b-8342-43605e90758b" + ], + "x-ms-correlation-request-id": [ + "3ef3aaf7-e21f-431b-8342-43605e90758b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201418Z:3ef3aaf7-e21f-431b-8342-43605e90758b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1251" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/079E8B461199F03D\",\r\n \"operationId\": \"079E8B461199F03D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-03-27T20:14:17.7011318Z\",\r\n \"duration\": \"PT1M2.4856368S\",\r\n \"trackingId\": \"bc8230b9-7ef6-476d-9b66-6ac4ee1f0552\",\r\n \"serviceRequestId\": \"4752cfe5-febf-48a1-8edd-ca982907e0d2\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"resourceType\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"resourceName\": \"admps2123InvalidRollout\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout/operations/08586478892956626098\",\r\n \"operationId\": \"08586478892956626098\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-03-27T20:14:17.8658591Z\",\r\n \"duration\": \"PT0.0625529S\",\r\n \"trackingId\": \"64506119-391f-4a95-b62a-6e0518d5fc20\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f02be891-da37-4ff7-ac3f-6a8a3c453563" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "36424b0b-9f01-4831-bad3-3b05dadff07f" + ], + "x-ms-correlation-request-id": [ + "36424b0b-9f01-4831-bad3-3b05dadff07f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201311Z:36424b0b-9f01-4831-bad3-3b05dadff07f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bbb7fdf-12fb-42a5-b4e5-30e9a4882b9d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "2ff2edb4-6041-4b81-8c56-1ec99c5d9808" + ], + "x-ms-correlation-request-id": [ + "2ff2edb4-6041-4b81-8c56-1ec99c5d9808" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201311Z:2ff2edb4-6041-4b81-8c56-1ec99c5d9808" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec3de120-a17b-486f-94e1-5e9fe7b8b93f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "8c12efb3-e2ed-49d4-b292-7129c5022678" + ], + "x-ms-correlation-request-id": [ + "8c12efb3-e2ed-49d4-b292-7129c5022678" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201311Z:8c12efb3-e2ed-49d4-b292-7129c5022678" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6752b94e-0294-479d-8c9f-6ad937b12150" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "fda1ace1-e0b4-44e0-9197-7e7b7255a43a" + ], + "x-ms-correlation-request-id": [ + "fda1ace1-e0b4-44e0-9197-7e7b7255a43a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201312Z:fda1ace1-e0b4-44e0-9197-7e7b7255a43a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0316d7ea-cae0-4b9f-b0d5-35ead50123df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "e36beb61-707f-4f40-a6b5-95776963408b" + ], + "x-ms-correlation-request-id": [ + "e36beb61-707f-4f40-a6b5-95776963408b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201312Z:e36beb61-707f-4f40-a6b5-95776963408b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ad05c2d-6700-4d63-a2cd-8b9cfcef6428" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "1c9c416f-96eb-4de2-8b48-1f8f2996f9a3" + ], + "x-ms-correlation-request-id": [ + "1c9c416f-96eb-4de2-8b48-1f8f2996f9a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201312Z:1c9c416f-96eb-4de2-8b48-1f8f2996f9a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17d9871-7381-457e-a8ad-4d31a246f64d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "805d4817-05d7-4e2e-94e9-1aa0803ee260" + ], + "x-ms-correlation-request-id": [ + "805d4817-05d7-4e2e-94e9-1aa0803ee260" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201312Z:805d4817-05d7-4e2e-94e9-1aa0803ee260" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a4c3eff-ea72-4e12-9f78-d511ca4a87ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "af230ec7-9a09-4542-bd3c-e8245e486aba" + ], + "x-ms-correlation-request-id": [ + "af230ec7-9a09-4542-bd3c-e8245e486aba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201312Z:af230ec7-9a09-4542-bd3c-e8245e486aba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7d5991b-2b07-44e7-837a-09b5bbec1d2e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "b75d7567-85c1-4e93-8dc2-bdf400be7309" + ], + "x-ms-correlation-request-id": [ + "b75d7567-85c1-4e93-8dc2-bdf400be7309" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201313Z:b75d7567-85c1-4e93-8dc2-bdf400be7309" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7cc6ab2-ac83-4f19-9a1c-abb2143d4579" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "855984f8-bfd9-4e9e-87b6-9976e2b2baeb" + ], + "x-ms-correlation-request-id": [ + "855984f8-bfd9-4e9e-87b6-9976e2b2baeb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201313Z:855984f8-bfd9-4e9e-87b6-9976e2b2baeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65c2ec08-9b17-4350-ab49-5b2a28750e99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "d4d76f49-0667-464f-9c56-263357a9159d" + ], + "x-ms-correlation-request-id": [ + "d4d76f49-0667-464f-9c56-263357a9159d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201313Z:d4d76f49-0667-464f-9c56-263357a9159d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86f52b2f-b1ec-41e7-8372-fcfcd8c19838" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "84da705d-e3e8-4eda-a6eb-e841b3c853e2" + ], + "x-ms-correlation-request-id": [ + "84da705d-e3e8-4eda-a6eb-e841b3c853e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201313Z:84da705d-e3e8-4eda-a6eb-e841b3c853e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcd7770b-f5f1-4930-8977-ecbcc6985959" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "cdb0d043-c6a4-4cf4-a2f8-428c8092fa27" + ], + "x-ms-correlation-request-id": [ + "cdb0d043-c6a4-4cf4-a2f8-428c8092fa27" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201314Z:cdb0d043-c6a4-4cf4-a2f8-428c8092fa27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "01eb7ebf-2c2d-4b17-a76e-59600cbbb2d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "4ec0cd50-e038-40cf-b0bd-ae215dcf64ee" + ], + "x-ms-correlation-request-id": [ + "4ec0cd50-e038-40cf-b0bd-ae215dcf64ee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201314Z:4ec0cd50-e038-40cf-b0bd-ae215dcf64ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56d05b14-a4c8-4118-b78d-20d5add609ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "6d82b9f8-8d6a-473e-a379-aff961ff2060" + ], + "x-ms-correlation-request-id": [ + "6d82b9f8-8d6a-473e-a379-aff961ff2060" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201314Z:6d82b9f8-8d6a-473e-a379-aff961ff2060" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b2d95c5-ca46-4581-944c-47690c967b6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "3e8f433e-b13a-414c-bf8c-99aa0feda367" + ], + "x-ms-correlation-request-id": [ + "3e8f433e-b13a-414c-bf8c-99aa0feda367" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201314Z:3e8f433e-b13a-414c-bf8c-99aa0feda367" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7799962-0288-49dd-a67d-3fea7860657a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "6180a8b3-9de0-48b0-a1e8-4ece8f3eb52b" + ], + "x-ms-correlation-request-id": [ + "6180a8b3-9de0-48b0-a1e8-4ece8f3eb52b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201314Z:6180a8b3-9de0-48b0-a1e8-4ece8f3eb52b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-03-27T20:13:10.448828Z\",\r\n \"duration\": \"PT0.6338364S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fc01a78-1030-4aef-b8b2-ee02d8797777" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "5e3fecf2-ae31-4508-9034-c3e6ffac5079" + ], + "x-ms-correlation-request-id": [ + "5e3fecf2-ae31-4508-9034-c3e6ffac5079" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201315Z:5e3fecf2-ae31-4508-9034-c3e6ffac5079" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a369787f-68aa-4a03-b546-f298cb0a09d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "e010fe90-1cb2-4cf9-adf2-6ec3cf5cab95" + ], + "x-ms-correlation-request-id": [ + "e010fe90-1cb2-4cf9-adf2-6ec3cf5cab95" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201315Z:e010fe90-1cb2-4cf9-adf2-6ec3cf5cab95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e103ef63-d86c-4e74-9035-6368f7e4fc31" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "ccd48124-25cd-4a00-960f-28b35450052d" + ], + "x-ms-correlation-request-id": [ + "ccd48124-25cd-4a00-960f-28b35450052d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201315Z:ccd48124-25cd-4a00-960f-28b35450052d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9857ee2-3aab-45cb-991b-a8eafa9c3c62" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-request-id": [ + "e77b725f-cbc7-45d0-aa92-9adc6fcb86d2" + ], + "x-ms-correlation-request-id": [ + "e77b725f-cbc7-45d0-aa92-9adc6fcb86d2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201315Z:e77b725f-cbc7-45d0-aa92-9adc6fcb86d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ecc8678-5bac-4c35-809d-d9cc9be07798" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "985fd0b4-259c-4caf-85a0-dfbd34669e86" + ], + "x-ms-correlation-request-id": [ + "985fd0b4-259c-4caf-85a0-dfbd34669e86" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201316Z:985fd0b4-259c-4caf-85a0-dfbd34669e86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f3bace7-28a3-441b-934d-270916658312" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-request-id": [ + "df3f3467-d747-4198-8939-7c2b13ead0a2" + ], + "x-ms-correlation-request-id": [ + "df3f3467-d747-4198-8939-7c2b13ead0a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201316Z:df3f3467-d747-4198-8939-7c2b13ead0a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab916149-8cf7-4ed8-a6eb-fffed2594367" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-request-id": [ + "3dd01fa1-5e1c-4e16-adc5-e530595e7a1d" + ], + "x-ms-correlation-request-id": [ + "3dd01fa1-5e1c-4e16-adc5-e530595e7a1d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201316Z:3dd01fa1-5e1c-4e16-adc5-e530595e7a1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f8203d3-aeb7-4dcf-a6df-0a9dd6fe71c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-request-id": [ + "87fc4ae9-467a-44ac-924d-af425908f499" + ], + "x-ms-correlation-request-id": [ + "87fc4ae9-467a-44ac-924d-af425908f499" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201317Z:87fc4ae9-467a-44ac-924d-af425908f499" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6b5cd59-5575-404e-92c5-be72c4320061" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-request-id": [ + "20f34e77-a4ec-4f00-b24a-ce82667223c2" + ], + "x-ms-correlation-request-id": [ + "20f34e77-a4ec-4f00-b24a-ce82667223c2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201317Z:20f34e77-a4ec-4f00-b24a-ce82667223c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bb1eefa-e633-4df5-9123-3ce2eafa8da3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-request-id": [ + "b7ab7bb9-0940-40a4-83db-4d2e99003542" + ], + "x-ms-correlation-request-id": [ + "b7ab7bb9-0940-40a4-83db-4d2e99003542" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201317Z:b7ab7bb9-0940-40a4-83db-4d2e99003542" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b537855-8888-4ad5-b80e-68c06a44d828" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-request-id": [ + "14485d8e-f68c-4910-bf1a-ebab24fad77c" + ], + "x-ms-correlation-request-id": [ + "14485d8e-f68c-4910-bf1a-ebab24fad77c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201318Z:14485d8e-f68c-4910-bf1a-ebab24fad77c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57c0a0ed-587d-464d-94c4-9a2d76605426" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-request-id": [ + "fc4d79f4-0ed5-4180-80f0-33492003bbb6" + ], + "x-ms-correlation-request-id": [ + "fc4d79f4-0ed5-4180-80f0-33492003bbb6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201318Z:fc4d79f4-0ed5-4180-80f0-33492003bbb6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e0eeda6-e2f4-44be-ad02-da94932273ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-request-id": [ + "c4e87422-25d2-4f82-84a2-9f5bbf5357b9" + ], + "x-ms-correlation-request-id": [ + "c4e87422-25d2-4f82-84a2-9f5bbf5357b9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201318Z:c4e87422-25d2-4f82-84a2-9f5bbf5357b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6497e16-26be-4fa0-88b1-63f0304341f2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-request-id": [ + "fe72acb4-2973-44a1-9179-598145fc669e" + ], + "x-ms-correlation-request-id": [ + "fe72acb4-2973-44a1-9179-598145fc669e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201318Z:fe72acb4-2973-44a1-9179-598145fc669e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9af4e028-5abb-42d4-8892-4ef328a1a15b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-request-id": [ + "dec320ca-f02c-4c6f-8476-a9f6732e75f0" + ], + "x-ms-correlation-request-id": [ + "dec320ca-f02c-4c6f-8476-a9f6732e75f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201319Z:dec320ca-f02c-4c6f-8476-a9f6732e75f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39d4135b-8b0c-4824-8451-a63496af25b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-request-id": [ + "dd120edb-beee-44a2-868d-0799d69951eb" + ], + "x-ms-correlation-request-id": [ + "dd120edb-beee-44a2-868d-0799d69951eb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201319Z:dd120edb-beee-44a2-868d-0799d69951eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f03a55a-15d5-43d7-94c0-69c526ac419e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-request-id": [ + "084dbd5d-08c5-45bb-96bd-08d2764f2899" + ], + "x-ms-correlation-request-id": [ + "084dbd5d-08c5-45bb-96bd-08d2764f2899" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201319Z:084dbd5d-08c5-45bb-96bd-08d2764f2899" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "559" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:15.0740869Z\",\r\n \"duration\": \"PT5.2590953S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e14a18a-14da-469e-8e5c-f44f43c16c53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "56" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-request-id": [ + "d55557a7-805e-4db9-95fe-d108e351c3a1" + ], + "x-ms-correlation-request-id": [ + "d55557a7-805e-4db9-95fe-d108e351c3a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201319Z:d55557a7-805e-4db9-95fe-d108e351c3a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a446c93-8841-4840-83c9-05ec8964b2a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "56" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-request-id": [ + "63d89a92-2a00-4ce5-ad49-d4cfddb63975" + ], + "x-ms-correlation-request-id": [ + "63d89a92-2a00-4ce5-ad49-d4cfddb63975" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201319Z:63d89a92-2a00-4ce5-ad49-d4cfddb63975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18b9ddf8-7182-44d0-8805-925cca9cf530" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "56" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-request-id": [ + "fa6ad587-60be-440a-9d1d-fca3ab73b865" + ], + "x-ms-correlation-request-id": [ + "fa6ad587-60be-440a-9d1d-fca3ab73b865" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201320Z:fa6ad587-60be-440a-9d1d-fca3ab73b865" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8265be18-a517-403a-aecf-3b2131cc4aa5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "55" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-request-id": [ + "aeebd43f-280d-46f2-9cba-8a997ddb20fb" + ], + "x-ms-correlation-request-id": [ + "aeebd43f-280d-46f2-9cba-8a997ddb20fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201320Z:aeebd43f-280d-46f2-9cba-8a997ddb20fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0fc2a74-7c00-4b47-8d70-50cecf9c7027" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "55" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-request-id": [ + "4864f58d-9022-4983-9a46-9f747d2b5293" + ], + "x-ms-correlation-request-id": [ + "4864f58d-9022-4983-9a46-9f747d2b5293" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201320Z:4864f58d-9022-4983-9a46-9f747d2b5293" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "144e3b0b-473e-4f06-98e4-a86e99820224" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "55" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-request-id": [ + "efc5b65c-083f-40af-a932-27b38fd95941" + ], + "x-ms-correlation-request-id": [ + "efc5b65c-083f-40af-a932-27b38fd95941" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201320Z:efc5b65c-083f-40af-a932-27b38fd95941" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2718972-4a91-4f3d-899c-e1fc84b0d1ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "55" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-request-id": [ + "eaf62fc7-3102-45b2-be06-c7c3164cab29" + ], + "x-ms-correlation-request-id": [ + "eaf62fc7-3102-45b2-be06-c7c3164cab29" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201321Z:eaf62fc7-3102-45b2-be06-c7c3164cab29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6924d49c-8d9f-4868-8b48-6828fd55b019" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "54" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "x-ms-request-id": [ + "a4546a34-a4fb-4808-b853-62216f8917de" + ], + "x-ms-correlation-request-id": [ + "a4546a34-a4fb-4808-b853-62216f8917de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201321Z:a4546a34-a4fb-4808-b853-62216f8917de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b172ad5-5e63-4860-95bf-fe53e21e8af7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "54" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-request-id": [ + "cc18bc23-3512-41db-af73-58741228d1ff" + ], + "x-ms-correlation-request-id": [ + "cc18bc23-3512-41db-af73-58741228d1ff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201321Z:cc18bc23-3512-41db-af73-58741228d1ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dae54c2c-f047-41aa-894f-0cc127306232" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "54" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "x-ms-request-id": [ + "172896c8-c40d-4919-84cc-5de22a4a4cda" + ], + "x-ms-correlation-request-id": [ + "172896c8-c40d-4919-84cc-5de22a4a4cda" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201321Z:172896c8-c40d-4919-84cc-5de22a4a4cda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28ce51fc-c8ee-4672-8bc1-a419bc6d7093" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "54" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-request-id": [ + "b4dad051-2f60-4f85-a261-9cfb03cffdcd" + ], + "x-ms-correlation-request-id": [ + "b4dad051-2f60-4f85-a261-9cfb03cffdcd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201322Z:b4dad051-2f60-4f85-a261-9cfb03cffdcd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7763298d-250e-4f5e-94ea-a109f3b662cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "54" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], + "x-ms-request-id": [ + "54769015-484d-4c33-bb83-63ab47e385bf" + ], + "x-ms-correlation-request-id": [ + "54769015-484d-4c33-bb83-63ab47e385bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201322Z:54769015-484d-4c33-bb83-63ab47e385bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a32707fd-7f70-4768-a8c9-78acb08ce577" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "53" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "x-ms-request-id": [ + "34cc8459-61bf-4555-bf07-f0209f741345" + ], + "x-ms-correlation-request-id": [ + "34cc8459-61bf-4555-bf07-f0209f741345" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201322Z:34cc8459-61bf-4555-bf07-f0209f741345" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6cc3e73-3732-4514-bde3-4b9d558eda05" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "53" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], + "x-ms-request-id": [ + "1d96bdb1-09f0-4e1d-a77f-fa78151c46fc" + ], + "x-ms-correlation-request-id": [ + "1d96bdb1-09f0-4e1d-a77f-fa78151c46fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201322Z:1d96bdb1-09f0-4e1d-a77f-fa78151c46fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3dc95dd8-5221-45a0-9e51-5da35526debf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "53" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" + ], + "x-ms-request-id": [ + "794d058c-4ce8-4d29-8f88-a3fa298c1093" + ], + "x-ms-correlation-request-id": [ + "794d058c-4ce8-4d29-8f88-a3fa298c1093" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201323Z:794d058c-4ce8-4d29-8f88-a3fa298c1093" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a78edabd-485c-40a8-b283-4830317fba1a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "53" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], + "x-ms-request-id": [ + "a2c8769d-f96e-4cf7-88fb-074eb6bba9dc" + ], + "x-ms-correlation-request-id": [ + "a2c8769d-f96e-4cf7-88fb-074eb6bba9dc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201323Z:a2c8769d-f96e-4cf7-88fb-074eb6bba9dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "075175cf-cc35-433e-b72b-c466984c3a80" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "52" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" + ], + "x-ms-request-id": [ + "0f57e0b5-de12-46a2-8a42-e476ae31ef1a" + ], + "x-ms-correlation-request-id": [ + "0f57e0b5-de12-46a2-8a42-e476ae31ef1a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201323Z:0f57e0b5-de12-46a2-8a42-e476ae31ef1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8ab111d-9918-4f48-bfaf-ed796d0ffe99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "52" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11895" + ], + "x-ms-request-id": [ + "be2a1c04-0c55-43dd-8278-600293f19c88" + ], + "x-ms-correlation-request-id": [ + "be2a1c04-0c55-43dd-8278-600293f19c88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201323Z:be2a1c04-0c55-43dd-8278-600293f19c88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f552c63-601c-4828-85c2-3d2db19e429e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "52" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11893" + ], + "x-ms-request-id": [ + "f6be5888-d3e1-41e8-af32-1ca745a7a85c" + ], + "x-ms-correlation-request-id": [ + "f6be5888-d3e1-41e8-af32-1ca745a7a85c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201323Z:f6be5888-d3e1-41e8-af32-1ca745a7a85c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dba4e4d4-ba46-4437-bb09-cae58b05bbd5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "52" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11891" + ], + "x-ms-request-id": [ + "095fdbd3-ba87-4ffa-98ba-32b2a77318d9" + ], + "x-ms-correlation-request-id": [ + "095fdbd3-ba87-4ffa-98ba-32b2a77318d9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201324Z:095fdbd3-ba87-4ffa-98ba-32b2a77318d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48042c64-c41d-48d5-9c50-4df3787a0dfc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "51" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11889" + ], + "x-ms-request-id": [ + "eb498936-c668-4bcd-b29c-05b33beef9ac" + ], + "x-ms-correlation-request-id": [ + "eb498936-c668-4bcd-b29c-05b33beef9ac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201324Z:eb498936-c668-4bcd-b29c-05b33beef9ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ffc4e28e-5ea6-49c6-afb0-92775801091e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "51" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11887" + ], + "x-ms-request-id": [ + "e51f035e-d59a-4c9d-a8ca-c455140790ae" + ], + "x-ms-correlation-request-id": [ + "e51f035e-d59a-4c9d-a8ca-c455140790ae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201324Z:e51f035e-d59a-4c9d-a8ca-c455140790ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6cf48757-a1d2-4ed2-93f2-ff19d1724c61" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "51" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11885" + ], + "x-ms-request-id": [ + "b174e271-ad57-432d-8fe0-eede51e4d64b" + ], + "x-ms-correlation-request-id": [ + "b174e271-ad57-432d-8fe0-eede51e4d64b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201324Z:b174e271-ad57-432d-8fe0-eede51e4d64b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b45742b-da33-4d6e-87af-a51d41299357" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "51" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11883" + ], + "x-ms-request-id": [ + "aa0c2657-d9a6-4eca-946b-fb012a3c9a0e" + ], + "x-ms-correlation-request-id": [ + "aa0c2657-d9a6-4eca-946b-fb012a3c9a0e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201325Z:aa0c2657-d9a6-4eca-946b-fb012a3c9a0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee9ef339-93bc-4de1-a2b9-4b74880a406d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "51" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11881" + ], + "x-ms-request-id": [ + "04a868ba-c468-4bb8-8f99-ffc70a2ff1e2" + ], + "x-ms-correlation-request-id": [ + "04a868ba-c468-4bb8-8f99-ffc70a2ff1e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201325Z:04a868ba-c468-4bb8-8f99-ffc70a2ff1e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9eccda43-ea8d-41c2-9e87-782cc21b9540" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "50" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11879" + ], + "x-ms-request-id": [ + "c0ba419b-b005-439f-910b-ae772f507cf4" + ], + "x-ms-correlation-request-id": [ + "c0ba419b-b005-439f-910b-ae772f507cf4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201325Z:c0ba419b-b005-439f-910b-ae772f507cf4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "022e0927-14ac-4d6a-ae34-c7051f3d2709" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "50" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11877" + ], + "x-ms-request-id": [ + "48067c1b-a224-4c6e-b85a-25a6a29ffb0d" + ], + "x-ms-correlation-request-id": [ + "48067c1b-a224-4c6e-b85a-25a6a29ffb0d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201325Z:48067c1b-a224-4c6e-b85a-25a6a29ffb0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da653bf5-ab7c-4626-bd42-1804c7e2489b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "50" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11875" + ], + "x-ms-request-id": [ + "2d816f1f-2d76-452b-a57e-d2609bada223" + ], + "x-ms-correlation-request-id": [ + "2d816f1f-2d76-452b-a57e-d2609bada223" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201325Z:2d816f1f-2d76-452b-a57e-d2609bada223" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc43a7ff-501e-44db-8550-712b6b07885b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "50" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11873" + ], + "x-ms-request-id": [ + "be345bec-508d-459d-ae77-269f2d82fc86" + ], + "x-ms-correlation-request-id": [ + "be345bec-508d-459d-ae77-269f2d82fc86" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201326Z:be345bec-508d-459d-ae77-269f2d82fc86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bfcaac37-749b-48db-b8bf-90d32bc942d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "49" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11871" + ], + "x-ms-request-id": [ + "8998b817-f3a1-457a-aed2-66ccde58e9f3" + ], + "x-ms-correlation-request-id": [ + "8998b817-f3a1-457a-aed2-66ccde58e9f3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201326Z:8998b817-f3a1-457a-aed2-66ccde58e9f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d08e3ce5-a0bd-4c33-8c30-57d719e1c659" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "49" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11869" + ], + "x-ms-request-id": [ + "6507c550-44e6-4319-b164-c75210e7f4db" + ], + "x-ms-correlation-request-id": [ + "6507c550-44e6-4319-b164-c75210e7f4db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201326Z:6507c550-44e6-4319-b164-c75210e7f4db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "167dc20d-9a42-4051-8413-5f637fa0ffee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "49" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11867" + ], + "x-ms-request-id": [ + "22cc2ac2-b17f-44f2-bd53-9b3cf5b865fe" + ], + "x-ms-correlation-request-id": [ + "22cc2ac2-b17f-44f2-bd53-9b3cf5b865fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201326Z:22cc2ac2-b17f-44f2-bd53-9b3cf5b865fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25a08d2a-b4b3-42d0-af43-d10d92547207" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "49" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11865" + ], + "x-ms-request-id": [ + "2173637a-e36e-4914-9e13-25afabdac373" + ], + "x-ms-correlation-request-id": [ + "2173637a-e36e-4914-9e13-25afabdac373" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201327Z:2173637a-e36e-4914-9e13-25afabdac373" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "885c1fcf-dd9e-4379-aa90-97aa08518af3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "49" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11863" + ], + "x-ms-request-id": [ + "98ab0077-4ccc-4648-9b41-0bffa9b90acc" + ], + "x-ms-correlation-request-id": [ + "98ab0077-4ccc-4648-9b41-0bffa9b90acc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201327Z:98ab0077-4ccc-4648-9b41-0bffa9b90acc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a41d4659-89e1-495c-9117-bc8739613ce5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "48" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11861" + ], + "x-ms-request-id": [ + "984481eb-1f04-4915-99ac-8c7dbbe95198" + ], + "x-ms-correlation-request-id": [ + "984481eb-1f04-4915-99ac-8c7dbbe95198" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201327Z:984481eb-1f04-4915-99ac-8c7dbbe95198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4d063ef-b072-4bcb-9393-6872c3326c7f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "48" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11859" + ], + "x-ms-request-id": [ + "99da80b4-0e6f-4871-8419-939da37f42ec" + ], + "x-ms-correlation-request-id": [ + "99da80b4-0e6f-4871-8419-939da37f42ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201327Z:99da80b4-0e6f-4871-8419-939da37f42ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0cce3555-7c3d-433f-9773-21ef5f51bb46" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "48" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11857" + ], + "x-ms-request-id": [ + "79d0f0a7-68a4-4344-b6cd-0e2287573cef" + ], + "x-ms-correlation-request-id": [ + "79d0f0a7-68a4-4344-b6cd-0e2287573cef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201327Z:79d0f0a7-68a4-4344-b6cd-0e2287573cef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "feb60934-b3fa-4500-878f-6f2eed06fc93" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "48" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11855" + ], + "x-ms-request-id": [ + "11a0898f-3766-499b-b99d-9450212f919d" + ], + "x-ms-correlation-request-id": [ + "11a0898f-3766-499b-b99d-9450212f919d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201328Z:11a0898f-3766-499b-b99d-9450212f919d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b17d433f-f96b-40a2-94b8-49bfd4fc498f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "47" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11853" + ], + "x-ms-request-id": [ + "29d387b6-cbc1-462f-862e-87adfc2bbd6c" + ], + "x-ms-correlation-request-id": [ + "29d387b6-cbc1-462f-862e-87adfc2bbd6c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201328Z:29d387b6-cbc1-462f-862e-87adfc2bbd6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "171e03fe-c37e-4ea4-b798-f8fef7cbc5b9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "47" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11851" + ], + "x-ms-request-id": [ + "32d98469-e067-485d-8c12-699e20c5b9b3" + ], + "x-ms-correlation-request-id": [ + "32d98469-e067-485d-8c12-699e20c5b9b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201328Z:32d98469-e067-485d-8c12-699e20c5b9b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d916d34c-5e8e-4c10-a943-7f155a3fae0d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "47" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11849" + ], + "x-ms-request-id": [ + "18717ae0-24e5-469a-b728-a2c3875f6fa5" + ], + "x-ms-correlation-request-id": [ + "18717ae0-24e5-469a-b728-a2c3875f6fa5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201328Z:18717ae0-24e5-469a-b728-a2c3875f6fa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e5818a6-0d5f-42fc-aa93-974afd07bf13" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "47" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11847" + ], + "x-ms-request-id": [ + "55397885-e89d-4efe-adef-1a29e944238b" + ], + "x-ms-correlation-request-id": [ + "55397885-e89d-4efe-adef-1a29e944238b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201329Z:55397885-e89d-4efe-adef-1a29e944238b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3567de59-0d94-4147-92b0-a5298c91c1aa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "47" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11845" + ], + "x-ms-request-id": [ + "9a7b9cc3-b7c5-4710-abc3-d3ea0454c1a7" + ], + "x-ms-correlation-request-id": [ + "9a7b9cc3-b7c5-4710-abc3-d3ea0454c1a7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201329Z:9a7b9cc3-b7c5-4710-abc3-d3ea0454c1a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0539b109-390a-47f2-841f-24a849994aec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "46" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11843" + ], + "x-ms-request-id": [ + "76a3ca62-4c16-41a6-9c5f-088c21e0fe53" + ], + "x-ms-correlation-request-id": [ + "76a3ca62-4c16-41a6-9c5f-088c21e0fe53" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201329Z:76a3ca62-4c16-41a6-9c5f-088c21e0fe53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a66f5e12-ae80-4998-ba7b-9051cabc3715" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "46" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11841" + ], + "x-ms-request-id": [ + "c50b966e-d6ac-4383-861a-a81065da2e81" + ], + "x-ms-correlation-request-id": [ + "c50b966e-d6ac-4383-861a-a81065da2e81" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201329Z:c50b966e-d6ac-4383-861a-a81065da2e81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6497f0fc-1425-4940-95a0-b923c9e3b627" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "46" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11839" + ], + "x-ms-request-id": [ + "c8dea9fa-56de-4407-9acd-24dd5ce28bf9" + ], + "x-ms-correlation-request-id": [ + "c8dea9fa-56de-4407-9acd-24dd5ce28bf9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201330Z:c8dea9fa-56de-4407-9acd-24dd5ce28bf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "616e9a07-ceb8-4be2-9175-88247f6b0316" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "46" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11837" + ], + "x-ms-request-id": [ + "caac372c-0edb-4608-8d3a-4e290799bf50" + ], + "x-ms-correlation-request-id": [ + "caac372c-0edb-4608-8d3a-4e290799bf50" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201330Z:caac372c-0edb-4608-8d3a-4e290799bf50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ce58ca1-8f77-47b7-a161-84e793f79a69" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "45" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11835" + ], + "x-ms-request-id": [ + "c6aa452f-8ca9-49ca-8ff3-7e62b40235e5" + ], + "x-ms-correlation-request-id": [ + "c6aa452f-8ca9-49ca-8ff3-7e62b40235e5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201330Z:c6aa452f-8ca9-49ca-8ff3-7e62b40235e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "068728a8-ace5-4113-8b80-87ad21d1c837" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "45" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11833" + ], + "x-ms-request-id": [ + "33945b11-e82c-4fa7-a472-2dc77d3812b7" + ], + "x-ms-correlation-request-id": [ + "33945b11-e82c-4fa7-a472-2dc77d3812b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201330Z:33945b11-e82c-4fa7-a472-2dc77d3812b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8e11627-558b-4997-83a3-c01c1dc25e96" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "45" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11831" + ], + "x-ms-request-id": [ + "97d32695-5a24-4576-8811-e61e44621149" + ], + "x-ms-correlation-request-id": [ + "97d32695-5a24-4576-8811-e61e44621149" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201330Z:97d32695-5a24-4576-8811-e61e44621149" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3181f8b-c9af-46bc-97fa-3d10d56bea96" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "45" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11829" + ], + "x-ms-request-id": [ + "5aded9c2-774a-4854-9efa-702d4690712c" + ], + "x-ms-correlation-request-id": [ + "5aded9c2-774a-4854-9efa-702d4690712c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201331Z:5aded9c2-774a-4854-9efa-702d4690712c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "920db47d-5137-42d8-a61e-3993a11f2874" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "45" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11827" + ], + "x-ms-request-id": [ + "3228c902-6281-4d0f-983b-0e79ea8dce33" + ], + "x-ms-correlation-request-id": [ + "3228c902-6281-4d0f-983b-0e79ea8dce33" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201331Z:3228c902-6281-4d0f-983b-0e79ea8dce33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "600791a2-80a1-4ee3-8b8d-fa5126456302" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "44" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11825" + ], + "x-ms-request-id": [ + "c10aeb8a-ffe3-4d72-a84f-a1712a753f3c" + ], + "x-ms-correlation-request-id": [ + "c10aeb8a-ffe3-4d72-a84f-a1712a753f3c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201331Z:c10aeb8a-ffe3-4d72-a84f-a1712a753f3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f0294bb-5535-476a-abce-4a3348a12a0f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "44" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11823" + ], + "x-ms-request-id": [ + "41fa007d-623f-4fee-9f80-653f764f78e7" + ], + "x-ms-correlation-request-id": [ + "41fa007d-623f-4fee-9f80-653f764f78e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201331Z:41fa007d-623f-4fee-9f80-653f764f78e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "708e6fbd-2281-4bf7-a01a-b2c5d89b5ae9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "44" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11821" + ], + "x-ms-request-id": [ + "342479b1-41e8-4f4c-b8cc-fce78509c7af" + ], + "x-ms-correlation-request-id": [ + "342479b1-41e8-4f4c-b8cc-fce78509c7af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201332Z:342479b1-41e8-4f4c-b8cc-fce78509c7af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c8f909e-4704-492d-a1a3-2139509a0773" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "44" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11819" + ], + "x-ms-request-id": [ + "77a929ef-8181-46ee-8390-657c4acabc89" + ], + "x-ms-correlation-request-id": [ + "77a929ef-8181-46ee-8390-657c4acabc89" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201332Z:77a929ef-8181-46ee-8390-657c4acabc89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "908b5b7e-61e0-4724-80c8-381b9bdc72f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "43" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11817" + ], + "x-ms-request-id": [ + "9fcefe63-f702-46dd-aa42-ad233418d026" + ], + "x-ms-correlation-request-id": [ + "9fcefe63-f702-46dd-aa42-ad233418d026" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201332Z:9fcefe63-f702-46dd-aa42-ad233418d026" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37606f4b-b3f9-4002-8cdb-1aa80ea95cff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "43" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11815" + ], + "x-ms-request-id": [ + "d1e8ea93-7b83-484e-8fb0-8287a8ced868" + ], + "x-ms-correlation-request-id": [ + "d1e8ea93-7b83-484e-8fb0-8287a8ced868" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201332Z:d1e8ea93-7b83-484e-8fb0-8287a8ced868" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea225180-2658-487b-8b2d-c8598bba2b2e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "43" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11813" + ], + "x-ms-request-id": [ + "866e6cf3-4863-4399-b5f2-745e3a35fecc" + ], + "x-ms-correlation-request-id": [ + "866e6cf3-4863-4399-b5f2-745e3a35fecc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201332Z:866e6cf3-4863-4399-b5f2-745e3a35fecc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7877748-3cab-452f-b631-13634eaaa5ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "43" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11811" + ], + "x-ms-request-id": [ + "e826aa0c-981a-45fe-8acd-648e80502aa5" + ], + "x-ms-correlation-request-id": [ + "e826aa0c-981a-45fe-8acd-648e80502aa5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201333Z:e826aa0c-981a-45fe-8acd-648e80502aa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45678745-222c-4efc-8ca1-62a2f75e7121" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "43" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11809" + ], + "x-ms-request-id": [ + "08b5b71d-7f86-4f94-9e3d-dd7006c7b998" + ], + "x-ms-correlation-request-id": [ + "08b5b71d-7f86-4f94-9e3d-dd7006c7b998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201333Z:08b5b71d-7f86-4f94-9e3d-dd7006c7b998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fff7d39c-b08e-4ab8-8f0c-b964a56e8603" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "42" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11807" + ], + "x-ms-request-id": [ + "ee560dde-59d0-4e04-9055-a44a866af726" + ], + "x-ms-correlation-request-id": [ + "ee560dde-59d0-4e04-9055-a44a866af726" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201333Z:ee560dde-59d0-4e04-9055-a44a866af726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23250aea-82c6-4787-9509-17604f48a0cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "42" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11805" + ], + "x-ms-request-id": [ + "9f138f54-3adf-4331-86a0-53cf56588270" + ], + "x-ms-correlation-request-id": [ + "9f138f54-3adf-4331-86a0-53cf56588270" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201333Z:9f138f54-3adf-4331-86a0-53cf56588270" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6adf22f2-f479-4320-962a-81b45fe90959" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "42" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11803" + ], + "x-ms-request-id": [ + "3265bdb7-64af-4f38-b406-e76cacf59a40" + ], + "x-ms-correlation-request-id": [ + "3265bdb7-64af-4f38-b406-e76cacf59a40" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201334Z:3265bdb7-64af-4f38-b406-e76cacf59a40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b580e89b-6d83-443c-b0b0-785a3b7d4a23" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "42" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11801" + ], + "x-ms-request-id": [ + "8e19b851-cd05-4160-969f-c6f5e47db5dd" + ], + "x-ms-correlation-request-id": [ + "8e19b851-cd05-4160-969f-c6f5e47db5dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201334Z:8e19b851-cd05-4160-969f-c6f5e47db5dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5fe5e1f-0de2-4fa2-b4de-dda05da37f60" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "41" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11799" + ], + "x-ms-request-id": [ + "7990612a-4929-4753-8057-8f214abdbbfb" + ], + "x-ms-correlation-request-id": [ + "7990612a-4929-4753-8057-8f214abdbbfb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201334Z:7990612a-4929-4753-8057-8f214abdbbfb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e30246b9-0438-43d1-9e6c-313b2b00cc23" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "41" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11797" + ], + "x-ms-request-id": [ + "af8f098a-0033-4d94-833e-dfc999ef59a0" + ], + "x-ms-correlation-request-id": [ + "af8f098a-0033-4d94-833e-dfc999ef59a0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201334Z:af8f098a-0033-4d94-833e-dfc999ef59a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d21d1acf-f251-407b-85d1-d669faf9739e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "41" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11795" + ], + "x-ms-request-id": [ + "b413e4e9-65eb-4b85-b767-48a8738e41ea" + ], + "x-ms-correlation-request-id": [ + "b413e4e9-65eb-4b85-b767-48a8738e41ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201334Z:b413e4e9-65eb-4b85-b767-48a8738e41ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ed21b9a-5ce6-4f49-a8f6-ced94b14da52" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "41" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11793" + ], + "x-ms-request-id": [ + "5250e210-4e02-43c5-ad27-5027daf717ab" + ], + "x-ms-correlation-request-id": [ + "5250e210-4e02-43c5-ad27-5027daf717ab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201335Z:5250e210-4e02-43c5-ad27-5027daf717ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b205e68a-ede5-44f4-9a1d-1ef531d4b78f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11791" + ], + "x-ms-request-id": [ + "bbec6380-36f9-4028-b747-63ca2dee5ec2" + ], + "x-ms-correlation-request-id": [ + "bbec6380-36f9-4028-b747-63ca2dee5ec2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201335Z:bbec6380-36f9-4028-b747-63ca2dee5ec2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0b1b42f-6818-4a46-b592-e98276cf5844" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11789" + ], + "x-ms-request-id": [ + "e6a70ddc-5480-4bc4-a575-6b90f36d3492" + ], + "x-ms-correlation-request-id": [ + "e6a70ddc-5480-4bc4-a575-6b90f36d3492" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201336Z:e6a70ddc-5480-4bc4-a575-6b90f36d3492" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03ba0fd-995a-4e35-9ef1-d6d24170f009" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11787" + ], + "x-ms-request-id": [ + "ee3e70c3-93a6-4606-a090-9c6315624edb" + ], + "x-ms-correlation-request-id": [ + "ee3e70c3-93a6-4606-a090-9c6315624edb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201336Z:ee3e70c3-93a6-4606-a090-9c6315624edb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d865bde9-e63e-4102-9b64-1cafd4f11328" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "39" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11785" + ], + "x-ms-request-id": [ + "e4479b34-5473-4378-b40c-60e7a251a896" + ], + "x-ms-correlation-request-id": [ + "e4479b34-5473-4378-b40c-60e7a251a896" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201336Z:e4479b34-5473-4378-b40c-60e7a251a896" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3398e6f8-d929-4fc5-86e3-7fe61fbce163" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "39" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11783" + ], + "x-ms-request-id": [ + "7adf1641-463e-473c-b745-83a0a7c22143" + ], + "x-ms-correlation-request-id": [ + "7adf1641-463e-473c-b745-83a0a7c22143" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201336Z:7adf1641-463e-473c-b745-83a0a7c22143" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63a9ad85-c19d-4229-8575-29fc3ffdf51a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "39" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11781" + ], + "x-ms-request-id": [ + "75dd8942-d0f2-4450-a3cd-1a9f5f896f2c" + ], + "x-ms-correlation-request-id": [ + "75dd8942-d0f2-4450-a3cd-1a9f5f896f2c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201336Z:75dd8942-d0f2-4450-a3cd-1a9f5f896f2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df03ca84-dc25-439d-a8ff-806515965b54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "39" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11779" + ], + "x-ms-request-id": [ + "c3fe06bd-081d-43e3-9c8b-38d6ccbe22bb" + ], + "x-ms-correlation-request-id": [ + "c3fe06bd-081d-43e3-9c8b-38d6ccbe22bb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201337Z:c3fe06bd-081d-43e3-9c8b-38d6ccbe22bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "252072c3-60f6-4c54-8823-d0fc193d1865" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "39" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11777" + ], + "x-ms-request-id": [ + "9ade6e1d-827d-42ad-bc0b-6d431237682a" + ], + "x-ms-correlation-request-id": [ + "9ade6e1d-827d-42ad-bc0b-6d431237682a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201337Z:9ade6e1d-827d-42ad-bc0b-6d431237682a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c106b180-b077-4497-9aaf-45fc74130714" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "38" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11775" + ], + "x-ms-request-id": [ + "38c68616-b7db-4217-9e4e-82cdddcbf01a" + ], + "x-ms-correlation-request-id": [ + "38c68616-b7db-4217-9e4e-82cdddcbf01a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201337Z:38c68616-b7db-4217-9e4e-82cdddcbf01a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "512de2e4-7f54-4331-8819-aaa728fffc55" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "38" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11773" + ], + "x-ms-request-id": [ + "b3840278-9abd-4e0b-8dfb-ebc47406bb35" + ], + "x-ms-correlation-request-id": [ + "b3840278-9abd-4e0b-8dfb-ebc47406bb35" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201337Z:b3840278-9abd-4e0b-8dfb-ebc47406bb35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16f4f09e-7a3e-435a-ba5e-b58e0702ccf3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "38" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11771" + ], + "x-ms-request-id": [ + "a5f445b8-292c-4ae4-bd3c-8b960db4c85c" + ], + "x-ms-correlation-request-id": [ + "a5f445b8-292c-4ae4-bd3c-8b960db4c85c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201338Z:a5f445b8-292c-4ae4-bd3c-8b960db4c85c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "daec898c-ad0e-4dd0-a9d0-c588a4cc6178" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "38" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11769" + ], + "x-ms-request-id": [ + "9fd18938-26d8-45d1-9334-e7c33693c1e1" + ], + "x-ms-correlation-request-id": [ + "9fd18938-26d8-45d1-9334-e7c33693c1e1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201338Z:9fd18938-26d8-45d1-9334-e7c33693c1e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99ce09a6-4a9b-43d1-8e83-b1cad7279f21" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "37" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11767" + ], + "x-ms-request-id": [ + "c4e3ca57-8796-48f0-bbe6-9e6e82171680" + ], + "x-ms-correlation-request-id": [ + "c4e3ca57-8796-48f0-bbe6-9e6e82171680" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201338Z:c4e3ca57-8796-48f0-bbe6-9e6e82171680" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a19e8840-0b63-4356-8814-493dc9da6499" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "37" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11765" + ], + "x-ms-request-id": [ + "efcc4a7d-75a3-49f2-a310-c019ad07004b" + ], + "x-ms-correlation-request-id": [ + "efcc4a7d-75a3-49f2-a310-c019ad07004b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201338Z:efcc4a7d-75a3-49f2-a310-c019ad07004b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1881326-1e48-4498-8fb3-719671028700" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "37" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11763" + ], + "x-ms-request-id": [ + "1fab8cb1-e466-401d-bcfb-143353ecfc4a" + ], + "x-ms-correlation-request-id": [ + "1fab8cb1-e466-401d-bcfb-143353ecfc4a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201338Z:1fab8cb1-e466-401d-bcfb-143353ecfc4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "030bdb74-1061-43f9-bc83-7ed75e07a696" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "37" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11761" + ], + "x-ms-request-id": [ + "f0f7f676-d097-40f3-a64d-ccc256705a1c" + ], + "x-ms-correlation-request-id": [ + "f0f7f676-d097-40f3-a64d-ccc256705a1c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201339Z:f0f7f676-d097-40f3-a64d-ccc256705a1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "791f7766-9dd8-4bb1-9b6d-9484a9d39ee9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "37" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11759" + ], + "x-ms-request-id": [ + "d58bc6e4-e794-49ed-a5f7-8607d25a1e41" + ], + "x-ms-correlation-request-id": [ + "d58bc6e4-e794-49ed-a5f7-8607d25a1e41" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201339Z:d58bc6e4-e794-49ed-a5f7-8607d25a1e41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb4a5875-9138-4f60-8cf3-f7ac23405325" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "36" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11757" + ], + "x-ms-request-id": [ + "8d5758cc-117f-4188-83bc-08020d9e00a4" + ], + "x-ms-correlation-request-id": [ + "8d5758cc-117f-4188-83bc-08020d9e00a4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201339Z:8d5758cc-117f-4188-83bc-08020d9e00a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80727f27-8aab-4fad-bc3f-440cd4a0145b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "36" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11755" + ], + "x-ms-request-id": [ + "0ad0adc3-ce73-40b5-b2c4-0e86e15f84b1" + ], + "x-ms-correlation-request-id": [ + "0ad0adc3-ce73-40b5-b2c4-0e86e15f84b1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201339Z:0ad0adc3-ce73-40b5-b2c4-0e86e15f84b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9625aa6c-70dc-4865-bb76-77bc99085a8c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "36" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11753" + ], + "x-ms-request-id": [ + "35101c92-43db-4e7e-bbc9-2396813fb4fe" + ], + "x-ms-correlation-request-id": [ + "35101c92-43db-4e7e-bbc9-2396813fb4fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201340Z:35101c92-43db-4e7e-bbc9-2396813fb4fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5a8aaa5-06c2-4950-9415-09532639c14d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "36" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11751" + ], + "x-ms-request-id": [ + "3f0ac750-c012-47ec-8a98-e34d5a1bb0a4" + ], + "x-ms-correlation-request-id": [ + "3f0ac750-c012-47ec-8a98-e34d5a1bb0a4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201340Z:3f0ac750-c012-47ec-8a98-e34d5a1bb0a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d204836-c824-4f50-a46f-796f42468f39" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "35" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11749" + ], + "x-ms-request-id": [ + "cf7305e2-2dea-4481-991a-a01d65b41a5f" + ], + "x-ms-correlation-request-id": [ + "cf7305e2-2dea-4481-991a-a01d65b41a5f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201340Z:cf7305e2-2dea-4481-991a-a01d65b41a5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfba66e4-33d0-4d19-8a45-6fe5f8ac8212" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "35" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11747" + ], + "x-ms-request-id": [ + "7061d38e-6eca-40f1-9632-7712ad69c79d" + ], + "x-ms-correlation-request-id": [ + "7061d38e-6eca-40f1-9632-7712ad69c79d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201340Z:7061d38e-6eca-40f1-9632-7712ad69c79d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63d2df3e-10c9-42c3-b756-433bdb6eb10b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "35" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11745" + ], + "x-ms-request-id": [ + "0102a9f3-46f3-4036-8b0a-3425a0ba84c8" + ], + "x-ms-correlation-request-id": [ + "0102a9f3-46f3-4036-8b0a-3425a0ba84c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201340Z:0102a9f3-46f3-4036-8b0a-3425a0ba84c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f86343a2-64a5-4902-bccb-0a0454ded6c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "35" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11743" + ], + "x-ms-request-id": [ + "5eda0a39-91ac-4760-91c0-aa13af94d0d0" + ], + "x-ms-correlation-request-id": [ + "5eda0a39-91ac-4760-91c0-aa13af94d0d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201341Z:5eda0a39-91ac-4760-91c0-aa13af94d0d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb9ca6a2-0764-43a7-9902-521a3227d2e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "34" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11741" + ], + "x-ms-request-id": [ + "01435439-9691-49f6-b340-1c386dab393b" + ], + "x-ms-correlation-request-id": [ + "01435439-9691-49f6-b340-1c386dab393b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201341Z:01435439-9691-49f6-b340-1c386dab393b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d37911f-9b18-4475-a306-4e3b3f17d1a0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "34" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11739" + ], + "x-ms-request-id": [ + "dc1ba929-78ff-4a31-be1e-89be265be1f5" + ], + "x-ms-correlation-request-id": [ + "dc1ba929-78ff-4a31-be1e-89be265be1f5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201341Z:dc1ba929-78ff-4a31-be1e-89be265be1f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "715c6112-8195-49c7-ac16-32e290d06240" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "34" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11737" + ], + "x-ms-request-id": [ + "38093bda-8783-48bc-8972-68c0cf19996c" + ], + "x-ms-correlation-request-id": [ + "38093bda-8783-48bc-8972-68c0cf19996c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201341Z:38093bda-8783-48bc-8972-68c0cf19996c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "633b6467-af24-4186-a5c7-90813a1affd7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "34" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11735" + ], + "x-ms-request-id": [ + "a61e2a94-2136-47bc-a310-b42c4edc8d25" + ], + "x-ms-correlation-request-id": [ + "a61e2a94-2136-47bc-a310-b42c4edc8d25" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201342Z:a61e2a94-2136-47bc-a310-b42c4edc8d25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c66e802-d3c0-41a0-9c10-83e2fbee6b6b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "34" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11733" + ], + "x-ms-request-id": [ + "40c8575d-17c5-4ca3-b099-fc063967201c" + ], + "x-ms-correlation-request-id": [ + "40c8575d-17c5-4ca3-b099-fc063967201c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201342Z:40c8575d-17c5-4ca3-b099-fc063967201c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7daff6d-d7cb-4d3f-a8de-684b51d99416" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "33" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11731" + ], + "x-ms-request-id": [ + "dd8597aa-db48-4f0c-83f7-b5b7b35b9185" + ], + "x-ms-correlation-request-id": [ + "dd8597aa-db48-4f0c-83f7-b5b7b35b9185" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201342Z:dd8597aa-db48-4f0c-83f7-b5b7b35b9185" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "546454e8-5a57-4156-bfd7-23a5acb01211" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "33" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11729" + ], + "x-ms-request-id": [ + "45118db8-d6be-46d3-bcfb-f4eab86c9209" + ], + "x-ms-correlation-request-id": [ + "45118db8-d6be-46d3-bcfb-f4eab86c9209" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201342Z:45118db8-d6be-46d3-bcfb-f4eab86c9209" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "332fa877-cace-495c-8c95-74b832ad9471" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "33" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11727" + ], + "x-ms-request-id": [ + "e7d3b361-cef5-4849-a210-b229a3fc26a4" + ], + "x-ms-correlation-request-id": [ + "e7d3b361-cef5-4849-a210-b229a3fc26a4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201343Z:e7d3b361-cef5-4849-a210-b229a3fc26a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5f03758-f39a-4117-83e0-a86ae4c9e6b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "33" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11725" + ], + "x-ms-request-id": [ + "ffbf4a3a-95cc-4ee8-acc8-2a8294b0bb5b" + ], + "x-ms-correlation-request-id": [ + "ffbf4a3a-95cc-4ee8-acc8-2a8294b0bb5b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201343Z:ffbf4a3a-95cc-4ee8-acc8-2a8294b0bb5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d796541-4983-42f1-80ad-fa892e190a9c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "32" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11723" + ], + "x-ms-request-id": [ + "5e7ef267-b8be-432f-b0c1-fcc593a6e21b" + ], + "x-ms-correlation-request-id": [ + "5e7ef267-b8be-432f-b0c1-fcc593a6e21b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201343Z:5e7ef267-b8be-432f-b0c1-fcc593a6e21b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b02e6933-f46a-4b3e-b7df-8413ad142e78" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "32" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11721" + ], + "x-ms-request-id": [ + "80e7e304-2475-4a06-b06d-b52d3aa2b756" + ], + "x-ms-correlation-request-id": [ + "80e7e304-2475-4a06-b06d-b52d3aa2b756" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201343Z:80e7e304-2475-4a06-b06d-b52d3aa2b756" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4470a3f-ba43-4198-aae2-83373dc1ff00" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "32" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11719" + ], + "x-ms-request-id": [ + "ba00cce7-5a01-487a-9bdf-bb650d6900ee" + ], + "x-ms-correlation-request-id": [ + "ba00cce7-5a01-487a-9bdf-bb650d6900ee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201343Z:ba00cce7-5a01-487a-9bdf-bb650d6900ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9dc59369-f93e-4c79-b3b3-a442a406c6fa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "32" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11717" + ], + "x-ms-request-id": [ + "7cb96d83-8933-4555-98ae-8e7c490f844e" + ], + "x-ms-correlation-request-id": [ + "7cb96d83-8933-4555-98ae-8e7c490f844e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201344Z:7cb96d83-8933-4555-98ae-8e7c490f844e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0860eb1f-bfdb-4a3e-a1b8-4c35750d9377" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "31" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11715" + ], + "x-ms-request-id": [ + "ae81c86b-a86b-436b-8b0c-7431b6e4f5f7" + ], + "x-ms-correlation-request-id": [ + "ae81c86b-a86b-436b-8b0c-7431b6e4f5f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201344Z:ae81c86b-a86b-436b-8b0c-7431b6e4f5f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "533507f0-f772-4846-8412-5d570f385829" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "31" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11713" + ], + "x-ms-request-id": [ + "5bbdf98d-a743-4548-b743-868c61be0d86" + ], + "x-ms-correlation-request-id": [ + "5bbdf98d-a743-4548-b743-868c61be0d86" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201344Z:5bbdf98d-a743-4548-b743-868c61be0d86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5060e01d-203a-41b2-a047-ddb269509d6b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "31" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11711" + ], + "x-ms-request-id": [ + "e0ce9ef4-2782-427f-8ae1-f11a60483880" + ], + "x-ms-correlation-request-id": [ + "e0ce9ef4-2782-427f-8ae1-f11a60483880" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201344Z:e0ce9ef4-2782-427f-8ae1-f11a60483880" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d139285f-d06e-4b6d-b165-8bbf542b3ef4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "31" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11709" + ], + "x-ms-request-id": [ + "81b9e0b9-f809-4dea-a442-087623f95d70" + ], + "x-ms-correlation-request-id": [ + "81b9e0b9-f809-4dea-a442-087623f95d70" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201345Z:81b9e0b9-f809-4dea-a442-087623f95d70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4e5465c-993f-4244-a6c2-f475fbe437ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "31" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11707" + ], + "x-ms-request-id": [ + "302d59ce-3034-4c39-9ee1-89fd534d127d" + ], + "x-ms-correlation-request-id": [ + "302d59ce-3034-4c39-9ee1-89fd534d127d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201345Z:302d59ce-3034-4c39-9ee1-89fd534d127d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a3da725-1ffd-4c0b-8eb3-d212332e6de3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "30" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11705" + ], + "x-ms-request-id": [ + "682c54b7-3f5e-4074-a6b1-cde2d706d167" + ], + "x-ms-correlation-request-id": [ + "682c54b7-3f5e-4074-a6b1-cde2d706d167" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201345Z:682c54b7-3f5e-4074-a6b1-cde2d706d167" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48ee7711-bd19-407a-8b57-1e9e644b550f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "30" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11703" + ], + "x-ms-request-id": [ + "492d3ccd-1d51-4d3a-b081-8237f4bfd170" + ], + "x-ms-correlation-request-id": [ + "492d3ccd-1d51-4d3a-b081-8237f4bfd170" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201345Z:492d3ccd-1d51-4d3a-b081-8237f4bfd170" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4717384-7404-43df-a880-f48fd50e8c7f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "30" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11701" + ], + "x-ms-request-id": [ + "80fd7024-5c35-4676-aa4a-16374af783bf" + ], + "x-ms-correlation-request-id": [ + "80fd7024-5c35-4676-aa4a-16374af783bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201345Z:80fd7024-5c35-4676-aa4a-16374af783bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21c7f02-2bd0-4592-baf7-983e2925debe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "30" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11699" + ], + "x-ms-request-id": [ + "3f516ece-2a97-46ec-9a67-d001cb9f4c60" + ], + "x-ms-correlation-request-id": [ + "3f516ece-2a97-46ec-9a67-d001cb9f4c60" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201346Z:3f516ece-2a97-46ec-9a67-d001cb9f4c60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5bf0287-f233-49b5-9627-931184de0510" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "29" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11697" + ], + "x-ms-request-id": [ + "1360a54d-7c36-460b-9260-06490835f6a0" + ], + "x-ms-correlation-request-id": [ + "1360a54d-7c36-460b-9260-06490835f6a0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201346Z:1360a54d-7c36-460b-9260-06490835f6a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f357a26-d279-49e9-bfe1-40499182f815" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "29" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11695" + ], + "x-ms-request-id": [ + "2f946279-e7a5-4d40-a000-740f370d3c36" + ], + "x-ms-correlation-request-id": [ + "2f946279-e7a5-4d40-a000-740f370d3c36" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201346Z:2f946279-e7a5-4d40-a000-740f370d3c36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "691e5aaf-8514-4754-809d-5d21a40c4f72" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "29" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11693" + ], + "x-ms-request-id": [ + "21cd21f7-4a72-42d2-bcd2-d3b6e51f72e6" + ], + "x-ms-correlation-request-id": [ + "21cd21f7-4a72-42d2-bcd2-d3b6e51f72e6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201346Z:21cd21f7-4a72-42d2-bcd2-d3b6e51f72e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c5b5e88-bcde-427a-8328-4906859a66d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "29" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11691" + ], + "x-ms-request-id": [ + "4c4a84a4-2688-4ed9-9852-975fd11bc9ad" + ], + "x-ms-correlation-request-id": [ + "4c4a84a4-2688-4ed9-9852-975fd11bc9ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201347Z:4c4a84a4-2688-4ed9-9852-975fd11bc9ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9d36553-0ab0-4bda-992e-e86d736e1af4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "29" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11689" + ], + "x-ms-request-id": [ + "f2a04620-a79b-44b3-8bfd-71773f6e4b4c" + ], + "x-ms-correlation-request-id": [ + "f2a04620-a79b-44b3-8bfd-71773f6e4b4c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201347Z:f2a04620-a79b-44b3-8bfd-71773f6e4b4c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "611de230-a614-41b0-9802-fde5c75c48a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "28" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11687" + ], + "x-ms-request-id": [ + "ade36588-3441-4f2d-bb0b-06261a464e60" + ], + "x-ms-correlation-request-id": [ + "ade36588-3441-4f2d-bb0b-06261a464e60" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201347Z:ade36588-3441-4f2d-bb0b-06261a464e60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f362326-2bf7-4b2d-bbf3-ab48d3a3356d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "28" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11685" + ], + "x-ms-request-id": [ + "5b035dd5-5037-4022-b0cd-b3ab7fa9623b" + ], + "x-ms-correlation-request-id": [ + "5b035dd5-5037-4022-b0cd-b3ab7fa9623b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201347Z:5b035dd5-5037-4022-b0cd-b3ab7fa9623b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6141825-1997-4a46-a514-b99aab6f40fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "28" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11683" + ], + "x-ms-request-id": [ + "421aaacf-e60c-4472-af36-6c5a442af3a1" + ], + "x-ms-correlation-request-id": [ + "421aaacf-e60c-4472-af36-6c5a442af3a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201347Z:421aaacf-e60c-4472-af36-6c5a442af3a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a27942d7-163b-4568-ab9e-ede20cf1faf0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "28" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11681" + ], + "x-ms-request-id": [ + "dd5084a2-7735-4c8f-b814-be96c28cab43" + ], + "x-ms-correlation-request-id": [ + "dd5084a2-7735-4c8f-b814-be96c28cab43" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201348Z:dd5084a2-7735-4c8f-b814-be96c28cab43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b253f789-5780-4890-a7b5-d4a441be6be8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "27" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11679" + ], + "x-ms-request-id": [ + "e7aa0f80-0d53-45ce-ba7e-0c00fe0c9648" + ], + "x-ms-correlation-request-id": [ + "e7aa0f80-0d53-45ce-ba7e-0c00fe0c9648" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201348Z:e7aa0f80-0d53-45ce-ba7e-0c00fe0c9648" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "382167f3-1918-4981-b9ed-6b195bcef525" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "27" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11677" + ], + "x-ms-request-id": [ + "c7414d83-1e3c-4414-bf90-375f22e8f3e0" + ], + "x-ms-correlation-request-id": [ + "c7414d83-1e3c-4414-bf90-375f22e8f3e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201348Z:c7414d83-1e3c-4414-bf90-375f22e8f3e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "949778a9-dfc3-4dad-9476-35f5b000dfb6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "27" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11675" + ], + "x-ms-request-id": [ + "8d62c277-6fc5-4ddd-b64a-9061a4dfc0d1" + ], + "x-ms-correlation-request-id": [ + "8d62c277-6fc5-4ddd-b64a-9061a4dfc0d1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201348Z:8d62c277-6fc5-4ddd-b64a-9061a4dfc0d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0989a9a-a9f9-4f87-9db9-ac3d731a7acc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "27" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11673" + ], + "x-ms-request-id": [ + "91a43080-6e40-41e6-8ce0-7458611bd1af" + ], + "x-ms-correlation-request-id": [ + "91a43080-6e40-41e6-8ce0-7458611bd1af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201349Z:91a43080-6e40-41e6-8ce0-7458611bd1af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8466a5e-1007-4a7b-a1f3-4b0439fff3f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "27" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11671" + ], + "x-ms-request-id": [ + "e33bcbf1-a388-4f31-a679-83abee1463fd" + ], + "x-ms-correlation-request-id": [ + "e33bcbf1-a388-4f31-a679-83abee1463fd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201349Z:e33bcbf1-a388-4f31-a679-83abee1463fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d374f5a6-3083-4e1f-b011-aa046c520f68" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "26" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11669" + ], + "x-ms-request-id": [ + "a99288f5-0f01-4e91-b2e2-5f4aa3925673" + ], + "x-ms-correlation-request-id": [ + "a99288f5-0f01-4e91-b2e2-5f4aa3925673" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201349Z:a99288f5-0f01-4e91-b2e2-5f4aa3925673" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be5cb6a6-0b47-4ad1-ab1e-a47e1f8ea190" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "26" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11667" + ], + "x-ms-request-id": [ + "23f1ab86-6dfb-4a65-bf6f-959f5aa5ae02" + ], + "x-ms-correlation-request-id": [ + "23f1ab86-6dfb-4a65-bf6f-959f5aa5ae02" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201349Z:23f1ab86-6dfb-4a65-bf6f-959f5aa5ae02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d15009b7-dfc3-4110-bbac-82fe29f4b5ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "26" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11665" + ], + "x-ms-request-id": [ + "4903e219-8658-4e16-b36f-142f1d4e49d0" + ], + "x-ms-correlation-request-id": [ + "4903e219-8658-4e16-b36f-142f1d4e49d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201350Z:4903e219-8658-4e16-b36f-142f1d4e49d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c1a921c-cc90-49fd-8743-3434d28bf8d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "26" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11663" + ], + "x-ms-request-id": [ + "2fdb87a5-79f1-43b7-9826-ef70e1047dcf" + ], + "x-ms-correlation-request-id": [ + "2fdb87a5-79f1-43b7-9826-ef70e1047dcf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201350Z:2fdb87a5-79f1-43b7-9826-ef70e1047dcf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d375212a-f50c-4c91-985f-8d8d3e742d9c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11661" + ], + "x-ms-request-id": [ + "c736281f-77a4-4487-803a-3b1e73588f2d" + ], + "x-ms-correlation-request-id": [ + "c736281f-77a4-4487-803a-3b1e73588f2d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201350Z:c736281f-77a4-4487-803a-3b1e73588f2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08cc7e99-110e-4141-ad83-19ef4432dc67" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11659" + ], + "x-ms-request-id": [ + "69600685-2b2b-4db1-bfc7-108cf73e5611" + ], + "x-ms-correlation-request-id": [ + "69600685-2b2b-4db1-bfc7-108cf73e5611" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201350Z:69600685-2b2b-4db1-bfc7-108cf73e5611" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1a7c34f-f666-42f1-b98b-7a82387f67a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11657" + ], + "x-ms-request-id": [ + "558c3523-a320-4af5-9761-6bf3f3afb187" + ], + "x-ms-correlation-request-id": [ + "558c3523-a320-4af5-9761-6bf3f3afb187" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201350Z:558c3523-a320-4af5-9761-6bf3f3afb187" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce8c5742-fac5-4205-aab3-19fd6cac32a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11655" + ], + "x-ms-request-id": [ + "8e5dc270-5824-4d51-a419-58db54e9d77b" + ], + "x-ms-correlation-request-id": [ + "8e5dc270-5824-4d51-a419-58db54e9d77b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201351Z:8e5dc270-5824-4d51-a419-58db54e9d77b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd7ab43a-81cd-4590-9b6a-3d1c2de3e749" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "25" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11653" + ], + "x-ms-request-id": [ + "977d6da8-4876-434f-a8d8-244fa8351823" + ], + "x-ms-correlation-request-id": [ + "977d6da8-4876-434f-a8d8-244fa8351823" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201351Z:977d6da8-4876-434f-a8d8-244fa8351823" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d07c8869-5e9d-42cc-8ee4-f2eb28e8723b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "24" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11651" + ], + "x-ms-request-id": [ + "69a11ca8-c07b-4427-bdaa-40af677fcdea" + ], + "x-ms-correlation-request-id": [ + "69a11ca8-c07b-4427-bdaa-40af677fcdea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201351Z:69a11ca8-c07b-4427-bdaa-40af677fcdea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf97fb22-a895-4a0d-bb4b-e034123918b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "24" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11649" + ], + "x-ms-request-id": [ + "4a04b670-7762-4162-bd3c-467a70c16ae4" + ], + "x-ms-correlation-request-id": [ + "4a04b670-7762-4162-bd3c-467a70c16ae4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201351Z:4a04b670-7762-4162-bd3c-467a70c16ae4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "868c69c1-c4fd-4249-aa3e-b811f1153e6e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "24" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11647" + ], + "x-ms-request-id": [ + "0d2d7c57-9c6e-49a1-9a66-3fcda7fd8966" + ], + "x-ms-correlation-request-id": [ + "0d2d7c57-9c6e-49a1-9a66-3fcda7fd8966" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201352Z:0d2d7c57-9c6e-49a1-9a66-3fcda7fd8966" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3cd58f5-fe47-4886-8162-4e8c17c797ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "24" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11645" + ], + "x-ms-request-id": [ + "4b31452d-dd57-40c0-9f9c-610852832e93" + ], + "x-ms-correlation-request-id": [ + "4b31452d-dd57-40c0-9f9c-610852832e93" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201352Z:4b31452d-dd57-40c0-9f9c-610852832e93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4d55585-82e5-47d5-8d2b-b2f935a2bf9c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "23" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11643" + ], + "x-ms-request-id": [ + "422ff1db-0c17-4ab9-8356-c2c594d228f0" + ], + "x-ms-correlation-request-id": [ + "422ff1db-0c17-4ab9-8356-c2c594d228f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201352Z:422ff1db-0c17-4ab9-8356-c2c594d228f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0ce904b-4a3b-47ec-b741-f1f3379d8257" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "23" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11641" + ], + "x-ms-request-id": [ + "cc737070-aa83-4ed9-8abd-aa3ee8efa3b5" + ], + "x-ms-correlation-request-id": [ + "cc737070-aa83-4ed9-8abd-aa3ee8efa3b5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201352Z:cc737070-aa83-4ed9-8abd-aa3ee8efa3b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b0f88e2-cf31-4b79-9270-2f77037ccb4b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "23" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11639" + ], + "x-ms-request-id": [ + "a9747cd3-6ce8-43c2-ad5f-e4a96ccc8bf9" + ], + "x-ms-correlation-request-id": [ + "a9747cd3-6ce8-43c2-ad5f-e4a96ccc8bf9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201352Z:a9747cd3-6ce8-43c2-ad5f-e4a96ccc8bf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4fdf016-256e-4c0d-932d-808034ea59bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "23" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11637" + ], + "x-ms-request-id": [ + "1712ee5f-81ce-4dd3-835f-a5346fe10047" + ], + "x-ms-correlation-request-id": [ + "1712ee5f-81ce-4dd3-835f-a5346fe10047" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201353Z:1712ee5f-81ce-4dd3-835f-a5346fe10047" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6557ed3f-35fa-4f9f-9826-a807932ca332" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "23" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11635" + ], + "x-ms-request-id": [ + "e6c241f5-d00e-4a0c-8098-1ed392620c26" + ], + "x-ms-correlation-request-id": [ + "e6c241f5-d00e-4a0c-8098-1ed392620c26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201353Z:e6c241f5-d00e-4a0c-8098-1ed392620c26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "274c7b16-035e-4119-91d1-f54725c99d0f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "22" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11633" + ], + "x-ms-request-id": [ + "8c0ed736-f78a-41c4-ac76-83454672d622" + ], + "x-ms-correlation-request-id": [ + "8c0ed736-f78a-41c4-ac76-83454672d622" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201353Z:8c0ed736-f78a-41c4-ac76-83454672d622" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "577005f0-bd3b-4ea3-99dc-72a8a9e9ef97" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "22" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11631" + ], + "x-ms-request-id": [ + "65c3ad45-ff34-413d-a265-6597a047afc7" + ], + "x-ms-correlation-request-id": [ + "65c3ad45-ff34-413d-a265-6597a047afc7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201353Z:65c3ad45-ff34-413d-a265-6597a047afc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5264eec0-595f-4195-b9d0-d1c511612bfd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "22" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11629" + ], + "x-ms-request-id": [ + "88146453-2424-4a58-94ee-af4465e265cf" + ], + "x-ms-correlation-request-id": [ + "88146453-2424-4a58-94ee-af4465e265cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201354Z:88146453-2424-4a58-94ee-af4465e265cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63d725d7-8930-44b6-8d07-5e9153ae60af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "22" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11627" + ], + "x-ms-request-id": [ + "399aae64-9bfa-4887-8912-ac002dcbf90b" + ], + "x-ms-correlation-request-id": [ + "399aae64-9bfa-4887-8912-ac002dcbf90b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201354Z:399aae64-9bfa-4887-8912-ac002dcbf90b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5951b71c-2625-4c8b-ab13-cf41cede8a98" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "21" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11625" + ], + "x-ms-request-id": [ + "c0ce76b0-e45b-4bc7-b987-327145d42a4f" + ], + "x-ms-correlation-request-id": [ + "c0ce76b0-e45b-4bc7-b987-327145d42a4f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201354Z:c0ce76b0-e45b-4bc7-b987-327145d42a4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4f7ec3fb-d400-41a5-80a2-dceb99c656e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "21" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11623" + ], + "x-ms-request-id": [ + "eea115da-29e2-4ff2-b016-92785c89b401" + ], + "x-ms-correlation-request-id": [ + "eea115da-29e2-4ff2-b016-92785c89b401" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201354Z:eea115da-29e2-4ff2-b016-92785c89b401" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "829933b2-934f-479a-b43c-4cf22c63dfb2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "21" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11621" + ], + "x-ms-request-id": [ + "7849186c-7889-46a0-b985-a96031db1c48" + ], + "x-ms-correlation-request-id": [ + "7849186c-7889-46a0-b985-a96031db1c48" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201354Z:7849186c-7889-46a0-b985-a96031db1c48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fdf0fa4-c91b-451a-a932-543077de9fb4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "21" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11619" + ], + "x-ms-request-id": [ + "7ed93395-5b84-4634-9485-cd6864e41405" + ], + "x-ms-correlation-request-id": [ + "7ed93395-5b84-4634-9485-cd6864e41405" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201355Z:7ed93395-5b84-4634-9485-cd6864e41405" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7ad14be-1165-47e8-bc96-0a0510382bc1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "21" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11617" + ], + "x-ms-request-id": [ + "122607c4-7323-407c-b1b5-9defd521be5d" + ], + "x-ms-correlation-request-id": [ + "122607c4-7323-407c-b1b5-9defd521be5d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201355Z:122607c4-7323-407c-b1b5-9defd521be5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1bb27c56-a9ae-4d57-867c-301a4d5d3e88" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11615" + ], + "x-ms-request-id": [ + "3f97e947-48ab-487c-a921-658da4bc91ea" + ], + "x-ms-correlation-request-id": [ + "3f97e947-48ab-487c-a921-658da4bc91ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201355Z:3f97e947-48ab-487c-a921-658da4bc91ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c90d9f1-16f7-4ebf-b253-e77eab54227d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11613" + ], + "x-ms-request-id": [ + "fc10efc6-fdcc-438f-a061-9c34348ba12f" + ], + "x-ms-correlation-request-id": [ + "fc10efc6-fdcc-438f-a061-9c34348ba12f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201355Z:fc10efc6-fdcc-438f-a061-9c34348ba12f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff79dff3-ef3b-4330-9cac-4d44e83292e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11611" + ], + "x-ms-request-id": [ + "6b2c3e63-0b7b-42f9-9050-0f38be83d170" + ], + "x-ms-correlation-request-id": [ + "6b2c3e63-0b7b-42f9-9050-0f38be83d170" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201356Z:6b2c3e63-0b7b-42f9-9050-0f38be83d170" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d76383e-b11d-44f6-ac6c-7bd8285d7b68" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11609" + ], + "x-ms-request-id": [ + "63b32870-ca6e-4d6a-9447-56ff001f3201" + ], + "x-ms-correlation-request-id": [ + "63b32870-ca6e-4d6a-9447-56ff001f3201" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201356Z:63b32870-ca6e-4d6a-9447-56ff001f3201" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f268ebaa-e733-41e8-a4fd-fcc38f813860" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "19" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11607" + ], + "x-ms-request-id": [ + "eab81fd9-d579-41c5-a2b6-ddc17fa0193d" + ], + "x-ms-correlation-request-id": [ + "eab81fd9-d579-41c5-a2b6-ddc17fa0193d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201356Z:eab81fd9-d579-41c5-a2b6-ddc17fa0193d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "598ebb70-0061-4501-9c99-7f9f18de7065" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "19" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11605" + ], + "x-ms-request-id": [ + "4e207bd9-0a91-4503-8865-d847eb0bcaeb" + ], + "x-ms-correlation-request-id": [ + "4e207bd9-0a91-4503-8865-d847eb0bcaeb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201356Z:4e207bd9-0a91-4503-8865-d847eb0bcaeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00d00931-8c09-4583-94f6-ae8fea4078b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "19" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11603" + ], + "x-ms-request-id": [ + "3c2efda3-ca6d-4aee-89c2-a351fbad5027" + ], + "x-ms-correlation-request-id": [ + "3c2efda3-ca6d-4aee-89c2-a351fbad5027" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201356Z:3c2efda3-ca6d-4aee-89c2-a351fbad5027" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d1d63c46-0b3e-4950-9a09-6761b8c7d2ed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "19" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11601" + ], + "x-ms-request-id": [ + "00a20212-dfca-4b58-8f97-e966a422d028" + ], + "x-ms-correlation-request-id": [ + "00a20212-dfca-4b58-8f97-e966a422d028" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201357Z:00a20212-dfca-4b58-8f97-e966a422d028" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18a4d5fa-a749-4e2f-8b8f-a517274aacf1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "18" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11599" + ], + "x-ms-request-id": [ + "cdf96d87-c1a4-42c4-93d4-59d2a912622f" + ], + "x-ms-correlation-request-id": [ + "cdf96d87-c1a4-42c4-93d4-59d2a912622f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201357Z:cdf96d87-c1a4-42c4-93d4-59d2a912622f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "064fee78-b596-4daa-9599-4649981ba05f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "18" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11597" + ], + "x-ms-request-id": [ + "a123071b-b300-4745-ac6d-e2d9b581464f" + ], + "x-ms-correlation-request-id": [ + "a123071b-b300-4745-ac6d-e2d9b581464f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201357Z:a123071b-b300-4745-ac6d-e2d9b581464f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "338fe129-6127-4b86-a6e5-9bd200561d58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "18" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11595" + ], + "x-ms-request-id": [ + "3d86ea68-180f-4c62-a4ae-14b3b81b1ae7" + ], + "x-ms-correlation-request-id": [ + "3d86ea68-180f-4c62-a4ae-14b3b81b1ae7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201357Z:3d86ea68-180f-4c62-a4ae-14b3b81b1ae7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3440c58-0156-42fe-b938-c1289d549b48" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "18" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11593" + ], + "x-ms-request-id": [ + "96d8e5cb-0716-4857-b223-485c288525bc" + ], + "x-ms-correlation-request-id": [ + "96d8e5cb-0716-4857-b223-485c288525bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201358Z:96d8e5cb-0716-4857-b223-485c288525bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1db7bd80-d086-4573-a135-f7ba729cdccc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "18" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11591" + ], + "x-ms-request-id": [ + "8a2e01a8-9b95-474a-85a2-2f3ba7b6661c" + ], + "x-ms-correlation-request-id": [ + "8a2e01a8-9b95-474a-85a2-2f3ba7b6661c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201358Z:8a2e01a8-9b95-474a-85a2-2f3ba7b6661c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86297249-1e64-4d68-ad72-db39edcc0ce1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11589" + ], + "x-ms-request-id": [ + "b06d949a-9203-4d1e-9b58-145194aa2c15" + ], + "x-ms-correlation-request-id": [ + "b06d949a-9203-4d1e-9b58-145194aa2c15" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201358Z:b06d949a-9203-4d1e-9b58-145194aa2c15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7718fda-768c-435f-813e-916061197819" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11587" + ], + "x-ms-request-id": [ + "6222c574-c521-42c6-9b8d-4e6ceecdd5d1" + ], + "x-ms-correlation-request-id": [ + "6222c574-c521-42c6-9b8d-4e6ceecdd5d1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201358Z:6222c574-c521-42c6-9b8d-4e6ceecdd5d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20f258ae-a12d-4cde-a42a-933567346e6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11585" + ], + "x-ms-request-id": [ + "20616797-4dd9-483a-98a1-1ac1efb09b6e" + ], + "x-ms-correlation-request-id": [ + "20616797-4dd9-483a-98a1-1ac1efb09b6e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201359Z:20616797-4dd9-483a-98a1-1ac1efb09b6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e67bbd5-6bf0-4798-939a-3736dd38ebf4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11583" + ], + "x-ms-request-id": [ + "c5b4c916-f7e3-4b2d-a126-142a96fe863b" + ], + "x-ms-correlation-request-id": [ + "c5b4c916-f7e3-4b2d-a126-142a96fe863b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201359Z:c5b4c916-f7e3-4b2d-a126-142a96fe863b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd7aee51-0013-47bb-ab9d-77ff5629a3ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "16" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11581" + ], + "x-ms-request-id": [ + "412b7847-52e3-4394-880a-c8d9003aebf1" + ], + "x-ms-correlation-request-id": [ + "412b7847-52e3-4394-880a-c8d9003aebf1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201359Z:412b7847-52e3-4394-880a-c8d9003aebf1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71fb9621-5095-42b4-b011-8bdc485e444d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "16" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11579" + ], + "x-ms-request-id": [ + "8b954e9c-b5e6-48fd-8da5-60e2177a4742" + ], + "x-ms-correlation-request-id": [ + "8b954e9c-b5e6-48fd-8da5-60e2177a4742" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201359Z:8b954e9c-b5e6-48fd-8da5-60e2177a4742" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f548513d-9308-4a42-b8bc-828d5161a530" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "16" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11577" + ], + "x-ms-request-id": [ + "dd05f446-c1e9-4c26-9541-02ec0e66ffdb" + ], + "x-ms-correlation-request-id": [ + "dd05f446-c1e9-4c26-9541-02ec0e66ffdb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201359Z:dd05f446-c1e9-4c26-9541-02ec0e66ffdb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e449e15e-37ba-40a0-9746-d9de21d148af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "16" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11575" + ], + "x-ms-request-id": [ + "4be055e9-f767-4717-9ae4-43b2ee8c0d4e" + ], + "x-ms-correlation-request-id": [ + "4be055e9-f767-4717-9ae4-43b2ee8c0d4e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201400Z:4be055e9-f767-4717-9ae4-43b2ee8c0d4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:13:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "994ec598-914a-434b-99e8-5bc9c2ca073c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "16" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11573" + ], + "x-ms-request-id": [ + "34303516-d784-49ba-92a4-ba8ba42c22cf" + ], + "x-ms-correlation-request-id": [ + "34303516-d784-49ba-92a4-ba8ba42c22cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201400Z:34303516-d784-49ba-92a4-ba8ba42c22cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd2c9f68-ef72-4d64-ae5f-3eaefb844ca1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11571" + ], + "x-ms-request-id": [ + "314d22ab-4c1f-4814-8004-687f17e1aad6" + ], + "x-ms-correlation-request-id": [ + "314d22ab-4c1f-4814-8004-687f17e1aad6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201400Z:314d22ab-4c1f-4814-8004-687f17e1aad6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99baa931-14d0-42e4-9a87-ac0165490190" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11569" + ], + "x-ms-request-id": [ + "39435c4f-cee1-4732-87e7-861b56be9029" + ], + "x-ms-correlation-request-id": [ + "39435c4f-cee1-4732-87e7-861b56be9029" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201400Z:39435c4f-cee1-4732-87e7-861b56be9029" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b69c8fae-7f3c-4df1-bfef-18be462172b9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11567" + ], + "x-ms-request-id": [ + "2c784e51-4881-426b-85fe-437b11af79ba" + ], + "x-ms-correlation-request-id": [ + "2c784e51-4881-426b-85fe-437b11af79ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201401Z:2c784e51-4881-426b-85fe-437b11af79ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d7c37c0-8df6-427a-b4ae-09871f2209ec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11565" + ], + "x-ms-request-id": [ + "419c9bc7-c537-4851-9870-8036c77e3105" + ], + "x-ms-correlation-request-id": [ + "419c9bc7-c537-4851-9870-8036c77e3105" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201401Z:419c9bc7-c537-4851-9870-8036c77e3105" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b9211f4f-2324-43ec-84c6-f0c1e7aac866" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "14" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11563" + ], + "x-ms-request-id": [ + "f73f2c85-c3c5-4327-b388-efb8a5ec1dfb" + ], + "x-ms-correlation-request-id": [ + "f73f2c85-c3c5-4327-b388-efb8a5ec1dfb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201401Z:f73f2c85-c3c5-4327-b388-efb8a5ec1dfb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e8848e6-8adf-488e-9972-4db89230471f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "14" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11561" + ], + "x-ms-request-id": [ + "e7ef0e24-0d8b-4941-a8f7-75b6d5f7a601" + ], + "x-ms-correlation-request-id": [ + "e7ef0e24-0d8b-4941-a8f7-75b6d5f7a601" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201401Z:e7ef0e24-0d8b-4941-a8f7-75b6d5f7a601" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "254b4d1b-7060-4e8e-bca2-a1217a356f07" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "14" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11559" + ], + "x-ms-request-id": [ + "24d817d0-5a8a-47f4-a52c-811ed8ede9cb" + ], + "x-ms-correlation-request-id": [ + "24d817d0-5a8a-47f4-a52c-811ed8ede9cb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201401Z:24d817d0-5a8a-47f4-a52c-811ed8ede9cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2dfdff53-e5d0-4c85-86e1-41e806518bf7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "14" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11557" + ], + "x-ms-request-id": [ + "4aa6c960-b290-401f-ad75-05d0eb4b6225" + ], + "x-ms-correlation-request-id": [ + "4aa6c960-b290-401f-ad75-05d0eb4b6225" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201402Z:4aa6c960-b290-401f-ad75-05d0eb4b6225" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "786ca9b3-e7c4-477b-8a61-89006441c356" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "13" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11555" + ], + "x-ms-request-id": [ + "e50d7ea6-bb2c-46dd-865c-2c3417429471" + ], + "x-ms-correlation-request-id": [ + "e50d7ea6-bb2c-46dd-865c-2c3417429471" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201402Z:e50d7ea6-bb2c-46dd-865c-2c3417429471" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d4fb8c7-502b-4212-b0c2-8c014300a34d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "13" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11553" + ], + "x-ms-request-id": [ + "2050b6c1-3e49-4aef-9aad-873e8dca7477" + ], + "x-ms-correlation-request-id": [ + "2050b6c1-3e49-4aef-9aad-873e8dca7477" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201402Z:2050b6c1-3e49-4aef-9aad-873e8dca7477" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2311efe8-ed7b-4cec-b20e-f9f17521af67" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "13" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11551" + ], + "x-ms-request-id": [ + "46fc7e36-5137-410a-8a01-f5cc8440ed1e" + ], + "x-ms-correlation-request-id": [ + "46fc7e36-5137-410a-8a01-f5cc8440ed1e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201402Z:46fc7e36-5137-410a-8a01-f5cc8440ed1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81efe03a-676e-4a5e-b3b0-49d1afcb98a6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "13" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11549" + ], + "x-ms-request-id": [ + "b6d51808-7076-4f57-b33b-86e3eb697c50" + ], + "x-ms-correlation-request-id": [ + "b6d51808-7076-4f57-b33b-86e3eb697c50" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201403Z:b6d51808-7076-4f57-b33b-86e3eb697c50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02d8326a-1f0f-42d5-8f9f-c717b215e5bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "13" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11547" + ], + "x-ms-request-id": [ + "a744de6b-f16d-4fd1-a7ab-438c1457f0f0" + ], + "x-ms-correlation-request-id": [ + "a744de6b-f16d-4fd1-a7ab-438c1457f0f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201403Z:a744de6b-f16d-4fd1-a7ab-438c1457f0f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14318edc-2d15-4f0c-a111-d6817abc5a03" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "12" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11545" + ], + "x-ms-request-id": [ + "59eba390-9786-4a9b-856d-9eb88e662133" + ], + "x-ms-correlation-request-id": [ + "59eba390-9786-4a9b-856d-9eb88e662133" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201403Z:59eba390-9786-4a9b-856d-9eb88e662133" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8276288a-de18-45a3-a49f-f3656e85bbff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "12" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11543" + ], + "x-ms-request-id": [ + "8e5b541f-e54e-430c-9907-a16e6c40adc1" + ], + "x-ms-correlation-request-id": [ + "8e5b541f-e54e-430c-9907-a16e6c40adc1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201403Z:8e5b541f-e54e-430c-9907-a16e6c40adc1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87f9644d-86b5-41a7-a7b3-17b800dd50bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "12" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11541" + ], + "x-ms-request-id": [ + "e14973be-59f4-4619-930f-3e00a46a7318" + ], + "x-ms-correlation-request-id": [ + "e14973be-59f4-4619-930f-3e00a46a7318" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201403Z:e14973be-59f4-4619-930f-3e00a46a7318" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "960e9cb4-7cf3-4f9f-8e8e-d12eec2a6242" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "12" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11539" + ], + "x-ms-request-id": [ + "e65e6291-8060-4844-93b1-bd0f83f7a85a" + ], + "x-ms-correlation-request-id": [ + "e65e6291-8060-4844-93b1-bd0f83f7a85a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201404Z:e65e6291-8060-4844-93b1-bd0f83f7a85a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3ec4dfd-9da8-4943-91c7-02d637225e41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "11" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11537" + ], + "x-ms-request-id": [ + "c2f2120f-32b8-4ddd-bd08-726a1ba61b75" + ], + "x-ms-correlation-request-id": [ + "c2f2120f-32b8-4ddd-bd08-726a1ba61b75" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201404Z:c2f2120f-32b8-4ddd-bd08-726a1ba61b75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "debe630b-8f32-47b6-b3c6-2187aba4d78a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "11" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11535" + ], + "x-ms-request-id": [ + "09f734a4-0095-4ab1-a23f-652d5d667fa4" + ], + "x-ms-correlation-request-id": [ + "09f734a4-0095-4ab1-a23f-652d5d667fa4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201404Z:09f734a4-0095-4ab1-a23f-652d5d667fa4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "099d8c2d-74b0-4b67-a05f-c6f595cf1dca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "11" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11533" + ], + "x-ms-request-id": [ + "b1112d44-5439-4501-83f8-5d75a5a170fe" + ], + "x-ms-correlation-request-id": [ + "b1112d44-5439-4501-83f8-5d75a5a170fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201404Z:b1112d44-5439-4501-83f8-5d75a5a170fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57e9da6f-d4e0-4b42-8978-ab20cf9e6ec0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "11" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11531" + ], + "x-ms-request-id": [ + "b73db8f8-2fe8-49d5-a475-1a2a16402ef1" + ], + "x-ms-correlation-request-id": [ + "b73db8f8-2fe8-49d5-a475-1a2a16402ef1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201405Z:b73db8f8-2fe8-49d5-a475-1a2a16402ef1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "305cab84-b281-4f65-8bac-12f7094e1487" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "11" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11529" + ], + "x-ms-request-id": [ + "1730944b-93fa-4454-82c4-551e78114b5b" + ], + "x-ms-correlation-request-id": [ + "1730944b-93fa-4454-82c4-551e78114b5b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201405Z:1730944b-93fa-4454-82c4-551e78114b5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a860e67e-c231-4b02-9d70-ca5033551d9b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11527" + ], + "x-ms-request-id": [ + "e7278743-c7e7-4df3-87c2-047141635061" + ], + "x-ms-correlation-request-id": [ + "e7278743-c7e7-4df3-87c2-047141635061" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201405Z:e7278743-c7e7-4df3-87c2-047141635061" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d8cb479-ef16-49e7-90ab-8adc88dd5da5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11525" + ], + "x-ms-request-id": [ + "43bdf79a-2bee-439f-a900-937d41d63655" + ], + "x-ms-correlation-request-id": [ + "43bdf79a-2bee-439f-a900-937d41d63655" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201405Z:43bdf79a-2bee-439f-a900-937d41d63655" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "171b820f-d314-44d0-af32-909b6106fa72" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11523" + ], + "x-ms-request-id": [ + "de8fe1bf-3941-48b6-8c05-1a41bede2570" + ], + "x-ms-correlation-request-id": [ + "de8fe1bf-3941-48b6-8c05-1a41bede2570" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201406Z:de8fe1bf-3941-48b6-8c05-1a41bede2570" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13e013f2-b7e0-4d68-81e3-f823c237ffc8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11521" + ], + "x-ms-request-id": [ + "0fa292e0-8627-4090-8371-334f3e447818" + ], + "x-ms-correlation-request-id": [ + "0fa292e0-8627-4090-8371-334f3e447818" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201406Z:0fa292e0-8627-4090-8371-334f3e447818" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dea72ad6-444f-4637-b3d5-ef4577d4969e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11519" + ], + "x-ms-request-id": [ + "6e54e6b9-c466-4715-87bb-9f34a771b61b" + ], + "x-ms-correlation-request-id": [ + "6e54e6b9-c466-4715-87bb-9f34a771b61b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201406Z:6e54e6b9-c466-4715-87bb-9f34a771b61b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d40bb3d5-6222-4802-8f98-ca272bd9bea1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11517" + ], + "x-ms-request-id": [ + "ecb335af-5dc8-457b-832d-89e1528b3a47" + ], + "x-ms-correlation-request-id": [ + "ecb335af-5dc8-457b-832d-89e1528b3a47" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201406Z:ecb335af-5dc8-457b-832d-89e1528b3a47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ff28c26-3d14-43d4-bed5-4f9f2a143f20" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11515" + ], + "x-ms-request-id": [ + "d8f5d47c-4e63-4058-ab83-5624b1aa1579" + ], + "x-ms-correlation-request-id": [ + "d8f5d47c-4e63-4058-ab83-5624b1aa1579" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201406Z:d8f5d47c-4e63-4058-ab83-5624b1aa1579" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5c6a50e-d084-4331-94fa-140e5d6c0912" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11513" + ], + "x-ms-request-id": [ + "fd093724-ab0b-4232-b6c0-6064711ae16d" + ], + "x-ms-correlation-request-id": [ + "fd093724-ab0b-4232-b6c0-6064711ae16d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201407Z:fd093724-ab0b-4232-b6c0-6064711ae16d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d689a73c-1bfa-4eaf-8d2e-7875e4e5d2bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11511" + ], + "x-ms-request-id": [ + "c28ecabd-047b-4341-86ca-20596e23370e" + ], + "x-ms-correlation-request-id": [ + "c28ecabd-047b-4341-86ca-20596e23370e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201407Z:c28ecabd-047b-4341-86ca-20596e23370e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7524012e-6aa0-47de-a3c3-82940c69f538" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11509" + ], + "x-ms-request-id": [ + "273dcac4-5254-4dd1-a41f-9a9248cf1a06" + ], + "x-ms-correlation-request-id": [ + "273dcac4-5254-4dd1-a41f-9a9248cf1a06" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201407Z:273dcac4-5254-4dd1-a41f-9a9248cf1a06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05b2059c-6a0f-45e8-b996-88137c87ac54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11507" + ], + "x-ms-request-id": [ + "339c6399-da80-405c-afd1-4e4455f122f9" + ], + "x-ms-correlation-request-id": [ + "339c6399-da80-405c-afd1-4e4455f122f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201407Z:339c6399-da80-405c-afd1-4e4455f122f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80d7bb0b-09cd-45d8-a2f6-f50cb43daf93" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11505" + ], + "x-ms-request-id": [ + "3606a996-2320-4848-aa05-0272c8c69d20" + ], + "x-ms-correlation-request-id": [ + "3606a996-2320-4848-aa05-0272c8c69d20" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201408Z:3606a996-2320-4848-aa05-0272c8c69d20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "968882a6-90db-4a0e-b4f0-dfedc6d58e0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11503" + ], + "x-ms-request-id": [ + "73e400c6-a792-4c60-8723-10f1d01e91df" + ], + "x-ms-correlation-request-id": [ + "73e400c6-a792-4c60-8723-10f1d01e91df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201408Z:73e400c6-a792-4c60-8723-10f1d01e91df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c81065c-80c3-4de4-8337-b51ab35286f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11501" + ], + "x-ms-request-id": [ + "8b70420a-006e-46fa-b178-4bdb44851aa4" + ], + "x-ms-correlation-request-id": [ + "8b70420a-006e-46fa-b178-4bdb44851aa4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201408Z:8b70420a-006e-46fa-b178-4bdb44851aa4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f249b1d-6ca2-42ec-8ffc-03d939baf97c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11499" + ], + "x-ms-request-id": [ + "c14e0231-6935-4240-848b-4f41ffa80c5a" + ], + "x-ms-correlation-request-id": [ + "c14e0231-6935-4240-848b-4f41ffa80c5a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201408Z:c14e0231-6935-4240-848b-4f41ffa80c5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b1a3faa-c61c-412c-accb-bab4296a553c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11497" + ], + "x-ms-request-id": [ + "c1fc4656-1a88-4a47-9c6b-77373db61af9" + ], + "x-ms-correlation-request-id": [ + "c1fc4656-1a88-4a47-9c6b-77373db61af9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201408Z:c1fc4656-1a88-4a47-9c6b-77373db61af9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf52b440-1465-4485-9b80-fca9594ee430" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11495" + ], + "x-ms-request-id": [ + "b571a4e4-62fb-468c-83c9-123b6c1cd203" + ], + "x-ms-correlation-request-id": [ + "b571a4e4-62fb-468c-83c9-123b6c1cd203" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201409Z:b571a4e4-62fb-468c-83c9-123b6c1cd203" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b45747d5-6e3a-4e03-86b8-eff7c18596eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11493" + ], + "x-ms-request-id": [ + "673a3c1c-b1f0-44d7-a05a-42b4f6cb26fe" + ], + "x-ms-correlation-request-id": [ + "673a3c1c-b1f0-44d7-a05a-42b4f6cb26fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201409Z:673a3c1c-b1f0-44d7-a05a-42b4f6cb26fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "92ac144d-7284-4127-82e0-47bf8a9d30ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11491" + ], + "x-ms-request-id": [ + "0adcdd41-81cd-4065-889d-b372873aedac" + ], + "x-ms-correlation-request-id": [ + "0adcdd41-81cd-4065-889d-b372873aedac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201409Z:0adcdd41-81cd-4065-889d-b372873aedac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dcb2fc2c-c0a9-4376-9942-0432477d8bd2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11489" + ], + "x-ms-request-id": [ + "b27a3b03-6579-4f79-b610-0c9d2f2b6e64" + ], + "x-ms-correlation-request-id": [ + "b27a3b03-6579-4f79-b610-0c9d2f2b6e64" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201409Z:b27a3b03-6579-4f79-b610-0c9d2f2b6e64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2eb95837-2b17-440b-913f-6ba2bdecfba2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11487" + ], + "x-ms-request-id": [ + "8da6061c-b561-4a49-8da0-cbdf94ab7862" + ], + "x-ms-correlation-request-id": [ + "8da6061c-b561-4a49-8da0-cbdf94ab7862" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201410Z:8da6061c-b561-4a49-8da0-cbdf94ab7862" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6bc819a-55f5-40c9-baf2-270efd9a4d36" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11485" + ], + "x-ms-request-id": [ + "c37db8f6-f4c5-47df-bce6-40609a29079e" + ], + "x-ms-correlation-request-id": [ + "c37db8f6-f4c5-47df-bce6-40609a29079e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201410Z:c37db8f6-f4c5-47df-bce6-40609a29079e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7de4027d-7ebb-40cf-b620-4723b9f4ce0d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11483" + ], + "x-ms-request-id": [ + "85092d3d-e658-45f7-bffd-1ef294d88615" + ], + "x-ms-correlation-request-id": [ + "85092d3d-e658-45f7-bffd-1ef294d88615" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201410Z:85092d3d-e658-45f7-bffd-1ef294d88615" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9eacb0b-59fd-4539-9bd4-5aae1fdcd57b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11481" + ], + "x-ms-request-id": [ + "f5a9c531-b2ed-4ed7-bec3-d1c0d89596ed" + ], + "x-ms-correlation-request-id": [ + "f5a9c531-b2ed-4ed7-bec3-d1c0d89596ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201410Z:f5a9c531-b2ed-4ed7-bec3-d1c0d89596ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10896810-44c0-4133-80aa-179e4cb82bcb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11479" + ], + "x-ms-request-id": [ + "2372bd88-7f7f-4a14-ab6d-5ace3a46f98a" + ], + "x-ms-correlation-request-id": [ + "2372bd88-7f7f-4a14-ab6d-5ace3a46f98a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201410Z:2372bd88-7f7f-4a14-ab6d-5ace3a46f98a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80ca7f0d-4859-44d7-89ef-45b1663652e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11477" + ], + "x-ms-request-id": [ + "8c7c7495-b541-4a7d-9a2d-69d7cd61d98e" + ], + "x-ms-correlation-request-id": [ + "8c7c7495-b541-4a7d-9a2d-69d7cd61d98e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201411Z:8c7c7495-b541-4a7d-9a2d-69d7cd61d98e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d3e73c8-d750-4f67-aa4d-3f5d8de998cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11475" + ], + "x-ms-request-id": [ + "26a3a23c-812f-4ec4-adf0-5bcc7474b77c" + ], + "x-ms-correlation-request-id": [ + "26a3a23c-812f-4ec4-adf0-5bcc7474b77c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201411Z:26a3a23c-812f-4ec4-adf0-5bcc7474b77c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c97a3f10-398c-4005-9ca8-e9f1e28e6d98" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11473" + ], + "x-ms-request-id": [ + "8ce16e0a-7f48-49cb-a8db-c284c8e43e47" + ], + "x-ms-correlation-request-id": [ + "8ce16e0a-7f48-49cb-a8db-c284c8e43e47" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201411Z:8ce16e0a-7f48-49cb-a8db-c284c8e43e47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1402a6ec-d4b4-43ee-b28d-0a20ee146903" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11471" + ], + "x-ms-request-id": [ + "2c050a44-5f5f-4d58-9500-64001d3e9733" + ], + "x-ms-correlation-request-id": [ + "2c050a44-5f5f-4d58-9500-64001d3e9733" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201411Z:2c050a44-5f5f-4d58-9500-64001d3e9733" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "782b961a-d8a0-4348-9a32-d09288de22d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11469" + ], + "x-ms-request-id": [ + "59f5e571-3482-4d99-92d7-d4dc0dd2e075" + ], + "x-ms-correlation-request-id": [ + "59f5e571-3482-4d99-92d7-d4dc0dd2e075" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201412Z:59f5e571-3482-4d99-92d7-d4dc0dd2e075" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74314e1c-2e21-4308-a484-46d2f6a3912a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11467" + ], + "x-ms-request-id": [ + "05e3d8a1-4277-4eb0-be64-0da775383f15" + ], + "x-ms-correlation-request-id": [ + "05e3d8a1-4277-4eb0-be64-0da775383f15" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201412Z:05e3d8a1-4277-4eb0-be64-0da775383f15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9bf7cea8-e4c0-4a8a-8e56-20817cc0fa1b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11465" + ], + "x-ms-request-id": [ + "deb6d00f-0d95-4ea0-8a31-9ae1a79c31aa" + ], + "x-ms-correlation-request-id": [ + "deb6d00f-0d95-4ea0-8a31-9ae1a79c31aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201412Z:deb6d00f-0d95-4ea0-8a31-9ae1a79c31aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a42c4b6-25f6-4fc6-854e-46eaf8a8cc68" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11463" + ], + "x-ms-request-id": [ + "79fc9c8a-d44a-403d-81b3-ab790fd1a6fe" + ], + "x-ms-correlation-request-id": [ + "79fc9c8a-d44a-403d-81b3-ab790fd1a6fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201412Z:79fc9c8a-d44a-403d-81b3-ab790fd1a6fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e3124e0-a06e-4e1b-ac6c-66fccff4e903" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11461" + ], + "x-ms-request-id": [ + "4eeddecd-46e2-4c54-ac4c-a8ed4a747cde" + ], + "x-ms-correlation-request-id": [ + "4eeddecd-46e2-4c54-ac4c-a8ed4a747cde" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201413Z:4eeddecd-46e2-4c54-ac4c-a8ed4a747cde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9505961d-9075-4a28-a008-aede61e15f10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11459" + ], + "x-ms-request-id": [ + "9be22e63-d7f7-4f40-80bf-f91d25cab88c" + ], + "x-ms-correlation-request-id": [ + "9be22e63-d7f7-4f40-80bf-f91d25cab88c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201413Z:9be22e63-d7f7-4f40-80bf-f91d25cab88c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e622ac47-f30c-498b-a099-3c60b5f22856" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11457" + ], + "x-ms-request-id": [ + "e3550af4-79e4-47ad-b4df-5a05e8055436" + ], + "x-ms-correlation-request-id": [ + "e3550af4-79e4-47ad-b4df-5a05e8055436" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201413Z:e3550af4-79e4-47ad-b4df-5a05e8055436" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06fe47eb-4d0d-449f-9585-e3e52063159a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11455" + ], + "x-ms-request-id": [ + "2e7ee9a7-497c-4cd5-a168-abbe273d14ea" + ], + "x-ms-correlation-request-id": [ + "2e7ee9a7-497c-4cd5-a168-abbe273d14ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201413Z:2e7ee9a7-497c-4cd5-a168-abbe273d14ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d227e7d4-b8a1-43ce-beed-d8529c9f3753" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11453" + ], + "x-ms-request-id": [ + "371aaaa2-33d4-4a2d-b7f5-ec71d55bc58e" + ], + "x-ms-correlation-request-id": [ + "371aaaa2-33d4-4a2d-b7f5-ec71d55bc58e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201413Z:371aaaa2-33d4-4a2d-b7f5-ec71d55bc58e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ecf172a9-72ab-4de8-b932-9eebb42123d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11451" + ], + "x-ms-request-id": [ + "75321f84-60fd-4f35-a689-fa02640b608f" + ], + "x-ms-correlation-request-id": [ + "75321f84-60fd-4f35-a689-fa02640b608f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201414Z:75321f84-60fd-4f35-a689-fa02640b608f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e059ea50-17fa-46e7-afa5-7613b6c4267c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11449" + ], + "x-ms-request-id": [ + "24f0619c-dd7a-4745-94cc-1a8004416224" + ], + "x-ms-correlation-request-id": [ + "24f0619c-dd7a-4745-94cc-1a8004416224" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201414Z:24f0619c-dd7a-4745-94cc-1a8004416224" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3203d9df-fec7-4c36-861a-c37558ac3c47" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11447" + ], + "x-ms-request-id": [ + "5d9c84ae-8483-4633-a2c8-460993506988" + ], + "x-ms-correlation-request-id": [ + "5d9c84ae-8483-4633-a2c8-460993506988" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201414Z:5d9c84ae-8483-4633-a2c8-460993506988" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7d06a3b-88c4-4718-99da-b5d8470dcbb5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11445" + ], + "x-ms-request-id": [ + "9c44d8b5-a3ff-4f5e-8d8a-66ca0f15cee6" + ], + "x-ms-correlation-request-id": [ + "9c44d8b5-a3ff-4f5e-8d8a-66ca0f15cee6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201414Z:9c44d8b5-a3ff-4f5e-8d8a-66ca0f15cee6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e41a794e-ac6e-454d-8818-da318c21a3df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11443" + ], + "x-ms-request-id": [ + "b05097e9-95ca-4392-89ca-f50a85b5b1ec" + ], + "x-ms-correlation-request-id": [ + "b05097e9-95ca-4392-89ca-f50a85b5b1ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201415Z:b05097e9-95ca-4392-89ca-f50a85b5b1ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84a37575-d5db-41e9-bd04-5fd75505b5e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11441" + ], + "x-ms-request-id": [ + "a1c0ca6a-be0f-4317-85c9-b7a5d16e9048" + ], + "x-ms-correlation-request-id": [ + "a1c0ca6a-be0f-4317-85c9-b7a5d16e9048" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201415Z:a1c0ca6a-be0f-4317-85c9-b7a5d16e9048" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0908398-398e-4f95-ad46-2f40bbb6b852" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11439" + ], + "x-ms-request-id": [ + "732f84ee-ced3-45eb-8452-c49e4583f79b" + ], + "x-ms-correlation-request-id": [ + "732f84ee-ced3-45eb-8452-c49e4583f79b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201415Z:732f84ee-ced3-45eb-8452-c49e4583f79b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14426d76-5946-4b7d-9878-15efb02d9453" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11437" + ], + "x-ms-request-id": [ + "eb53043e-583d-4120-b293-b6c0b926a242" + ], + "x-ms-correlation-request-id": [ + "eb53043e-583d-4120-b293-b6c0b926a242" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201415Z:eb53043e-583d-4120-b293-b6c0b926a242" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7933645c-da6e-4b91-b9ed-a9475384e8d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11435" + ], + "x-ms-request-id": [ + "122df943-1d9d-406a-9887-cba8a838ca69" + ], + "x-ms-correlation-request-id": [ + "122df943-1d9d-406a-9887-cba8a838ca69" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201415Z:122df943-1d9d-406a-9887-cba8a838ca69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d42b474e-697b-40b0-bf93-0e0e05a1d244" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11433" + ], + "x-ms-request-id": [ + "4d19cc0a-f14d-4b98-acee-88c97239a529" + ], + "x-ms-correlation-request-id": [ + "4d19cc0a-f14d-4b98-acee-88c97239a529" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201416Z:4d19cc0a-f14d-4b98-acee-88c97239a529" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d87ddb0c-f48d-4081-90a3-c66ec8e61065" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11431" + ], + "x-ms-request-id": [ + "06a7094f-a827-46cd-aa60-201739c5f97d" + ], + "x-ms-correlation-request-id": [ + "06a7094f-a827-46cd-aa60-201739c5f97d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201416Z:06a7094f-a827-46cd-aa60-201739c5f97d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48fe0e21-d568-4e4f-9060-1604765d086b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11429" + ], + "x-ms-request-id": [ + "1569c79a-d45f-4b2a-bc15-ceb7781d4e61" + ], + "x-ms-correlation-request-id": [ + "1569c79a-d45f-4b2a-bc15-ceb7781d4e61" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201416Z:1569c79a-d45f-4b2a-bc15-ceb7781d4e61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "608903aa-01e7-45ae-bea1-f12a7918183b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11427" + ], + "x-ms-request-id": [ + "0fa5d57d-4edc-41ce-ae89-7053fc99ce10" + ], + "x-ms-correlation-request-id": [ + "0fa5d57d-4edc-41ce-ae89-7053fc99ce10" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201416Z:0fa5d57d-4edc-41ce-ae89-7053fc99ce10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3e4aa7f-43ed-4638-8a78-b6d92952e959" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11425" + ], + "x-ms-request-id": [ + "df19301e-1c4a-4f10-bcef-91be1268e06c" + ], + "x-ms-correlation-request-id": [ + "df19301e-1c4a-4f10-bcef-91be1268e06c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201417Z:df19301e-1c4a-4f10-bcef-91be1268e06c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ffc00e7-d3ef-4a56-b64a-f6568f9eab27" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11423" + ], + "x-ms-request-id": [ + "485ed0c2-7dd3-4e91-8bea-264749e90f3a" + ], + "x-ms-correlation-request-id": [ + "485ed0c2-7dd3-4e91-8bea-264749e90f3a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201417Z:485ed0c2-7dd3-4e91-8bea-264749e90f3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67ad6c15-70c4-411d-9f54-ce480b83a89c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11421" + ], + "x-ms-request-id": [ + "829fad61-9386-4cfb-a72a-7d17f5d8c89c" + ], + "x-ms-correlation-request-id": [ + "829fad61-9386-4cfb-a72a-7d17f5d8c89c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201417Z:829fad61-9386-4cfb-a72a-7d17f5d8c89c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "400c4196-fbc6-418d-b9d4-a8d98f642e4f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11419" + ], + "x-ms-request-id": [ + "c69a06ca-e438-43bf-885e-4f159255c993" + ], + "x-ms-correlation-request-id": [ + "c69a06ca-e438-43bf-885e-4f159255c993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201417Z:c69a06ca-e438-43bf-885e-4f159255c993" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "558" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2019-03-27T20:13:19.4254776Z\",\r\n \"duration\": \"PT9.610486S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9hZG1wczIxMjNJbnZhbGlkUm9sbG91dD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25ee8bb3-7bdf-4d57-aa4f-95f2c41b719b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11417" + ], + "x-ms-request-id": [ + "b1622dad-d111-45fa-b581-cee5e54e9ec7" + ], + "x-ms-correlation-request-id": [ + "b1622dad-d111-45fa-b581-cee5e54e9ec7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201418Z:b1622dad-d111-45fa-b581-cee5e54e9ec7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "739" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.Resources/deployments/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"properties\": {\r\n \"templateHash\": \"6485074668446887573\",\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-03-27T20:14:17.8798686Z\",\r\n \"duration\": \"PT1M8.064877S\",\r\n \"correlationId\": \"7a277fc3-bf06-4b26-85e6-2b0cdf970454\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"centralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3JvbGxvdXRzL2FkbXBzMjEyM0ludmFsaWRSb2xsb3V0P2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ed3e5fc-4fb4-4421-b512-ba96ce307b81" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout?api-version=2018-09-01-preview" + ], + "Retry-After": [ + "120" + ], + "x-ms-client-request-id": [ + "7ed3e5fc-4fb4-4421-b512-ba96ce307b81" + ], + "x-ms-correlation-request-id": [ + "bd4d5f53-7bed-41d3-80ba-ffac5ab2b988" + ], + "x-ms-request-id": [ + "bfd35a9a-1bf0-48c4-aba2-b7302ffeca92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11416" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201419Z:bd4d5f53-7bed-41d3-80ba-ffac5ab2b988" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:19 GMT" + ], + "Content-Length": [ + "2504" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"identityIds\": [\r\n \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.ManagedIdentity/userAssignedIdentities/admps2123Identity\"\r\n ]\r\n },\r\n \"properties\": {\r\n \"status\": \"Failed\",\r\n \"totalRetryAttempts\": 0,\r\n \"operationInfo\": {\r\n \"retryAttempt\": 0,\r\n \"skipSucceededOnRetry\": false,\r\n \"startTime\": \"2019-03-27T20:13:21.03Z\",\r\n \"endTime\": \"2019-03-27T20:13:26.574Z\",\r\n \"lastUpdatedTime\": \"2019-03-27T20:13:26.574Z\",\r\n \"error\": {\r\n \"message\": \"Rollout failed. See individual resource's 'StatusMessage' property for specific error information. \"\r\n }\r\n },\r\n \"services\": [\r\n {\r\n \"name\": \"admps2123Service\",\r\n \"targetSubscriptionId\": \"53012dcb-5039-4e96-8e6c-5d913da1cdb5\",\r\n \"targetLocation\": \"East US\",\r\n \"serviceUnits\": [\r\n {\r\n \"name\": \"admps2123InvalidServiceUnit\",\r\n \"targetResourceGroup\": \"admps2123\",\r\n \"deploymentMode\": \"Incremental\",\r\n \"artifacts\": {},\r\n \"steps\": [\r\n {\r\n \"name\": \"Deploy\",\r\n \"stepGroup\": \"PilotRegion\",\r\n \"status\": \"Failed\",\r\n \"operationInfo\": {\r\n \"deploymentName\": \"C4520C76B4B443549B349B60F68C4D420admps2123InvalidServiceUnit\",\r\n \"startTime\": \"2019-03-27T20:13:25.698Z\",\r\n \"endTime\": \"2019-03-27T20:13:25.698Z\",\r\n \"lastUpdatedTime\": \"2019-03-27T20:13:25.698Z\",\r\n \"error\": {\r\n \"code\": \"ActionExecutionFailed\",\r\n \"message\": \"ResourceGroup 'admps2123''s location 'East US' declared in the Service Model does not match with actual ResourceGroup location 'centralus' on Azure. Update your Service Model with the actual resource group location. \"\r\n }\r\n },\r\n \"resourceOperations\": [],\r\n \"messages\": []\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"buildVersion\": \"1.0.0\",\r\n \"targetServiceTopologyId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology\",\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource\",\r\n \"stepGroups\": [\r\n {\r\n \"name\": \"PilotRegion\",\r\n \"deploymentTargetId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123InvalidServiceUnit\",\r\n \"preDeploymentSteps\": [],\r\n \"postDeploymentSteps\": [],\r\n \"dependsOnStepGroups\": []\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout/restart?skipSucceeded=true&api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3JvbGxvdXRzL2FkbXBzMjEyM0ludmFsaWRSb2xsb3V0L3Jlc3RhcnQ/c2tpcFN1Y2NlZWRlZD10cnVlJmFwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42ad060e-edab-490a-a365-8af790c6d1c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout?skipSucceeded=true&api-version=2018-09-01-preview" + ], + "Retry-After": [ + "60" + ], + "x-ms-client-request-id": [ + "42ad060e-edab-490a-a365-8af790c6d1c6" + ], + "x-ms-correlation-request-id": [ + "f9e81dc4-42f6-430f-bf7f-79e3ebe5a41b" + ], + "x-ms-request-id": [ + "d2c87430-fb92-45a1-a2de-4d8c49d7088e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201422Z:f9e81dc4-42f6-430f-bf7f-79e3ebe5a41b" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:21 GMT" + ], + "Content-Length": [ + "1481" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"identityIds\": [\r\n \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.ManagedIdentity/userAssignedIdentities/admps2123Identity\"\r\n ]\r\n },\r\n \"properties\": {\r\n \"status\": \"Running\",\r\n \"totalRetryAttempts\": 1,\r\n \"operationInfo\": {\r\n \"retryAttempt\": 1,\r\n \"skipSucceededOnRetry\": true,\r\n \"startTime\": \"2019-03-27T20:14:20.715Z\",\r\n \"lastUpdatedTime\": \"2019-03-27T20:14:20.715Z\"\r\n },\r\n \"buildVersion\": \"1.0.0\",\r\n \"targetServiceTopologyId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology\",\r\n \"artifactSourceId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource\",\r\n \"stepGroups\": [\r\n {\r\n \"name\": \"PilotRegion\",\r\n \"deploymentTargetId\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123InvalidServiceUnit\",\r\n \"preDeploymentSteps\": [],\r\n \"postDeploymentSteps\": [],\r\n \"dependsOnStepGroups\": []\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/rollouts\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123InvalidRollout\",\r\n \"name\": \"admps2123InvalidRollout\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/rollouts/admps2123Rollout?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3JvbGxvdXRzL2FkbXBzMjEyM1JvbGxvdXQ/YXBpLXZlcnNpb249MjAxOC0wOS0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be8971dc-109f-475d-b1fb-fc995a107eda" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "be8971dc-109f-475d-b1fb-fc995a107eda" + ], + "x-ms-correlation-request-id": [ + "bcd6b4ab-4295-46fd-b9e5-2bf5caec54b5" + ], + "x-ms-request-id": [ + "de6f689f-5554-45f7-b1ef-9eede79e606b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201425Z:bcd6b4ab-4295-46fd-b9e5-2bf5caec54b5" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:24 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/steps/WaitStep?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3N0ZXBzL1dhaXRTdGVwP2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06ed3c8f-e37d-435b-a3c3-66ccbe9fd1e3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "06ed3c8f-e37d-435b-a3c3-66ccbe9fd1e3" + ], + "x-ms-correlation-request-id": [ + "2994d0fb-e38b-4443-8578-6b5594639eea" + ], + "x-ms-request-id": [ + "1df43614-63df-4c66-bdeb-94e4ce5e0980" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201430Z:2994d0fb-e38b-4443-8578-6b5594639eea" + ], + "Date": [ + "Wed, 27 Mar 2019 20:14:29 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/operationResults/316e84e1-68ca-483b-bd5c-0212af823a9e?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlZ3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL29wZXJhdGlvblJlc3VsdHMvMzE2ZTg0ZTEtNjhjYS00ODNiLWJkNWMtMDIxMmFmODIzYTllP2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit?api-version=2018-09-01-preview" + ], + "Retry-After": [ + "30" + ], + "x-ms-client-request-id": [ + "4bc9a1b2-ee88-4976-a0aa-b22a9dea4214" + ], + "x-ms-correlation-request-id": [ + "4ba7b195-1a86-4051-81d9-99c4f46107ab" + ], + "x-ms-request-id": [ + "77d61cbe-4a60-4f0a-9366-ae9c3b844ae2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11413" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201521Z:4ba7b195-1a86-4051-81d9-99c4f46107ab" + ], + "Date": [ + "Wed, 27 Mar 2019 20:15:21 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-03-27T20:14:31.722Z\",\r\n \"endTime\": \"2019-03-27T20:14:38.88Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123ServiceUnit?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlL3NlcnZpY2VVbml0cy9hZG1wczIxMjNTZXJ2aWNlVW5pdD9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "286909d8-516e-4791-8666-fe9252a28a54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "286909d8-516e-4791-8666-fe9252a28a54" + ], + "x-ms-correlation-request-id": [ + "4b56305d-ef86-432a-81aa-8cf06850e525" + ], + "x-ms-request-id": [ + "16fbc6ca-6cb6-4375-bf18-7c5e3d2d3e9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201525Z:4b56305d-ef86-432a-81aa-8cf06850e525" + ], + "Date": [ + "Wed, 27 Mar 2019 20:15:24 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service/serviceUnits/admps2123InvalidServiceUnit?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlL3NlcnZpY2VVbml0cy9hZG1wczIxMjNJbnZhbGlkU2VydmljZVVuaXQ/YXBpLXZlcnNpb249MjAxOC0wOS0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1be45089-c325-4981-b9c3-a64243923805" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "1be45089-c325-4981-b9c3-a64243923805" + ], + "x-ms-correlation-request-id": [ + "d012b711-2b4b-4cac-a19d-8438e51f8909" + ], + "x-ms-request-id": [ + "891ec37e-0238-482b-8933-965d22caecb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201528Z:d012b711-2b4b-4cac-a19d-8438e51f8909" + ], + "Date": [ + "Wed, 27 Mar 2019 20:15:28 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology/services/admps2123Service?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neS9zZXJ2aWNlcy9hZG1wczIxMjNTZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMTgtMDktMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0669cc5e-8ab5-4ce7-ba4d-877004541b94" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "0669cc5e-8ab5-4ce7-ba4d-877004541b94" + ], + "x-ms-correlation-request-id": [ + "ab094c5e-ff2f-4453-a5c1-ceb7dcad72f1" + ], + "x-ms-request-id": [ + "a9e73818-4c21-4139-b303-c17369e85e3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201532Z:ab094c5e-ff2f-4453-a5c1-ceb7dcad72f1" + ], + "Date": [ + "Wed, 27 Mar 2019 20:15:31 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSourceUpdated?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL2FydGlmYWN0U291cmNlcy9hZG1wczIxMjNBcnRpZmFjdFNvdXJjZVVwZGF0ZWQ/YXBpLXZlcnNpb249MjAxOC0wOS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7255cd16-bef3-43bd-9f23-59e2ff6d9b0f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2f5a0670-9464-4388-a91b-e43fb7d5a7bc" + ], + "x-ms-correlation-request-id": [ + "2f5a0670-9464-4388-a91b-e43fb7d5a7bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201532Z:2f5a0670-9464-4388-a91b-e43fb7d5a7bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 27 Mar 2019 20:15:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "187" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSourceUpdated' under resource group 'admps2123' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSourceUpdated?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL2FydGlmYWN0U291cmNlcy9hZG1wczIxMjNBcnRpZmFjdFNvdXJjZVVwZGF0ZWQ/YXBpLXZlcnNpb249MjAxOC0wOS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="This is the secret for a resource that has since been deleted.")] + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceType\": \"AzureStorage\",\r\n \"artifactRoot\": \"ScenarioTests\\\\ArtifactRoot\",\r\n \"authentication\": {\r\n \"type\": \"Sas\",\r\n \"properties\": {\r\n \"sasUri\": \"https://admps2123psstgacct.blob.core.windows.net/artifacts?sv=2018-03-28&sr=c&sig=d8PsIaJf0M14QIjcKdH6sd8DywiLQYACg6gYIC1dXrc%3D&st=2019-03-27T00%3A15%3A32Z&se=2019-03-29T20%3A15%3A32Z&sp=rl\"\r\n }\r\n }\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdc2c4ed-d7e5-4393-aeb3-0865058f88c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "442" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "fdc2c4ed-d7e5-4393-aeb3-0865058f88c2" + ], + "x-ms-correlation-request-id": [ + "9063f0f7-9168-4c55-bc42-e7722dfe6bf2" + ], + "x-ms-request-id": [ + "13bdd9c1-6751-4380-b93a-db41c586fab0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201601Z:9063f0f7-9168-4c55-bc42-e7722dfe6bf2" + ], + "Date": [ + "Wed, 27 Mar 2019 20:16:00 GMT" + ], + "Content-Length": [ + "690" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="This is the secret for a resource that has since been deleted.")] + "ResponseBody": "{\r\n \"properties\": {\r\n \"sourceType\": \"AzureStorage\",\r\n \"artifactRoot\": \"ScenarioTests\\\\ArtifactRoot\",\r\n \"authentication\": {\r\n \"type\": \"Sas\",\r\n \"properties\": {\r\n \"sasUri\": \"https://admps2123psstgacct.blob.core.windows.net/artifacts?sv=2018-03-28&sr=c&sig=d8PsIaJf0M14QIjcKdH6sd8DywiLQYACg6gYIC1dXrc%3D&st=2019-03-27T00%3A15%3A32Z&se=2019-03-29T20%3A15%3A32Z&sp=rl\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.DeploymentManager/artifactSources\",\r\n \"apiVersion\": \"2018-09-01-preview\",\r\n \"id\": \"/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourcegroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSourceUpdated\",\r\n \"name\": \"admps2123ArtifactSourceUpdated\",\r\n \"location\": \"Central US\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/serviceTopologies/admps2123ServiceTopology?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL3NlcnZpY2VUb3BvbG9naWVzL2FkbXBzMjEyM1NlcnZpY2VUb3BvbG9neT9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "107fc82b-9e61-4d65-80d0-30d8b7b739c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "107fc82b-9e61-4d65-80d0-30d8b7b739c6" + ], + "x-ms-correlation-request-id": [ + "d036ebdb-0870-408d-8f60-e933959f9e66" + ], + "x-ms-request-id": [ + "e1d99b73-7deb-440d-aa0c-2a634ae9dc45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201608Z:d036ebdb-0870-408d-8f60-e933959f9e66" + ], + "Date": [ + "Wed, 27 Mar 2019 20:16:07 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53012dcb-5039-4e96-8e6c-5d913da1cdb5/resourceGroups/admps2123/providers/Microsoft.DeploymentManager/artifactSources/admps2123ArtifactSource?api-version=2018-09-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTMwMTJkY2ItNTAzOS00ZTk2LThlNmMtNWQ5MTNkYTFjZGI1L3Jlc291cmNlR3JvdXBzL2FkbXBzMjEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRlcGxveW1lbnRNYW5hZ2VyL2FydGlmYWN0U291cmNlcy9hZG1wczIxMjNBcnRpZmFjdFNvdXJjZT9hcGktdmVyc2lvbj0yMDE4LTA5LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1dd5b64e-80da-4069-9701-67a04d272164" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27414.06", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.DeploymentManager.AzureDeploymentManagerClient/0.9.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-client-request-id": [ + "1dd5b64e-80da-4069-9701-67a04d272164" + ], + "x-ms-correlation-request-id": [ + "36851614-5c1b-40b4-8e69-320dd11bfcd7" + ], + "x-ms-request-id": [ + "c22ce6ed-1d5b-42a2-af80-9378c4d9fad2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190327T201630Z:36851614-5c1b-40b4-8e69-320dd11bfcd7" + ], + "Date": [ + "Wed, 27 Mar 2019 20:16:30 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + } + ], + "Names": { + "Test-EndToEndFunctionalTests": [ + "ps2123" + ] + }, + "Variables": { + "SubscriptionId": "53012dcb-5039-4e96-8e6c-5d913da1cdb5" + } +} \ No newline at end of file diff --git a/src/DeploymentManager/DeploymentManager.sln b/src/DeploymentManager/DeploymentManager.sln new file mode 100644 index 000000000000..a2982e8ba9fd --- /dev/null +++ b/src/DeploymentManager/DeploymentManager.sln @@ -0,0 +1,90 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28010.2003 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DeploymentManager", "DeploymentManager\DeploymentManager.csproj", "{F022ED20-7D3B-4BF4-88AF-F97CC50484DA}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{95C16AED-FD57-42A0-86C3-2CF4300A4817}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DeploymentManager.Test", "DeploymentManager.Test\DeploymentManager.Test.csproj", "{4AE5705F-62CF-461D-B72E-DD9DCD9B3609}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{3E016018-D65D-4336-9F64-17DA97783AD0}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ScenarioTest.ResourceManager", "..\..\tools\ScenarioTest.ResourceManager\ScenarioTest.ResourceManager.csproj", "{F83FBA8D-732D-437C-A0E2-02E45B01E123}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestFx", "..\..\tools\TestFx\TestFx.csproj", "{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Storage", "..\Storage\Storage\Storage.csproj", "{D092B68C-060B-43DB-A532-60C56740DD28}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Storage.Management", "..\Storage\Storage.Management\Storage.Management.csproj", "{7225B0EB-9EFA-4592-AE13-B40CABC66CA3}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ManagedServiceIdentity", "..\ManagedServiceIdentity\ManagedServiceIdentity\ManagedServiceIdentity.csproj", "{228EB071-FA04-43B3-95F9-7D76DBF0B850}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Resources", "..\Resources\Resources\Resources.csproj", "{E1F5201D-6067-430E-B303-4E367652991B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F022ED20-7D3B-4BF4-88AF-F97CC50484DA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F022ED20-7D3B-4BF4-88AF-F97CC50484DA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F022ED20-7D3B-4BF4-88AF-F97CC50484DA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F022ED20-7D3B-4BF4-88AF-F97CC50484DA}.Release|Any CPU.Build.0 = Release|Any CPU + {4AE5705F-62CF-461D-B72E-DD9DCD9B3609}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4AE5705F-62CF-461D-B72E-DD9DCD9B3609}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4AE5705F-62CF-461D-B72E-DD9DCD9B3609}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4AE5705F-62CF-461D-B72E-DD9DCD9B3609}.Release|Any CPU.Build.0 = Release|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU + {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.Build.0 = Release|Any CPU + {3E016018-D65D-4336-9F64-17DA97783AD0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3E016018-D65D-4336-9F64-17DA97783AD0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3E016018-D65D-4336-9F64-17DA97783AD0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3E016018-D65D-4336-9F64-17DA97783AD0}.Release|Any CPU.Build.0 = Release|Any CPU + {F83FBA8D-732D-437C-A0E2-02E45B01E123}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F83FBA8D-732D-437C-A0E2-02E45B01E123}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F83FBA8D-732D-437C-A0E2-02E45B01E123}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F83FBA8D-732D-437C-A0E2-02E45B01E123}.Release|Any CPU.Build.0 = Release|Any CPU + {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.Build.0 = Release|Any CPU + {D092B68C-060B-43DB-A532-60C56740DD28}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D092B68C-060B-43DB-A532-60C56740DD28}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D092B68C-060B-43DB-A532-60C56740DD28}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D092B68C-060B-43DB-A532-60C56740DD28}.Release|Any CPU.Build.0 = Release|Any CPU + {7225B0EB-9EFA-4592-AE13-B40CABC66CA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7225B0EB-9EFA-4592-AE13-B40CABC66CA3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7225B0EB-9EFA-4592-AE13-B40CABC66CA3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7225B0EB-9EFA-4592-AE13-B40CABC66CA3}.Release|Any CPU.Build.0 = Release|Any CPU + {228EB071-FA04-43B3-95F9-7D76DBF0B850}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {228EB071-FA04-43B3-95F9-7D76DBF0B850}.Debug|Any CPU.Build.0 = Debug|Any CPU + {228EB071-FA04-43B3-95F9-7D76DBF0B850}.Release|Any CPU.ActiveCfg = Release|Any CPU + {228EB071-FA04-43B3-95F9-7D76DBF0B850}.Release|Any CPU.Build.0 = Release|Any CPU + {E1F5201D-6067-430E-B303-4E367652991B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E1F5201D-6067-430E-B303-4E367652991B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E1F5201D-6067-430E-B303-4E367652991B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E1F5201D-6067-430E-B303-4E367652991B}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {4AE5705F-62CF-461D-B72E-DD9DCD9B3609} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C50F967F-CC90-485A-AEED-2886F3D3066E} + EndGlobalSection +EndGlobal diff --git a/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 b/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 new file mode 100644 index 000000000000..7293a96e56f2 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 @@ -0,0 +1,156 @@ +# +# Module manifest for module 'Az.DeploymentManager' +# +# Generated by: Microsoft Corporation +# +# Generated on: 8/25/2018 +# + +@{ + +# Script module or binary module file associated with this manifest. +# RootModule = '' + +# Version number of this module. +ModuleVersion = '0.1.0' + +# Supported PSEditions +CompatiblePSEditions = 'Core', 'Desktop' + +# ID used to uniquely identify this module +GUID = 'caac1590-e859-444f-a9e0-62091c0f5929' + +# Author of this module +Author = 'Microsoft Corporation' + +# Company or vendor of this module +CompanyName = 'Microsoft Corporation' + +# Copyright statement for this module +Copyright = 'Microsoft Corporation. All rights reserved.' + +# Description of the functionality provided by this module +Description = 'PowerShell .Net Core Microsoft Azure PowerShell - Deployment Manager cmdlets for Azure Resource Manager. +For more information, visit https://docs.microsoft.com/en-us/azure/azure-resource-manager/deployment-manager-overview' + +# Minimum version of the Windows PowerShell engine required by this module +PowerShellVersion = '5.1' + +# Name of the Windows PowerShell host required by this module +# PowerShellHostName = '' + +# Minimum version of the Windows PowerShell host required by this module +# PowerShellHostVersion = '' + +# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +DotNetFrameworkVersion = '4.7.2' + +# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +# CLRVersion = '4.0' + +# Processor architecture (None, X86, Amd64) required by this module +# ProcessorArchitecture = '' + +# Modules that must be imported into the global environment prior to importing this module +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) + +# Assemblies that must be loaded prior to importing this module +RequiredAssemblies = '.\Microsoft.Azure.Management.DeploymentManager.dll' + +# Script files (.ps1) that are run in the caller's environment prior to importing this module. +# ScriptsToProcess = @() + +# Type files (.ps1xml) to be loaded when importing this module +# TypesToProcess = @() + +# Format files (.ps1xml) to be loaded when importing this module +# FormatsToProcess = '.\Microsoft.Azure.Commands.DeploymentManager.format.ps1xml' + +# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess +NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll') + +# 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 = @() + +# 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 = 'Get-AzDeploymentManagerArtifactSource', + 'New-AzDeploymentManagerArtifactSource', + 'Set-AzDeploymentManagerArtifactSource', + 'Remove-AzDeploymentManagerArtifactSource', + 'Get-AzDeploymentManagerRollout', + 'Stop-AzDeploymentManagerRollout', + 'Restart-AzDeploymentManagerRollout', + 'Remove-AzDeploymentManagerRollout', + 'New-AzDeploymentManagerServiceTopology', + 'Get-AzDeploymentManagerServiceTopology', + 'Set-AzDeploymentManagerServiceTopology', + 'Remove-AzDeploymentManagerServiceTopology', + 'Get-AzDeploymentManagerService', + 'New-AzDeploymentManagerService', + 'Set-AzDeploymentManagerService', + 'Remove-AzDeploymentManagerService', + 'Get-AzDeploymentManagerServiceUnit', + 'New-AzDeploymentManagerServiceUnit', + 'Set-AzDeploymentManagerServiceUnit', + 'Remove-AzDeploymentManagerServiceUnit', + 'Get-AzDeploymentManagerStep', + 'New-AzDeploymentManagerStep', + 'Set-AzDeploymentManagerStep', + 'Remove-AzDeploymentManagerStep' + +# Variables to export from this module +# VariablesToExport = @() + +# Aliases 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 aliases to export. +AliasesToExport = @() + +# DSC resources to export from this module +# DscResourcesToExport = @() + +# List of all modules packaged with this module +# ModuleList = @() + +# List of all files packaged with this module +# FileList = @() + +# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. +PrivateData = @{ + + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. + Tags = 'Azure','ResourceManager','ARM','DeploymentManager' + + # A URL to the license for this module. + LicenseUri = 'https://aka.ms/azps-license' + + # A URL to the main website for this project. + ProjectUri = 'https://github.com/Azure/azure-powershell' + + # A URL to an icon representing this module. + # IconUri = '' + + # ReleaseNotes of this module + ReleaseNotes = '* First release for private preview' + + # Prerelease string of this module + # Prerelease = 'preview' + + # Flag to indicate whether the module requires explicit user acceptance for install/update + # RequireLicenseAcceptance = $false + + # External dependent modules of this module + # ExternalModuleDependencies = @() + + } # End of PSData hashtable + + } # End of PrivateData hashtable + +# HelpInfo URI of this module +# HelpInfoURI = '' + +# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. +# DefaultCommandPrefix = '' + +} + diff --git a/src/DeploymentManager/DeploymentManager/ChangeLog.md b/src/DeploymentManager/DeploymentManager/ChangeLog.md new file mode 100644 index 000000000000..03720c40654d --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/ChangeLog.md @@ -0,0 +1,23 @@ + +## Upcoming Release + +## Version 0.1.0 +* First release of 'Az.DeploymentManager' module. Parity with AzureRM.DeploymentManager module. diff --git a/src/DeploymentManager/DeploymentManager/Client/DeploymentManagerClient.cs b/src/DeploymentManager/DeploymentManager/Client/DeploymentManagerClient.cs new file mode 100644 index 000000000000..98be7c76f5d8 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Client/DeploymentManagerClient.cs @@ -0,0 +1,285 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Client +{ + using System.Collections.Generic; + using System; + using System.Net; + + using Common.Authentication.Abstractions; + using Microsoft.Azure.Commands.Common.Authentication; + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Management.DeploymentManager; + using Microsoft.Azure.Management.DeploymentManager.Models; + using Microsoft.Rest.Azure; + + /// + /// The client that handles all the requests from the commands. + /// + internal class DeploymentManagerClient + { + /// + /// The deployment manager client. + /// + private AzureDeploymentManagerClient _client; + + /// + /// Initializes a new instance of the class. + /// + /// The current Azure session context. + internal DeploymentManagerClient(IAzureContext context) + { + this._client = AzureSession.Instance.ClientFactory.CreateArmClient(context, AzureEnvironment.Endpoint.ResourceManager); + } + + /// + /// Initializes a new instance of the class. + /// + internal DeploymentManagerClient() { } + + /// + /// Gets or sets the logger used for vebose logging. + /// + internal Action VerboseLogger { get; set; } + + /// + /// Gets or sets the logger used to log errors. + /// + internal Action ErrorLogger { get; set; } + + internal PSRollout GetRollout(string resourceGroupName, string rolloutName, int? retryAttempt = null) + { + + var rollout = _client.Rollouts.Get(resourceGroupName, rolloutName, retryAttempt); + return new PSRollout(resourceGroupName, rollout); + } + + internal PSRollout RestartRollout(PSRollout psRollout, bool? skipSucceeded = true) + { + + var rollout = _client.Rollouts.Restart(psRollout.ResourceGroupName, psRollout.Name, skipSucceeded); + return new PSRollout(psRollout.ResourceGroupName, rollout); + } + + internal PSRollout CancelRollout(PSRollout psRollout) + { + + var rollout = _client.Rollouts.Cancel(psRollout.ResourceGroupName, psRollout.Name); + return new PSRollout(psRollout.ResourceGroupName, rollout); + } + + internal bool DeleteRollout(PSRollout psRollout) + { + + var result = _client.Rollouts.DeleteWithHttpMessagesAsync(psRollout.ResourceGroupName, psRollout.Name).GetAwaiter().GetResult(); + return (result.Response.StatusCode == HttpStatusCode.OK || result.Response.StatusCode == HttpStatusCode.NoContent); + } + + internal PSArtifactSource PutArtifactSource(PSArtifactSource psArtifactSource) + { + + var artifactSource =_client.ArtifactSources.CreateOrUpdate( + psArtifactSource.ResourceGroupName, + psArtifactSource.Name, + psArtifactSource.ToSdkType()); + + return new PSArtifactSource(psArtifactSource.ResourceGroupName, artifactSource); + } + + internal bool ArtifactSourceExists(PSArtifactSource psArtifactSource) + { + return DeploymentManagerClient.ResourceExists(psArtifactSource, this.GetArtifactSource); + } + + internal PSArtifactSource GetArtifactSource(PSArtifactSource psArtifactSource) + { + + var artifactSource = _client.ArtifactSources.Get(psArtifactSource.ResourceGroupName, psArtifactSource.Name); + return new PSArtifactSource(psArtifactSource.ResourceGroupName, artifactSource); + } + + internal bool DeleteArtifactSource(PSArtifactSource psArtifactSource) + { + + var result = _client.ArtifactSources.DeleteWithHttpMessagesAsync(psArtifactSource.ResourceGroupName, psArtifactSource.Name).GetAwaiter().GetResult(); + return (result.Response.StatusCode == HttpStatusCode.OK || result.Response.StatusCode == HttpStatusCode.NoContent); + } + + internal PSServiceTopologyResource PutServiceTopology(PSServiceTopologyResource psTopologyResource) + { + + var serviceTopologyResource = _client.ServiceTopologies.CreateOrUpdate( + psTopologyResource.ToSdkType(), + psTopologyResource.ResourceGroupName, + psTopologyResource.Name); + + return new PSServiceTopologyResource(psTopologyResource.ResourceGroupName, serviceTopologyResource); + } + + internal bool ServiceTopologyExists(PSServiceTopologyResource psServiceTopologyResource) + { + return DeploymentManagerClient.ResourceExists(psServiceTopologyResource, this.GetServiceTopology); + } + + internal PSServiceResource PutService(PSServiceResource psServiceResource) + { + + var serviceResource = _client.Services.CreateOrUpdate( + psServiceResource.ResourceGroupName, + psServiceResource.ServiceTopologyName, + psServiceResource.Name, + psServiceResource.ToSdkType()); + + return new PSServiceResource(psServiceResource.ResourceGroupName, psServiceResource.ServiceTopologyName, serviceResource); + } + + internal bool ServiceExists(PSServiceResource psServiceResource) + { + return DeploymentManagerClient.ResourceExists(psServiceResource, this.GetService); + } + + internal PSServiceUnitResource PutServiceUnit( + PSServiceUnitResource psServiceUnitResource) + { + + var serviceUnitResource = _client.ServiceUnits.CreateOrUpdate( + psServiceUnitResource.ResourceGroupName, + psServiceUnitResource.ServiceTopologyName, + psServiceUnitResource.ServiceName, + psServiceUnitResource.Name, + psServiceUnitResource.ToSdkType()); + + return new PSServiceUnitResource( + psServiceUnitResource.ResourceGroupName, + psServiceUnitResource.ServiceTopologyName, + psServiceUnitResource.ServiceName, + serviceUnitResource); + } + + internal bool ServiceUnitExists(PSServiceUnitResource psServiceUnitResource) + { + return DeploymentManagerClient.ResourceExists(psServiceUnitResource, this.GetServiceUnit); + } + + internal PSServiceTopologyResource GetServiceTopology(PSServiceTopologyResource pSServiceTopologyResource) + { + + var serviceTopologyResource = _client.ServiceTopologies.Get(pSServiceTopologyResource.ResourceGroupName, pSServiceTopologyResource.Name); + return new PSServiceTopologyResource(pSServiceTopologyResource.ResourceGroupName, serviceTopologyResource); + } + + internal PSServiceResource GetService(PSServiceResource pSServiceResource) + { + + var serviceResource = _client.Services.Get(pSServiceResource.ResourceGroupName, pSServiceResource.ServiceTopologyName, pSServiceResource.Name); + + return new PSServiceResource( + pSServiceResource.ResourceGroupName, + pSServiceResource.ServiceTopologyName, + serviceResource); + } + + internal PSServiceUnitResource GetServiceUnit(PSServiceUnitResource psServiceUnit) + { + + var serviceUnit = _client.ServiceUnits.Get(psServiceUnit.ResourceGroupName, psServiceUnit.ServiceTopologyName, psServiceUnit.ServiceName, psServiceUnit.Name); + + return new PSServiceUnitResource( + psServiceUnit.ResourceGroupName, + psServiceUnit.ServiceTopologyName, + psServiceUnit.ServiceName, + serviceUnit); + } + + internal bool DeleteServiceTopology(PSServiceTopologyResource psServiceTopologyResource) + { + + var result = _client.ServiceTopologies.DeleteWithHttpMessagesAsync(psServiceTopologyResource.ResourceGroupName, psServiceTopologyResource.Name).GetAwaiter().GetResult(); + return (result.Response.StatusCode == HttpStatusCode.OK || result.Response.StatusCode == HttpStatusCode.NoContent); + } + + internal bool DeleteService(PSServiceResource psServiceResource) + { + + var result = _client.Services.DeleteWithHttpMessagesAsync(psServiceResource.ResourceGroupName, psServiceResource.ServiceTopologyName, psServiceResource.Name).GetAwaiter().GetResult(); + return (result.Response.StatusCode == HttpStatusCode.OK || result.Response.StatusCode == HttpStatusCode.NoContent); + } + + internal bool DeleteServiceUnit(PSServiceUnitResource psServiceUnitResource) + { + + var result = _client.ServiceUnits.DeleteWithHttpMessagesAsync( + psServiceUnitResource.ResourceGroupName, + psServiceUnitResource.ServiceTopologyName, + psServiceUnitResource.ServiceName, + psServiceUnitResource.Name).GetAwaiter().GetResult(); + return (result.Response.StatusCode == HttpStatusCode.OK || result.Response.StatusCode == HttpStatusCode.NoContent); + } + + internal PSStepResource PutStep(PSStepResource psStepResource) + { + + var stepResource = _client.Steps.CreateOrUpdate( + psStepResource.ResourceGroupName, + psStepResource.Name, + psStepResource.ToSdkType()); + + return new PSStepResource(psStepResource.ResourceGroupName, stepResource); + } + + internal bool StepExists(PSStepResource psStepResource) + { + return DeploymentManagerClient.ResourceExists(psStepResource, this.GetStep); + } + + internal PSStepResource GetStep(PSStepResource psStepResource) + { + + var stepResource = _client.Steps.Get(psStepResource.ResourceGroupName, psStepResource.Name); + return new PSStepResource(psStepResource.ResourceGroupName, stepResource); + } + + internal bool DeleteStep(PSStepResource psStepResource) + { + + var result = _client.Steps.DeleteWithHttpMessagesAsync(psStepResource.ResourceGroupName, psStepResource.Name).GetAwaiter().GetResult(); + return (result.Response.StatusCode == HttpStatusCode.OK || result.Response.StatusCode == HttpStatusCode.NoContent); + } + + internal IList GetOperations() + { + + return _client.Operations.Get(); + } + + private static bool ResourceExists(T resourceObject, Func getFunc) where T : PSResource + { + T retrievedServiceResource = null; + try + { + retrievedServiceResource = getFunc(resourceObject); + } + catch (CloudException ex) + { + if (ex.Response.StatusCode == HttpStatusCode.NotFound) + { + return false; + } + } + + return retrievedServiceResource != null; + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/DeploymentManagerBaseCmdlet.cs b/src/DeploymentManager/DeploymentManager/Commands/DeploymentManagerBaseCmdlet.cs new file mode 100644 index 000000000000..ae7a537d5ec3 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/DeploymentManagerBaseCmdlet.cs @@ -0,0 +1,65 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using Microsoft.Azure.Commands.DeploymentManager.Client; + using ResourceManager.Common; + + /// + /// The base class for all the cmdlets. + /// + public abstract class DeploymentManagerBaseCmdlet : AzureRMCmdlet + { + /// + /// The client used to communicate with Azure Deployment Manager. + /// + private DeploymentManagerClient deploymentManagerClient; + + /// + /// The parameter set name to be used when individual properties are given to identify a resource. + /// + protected const string InteractiveParamSetName = "Interactive"; + + /// + /// The parameter set name to be used for parameter set where a resource identifier is provided. + /// + protected const string ResourceIdParamSetName = "ResourceId"; + + /// + /// The parameter set name to be used for parameter set where a resource object is provided. + /// + protected const string InputObjectParamSetName = "InputObject"; + + /// + /// Gets or sets the Azure Deployment Manager client. + /// + internal DeploymentManagerClient DeploymentManagerClient + { + get + { + if (this.deploymentManagerClient == null) + { + this.deploymentManagerClient = new DeploymentManagerClient(DefaultProfile.DefaultContext); + } + + this.deploymentManagerClient.VerboseLogger = WriteVerboseWithTimestamp; + this.deploymentManagerClient.ErrorLogger = WriteErrorWithTimestamp; + return this.deploymentManagerClient; + } + + set { this.deploymentManagerClient = value; } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/GetArtifactSource.cs b/src/DeploymentManager/DeploymentManager/Commands/GetArtifactSource.cs new file mode 100644 index 000000000000..246cd2408a3c --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/GetArtifactSource.cs @@ -0,0 +1,90 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsCommon.Get, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerArtifactSource", + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName), + OutputType(typeof(PSArtifactSource))] + public class GetArtifactSource : DeploymentManagerBaseCmdlet + { + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the artifact source.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/artifactSources", nameof(ResourceGroupName))] + public string Name { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.ResourceIdParamSetName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource identifier.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName, + ValueFromPipeline = true, + HelpMessage = "Artifact Source object.")] + [ValidateNotNullOrEmpty] + public PSArtifactSource InputObject { get; set; } + + public override void ExecuteCmdlet() + { + if (this.InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.Name = this.InputObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.Name = parsedResourceId.ResourceName; + } + + var psArtifactSource = new PSArtifactSource() + { + ResourceGroupName = this.ResourceGroupName, + Name = this.Name, + }; + + psArtifactSource = this.DeploymentManagerClient.GetArtifactSource(psArtifactSource); + this.WriteObject(psArtifactSource); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/GetRollout.cs b/src/DeploymentManager/DeploymentManager/Commands/GetRollout.cs new file mode 100644 index 000000000000..715f14887a1b --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/GetRollout.cs @@ -0,0 +1,94 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsCommon.Get, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerRollout", + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName), + OutputType(typeof(PSRollout))] + public class GetRollout : RolloutCmdletBase + { + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the rollout.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/rollouts", nameof(ResourceGroupName))] + public string Name { get; set; } + + [Parameter( + Mandatory = false, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The retry attempt of the rollout.")] + [ValidateNotNullOrEmpty] + [ValidateRange(0, 32)] + public int? RetryAttempt { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.ResourceIdParamSetName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource identifier.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName, + ValueFromPipeline = true, + HelpMessage = "Rollout object.")] + [ValidateNotNullOrEmpty] + public PSRollout InputObject { get; set; } + + public override void ExecuteCmdlet() + { + if (this.InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.Name = this.InputObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.Name = parsedResourceId.ResourceName; + } + + var rollout = this.DeploymentManagerClient.GetRollout(this.ResourceGroupName, this.Name, this.RetryAttempt); + + this.PrintRollout(rollout); + this.WriteObject(rollout); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/GetService.cs b/src/DeploymentManager/DeploymentManager/Commands/GetService.cs new file mode 100644 index 000000000000..57734671968f --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/GetService.cs @@ -0,0 +1,162 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System; + using System.Management.Automation; + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsCommon.Get, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerService", + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName), + OutputType(typeof(PSServiceResource))] + public class GetService : DeploymentManagerBaseCmdlet + { + private const string ByServiceTopologyObjectParameterSet = "ByServiceTopologyObject"; + + private const string ByServiceTopologyResourceIdParamSet = "ByServiceTopologyResourceId"; + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The resource group.")] + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = GetService.ByServiceTopologyObjectParameterSet, + HelpMessage = "The resource group.")] + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = GetService.ByServiceTopologyResourceIdParamSet, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the service topology.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies", nameof(ResourceGroupName))] + public string ServiceTopologyName { get; set; } + + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the service.")] + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = GetService.ByServiceTopologyObjectParameterSet, + HelpMessage = "The name of the service.")] + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = GetService.ByServiceTopologyResourceIdParamSet, + HelpMessage = "The name of the service.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies/services", nameof(ResourceGroupName), nameof(ServiceTopologyName))] + public string Name { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.ResourceIdParamSetName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource identifier.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName, + ValueFromPipeline = true, + HelpMessage = "Service object.")] + [ValidateNotNullOrEmpty] + public PSServiceResource InputObject { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = GetService.ByServiceTopologyObjectParameterSet, + HelpMessage = "The service topology object in which the service should be created.")] + [ValidateNotNullOrEmpty] + public PSServiceTopologyResource ServiceTopologyObject { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = GetService.ByServiceTopologyResourceIdParamSet, + HelpMessage = "The service topology resource identifier in which the service should be created.")] + [ValidateNotNullOrEmpty] + public string ServiceTopologyResourceId { get; set; } + + public override void ExecuteCmdlet() + { + this.ResolveParams(); + var psServiceResource = new PSServiceResource() + { + ResourceGroupName = this.ResourceGroupName, + ServiceTopologyName = this.ServiceTopologyName, + Name = this.Name + }; + + psServiceResource = this.DeploymentManagerClient.GetService(psServiceResource); + this.WriteObject(psServiceResource); + } + + private void ResolveParams() + { + if (this.InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.ServiceTopologyName = this.InputObject.ServiceTopologyName; + this.Name = this.InputObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.Name = parsedResourceId.ResourceName; + + string[] tokens = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + if (tokens.Length < 2) + { + throw new ArgumentException($"Invalid Service resource identifier: {this.ResourceId}"); + } + + this.ServiceTopologyName = tokens[1]; + } + else if (this.ServiceTopologyObject != null) + { + this.ServiceTopologyName = this.ServiceTopologyObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ServiceTopologyResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ServiceTopologyResourceId); + this.ServiceTopologyName = parsedResourceId.ResourceName; + } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/GetServiceTopology.cs b/src/DeploymentManager/DeploymentManager/Commands/GetServiceTopology.cs new file mode 100644 index 000000000000..2d34fe9f908a --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/GetServiceTopology.cs @@ -0,0 +1,90 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsCommon.Get, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerServiceTopology", + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName), + OutputType(typeof(PSServiceTopologyResource))] + public class GetServiceTopology : DeploymentManagerBaseCmdlet + { + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the service topology.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies", nameof(ResourceGroupName))] + public string Name { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.ResourceIdParamSetName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource identifier.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName, + ValueFromPipeline = true, + HelpMessage = "Service topology resource object.")] + [ValidateNotNullOrEmpty] + public PSServiceTopologyResource InputObject { get; set; } + + public override void ExecuteCmdlet() + { + if (this.InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.Name = this.InputObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.Name = parsedResourceId.ResourceName; + } + + var psServiceTopologyResource = new PSServiceTopologyResource() + { + ResourceGroupName = this.ResourceGroupName, + Name = this.Name + }; + + psServiceTopologyResource = this.DeploymentManagerClient.GetServiceTopology(psServiceTopologyResource); + this.WriteObject(psServiceTopologyResource); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/GetServiceUnit.cs b/src/DeploymentManager/DeploymentManager/Commands/GetServiceUnit.cs new file mode 100644 index 000000000000..eabc39d1e48d --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/GetServiceUnit.cs @@ -0,0 +1,240 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System; + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsCommon.Get, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerServiceUnit", + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName), + OutputType(typeof(PSServiceUnitResource))] + public class GetServiceUnit : DeploymentManagerBaseCmdlet + { + private const string ByServiceObjectParameterSet = "ByServiceObject"; + private const string ByServiceResourceIdParamSet = "ByServiceResourceId"; + private const string ByTopologyObjectAndServiceNameParameterSet = "ByTopologyObjectAndServiceName"; + private const string ByTopologyResourceIdAndServiceNameParameterSet = "ByTopologyResourceAndServiceName"; + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The resource group.")] + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = GetServiceUnit.ByServiceObjectParameterSet, + HelpMessage = "The resource group.")] + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = GetServiceUnit.ByServiceResourceIdParamSet, + HelpMessage = "The resource group.")] + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = GetServiceUnit.ByTopologyObjectAndServiceNameParameterSet, + HelpMessage = "The resource group.")] + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = GetServiceUnit.ByTopologyResourceIdAndServiceNameParameterSet, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the service topology the service unit is part of.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies", nameof(ResourceGroupName))] + public string ServiceTopologyName { get; set; } + + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the service the service unit is part of.")] + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = GetServiceUnit.ByTopologyObjectAndServiceNameParameterSet, + HelpMessage = "The name of the service the service unit is part of.")] + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = GetServiceUnit.ByTopologyResourceIdAndServiceNameParameterSet, + HelpMessage = "The name of the service the service unit is part of.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies/services", nameof(ResourceGroupName), nameof(ServiceTopologyName))] + public string ServiceName { get; set; } + + [Parameter( + Position = 3, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the service unit.")] + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = GetServiceUnit.ByServiceObjectParameterSet, + HelpMessage = "The name of the service unit.")] + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = GetServiceUnit.ByServiceResourceIdParamSet, + HelpMessage = "The name of the service unit.")] + [Parameter( + Position = 3, + Mandatory = true, + ParameterSetName = GetServiceUnit.ByTopologyObjectAndServiceNameParameterSet, + HelpMessage = "The name of the service unit.")] + [Parameter( + Position = 3, + Mandatory = true, + ParameterSetName = GetServiceUnit.ByTopologyResourceIdAndServiceNameParameterSet, + HelpMessage = "The name of the service unit.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits", nameof(ResourceGroupName), nameof(ServiceTopologyName), nameof(ServiceName))] + public string Name { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.ResourceIdParamSetName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource identifier.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName, + ValueFromPipeline = true, + HelpMessage = "Service unit resource object.")] + [ValidateNotNullOrEmpty] + public PSServiceUnitResource InputObject { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = GetServiceUnit.ByTopologyObjectAndServiceNameParameterSet, + HelpMessage = "The service topology object in which the service unit should be created.")] + [ValidateNotNullOrEmpty] + public PSServiceTopologyResource ServiceTopologyObject { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = GetServiceUnit.ByTopologyResourceIdAndServiceNameParameterSet, + HelpMessage = "The service topology resource identifier in which the service unit should be created.")] + [ValidateNotNullOrEmpty] + public string ServiceTopologyResourceId { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = GetServiceUnit.ByServiceObjectParameterSet, + HelpMessage = "The service object in which the service unit should be created.")] + [ValidateNotNullOrEmpty] + public PSServiceResource ServiceObject { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = GetServiceUnit.ByServiceResourceIdParamSet, + HelpMessage = "The service resource identifier in which the service unit should be created.")] + [ValidateNotNullOrEmpty] + public string ServiceResourceId { get; set; } + + public override void ExecuteCmdlet() + { + this.ResolveParameters(); + var psServiceUnitResource = new PSServiceUnitResource() + { + ResourceGroupName = this.ResourceGroupName, + ServiceTopologyName = this.ServiceTopologyName, + ServiceName = this.ServiceName, + Name = this.Name + }; + + var serviceUnitResource = this.DeploymentManagerClient.GetServiceUnit(psServiceUnitResource); + this.WriteObject(serviceUnitResource); + } + + private void ResolveParameters() + { + if (this.InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.ServiceTopologyName = this.InputObject.ServiceTopologyName; + this.ServiceName = this.InputObject.ServiceName; + this.Name = this.InputObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.Name = parsedResourceId.ResourceName; + + string[] tokens = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + if (tokens.Length < 4) + { + throw new ArgumentException($"Invalid Service Unit resource identifier: {this.ResourceId}"); + } + + this.ServiceTopologyName = tokens[1]; + this.ServiceName = tokens[3]; + } + else if (this.ServiceObject != null) + { + this.ServiceTopologyName = this.ServiceObject.ServiceTopologyName; + this.ServiceName = this.ServiceObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ServiceResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ServiceResourceId); + this.ServiceName = parsedResourceId.ResourceName; + string[] tokens = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + if (tokens.Length < 2) + { + throw new ArgumentException($"Invalid Service resource identifier: {this.ServiceResourceId}"); + } + + this.ServiceTopologyName = tokens[1]; + } + else if (this.ServiceTopologyObject != null) + { + this.ServiceTopologyName = this.ServiceTopologyObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ServiceTopologyResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ServiceTopologyResourceId); + this.ServiceTopologyName = parsedResourceId.ResourceName; + } + } + + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/GetStep.cs b/src/DeploymentManager/DeploymentManager/Commands/GetStep.cs new file mode 100644 index 000000000000..70624e5d7e8a --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/GetStep.cs @@ -0,0 +1,90 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsCommon.Get, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerStep", + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName), + OutputType(typeof(PSStepResource))] + public class GetStep : DeploymentManagerBaseCmdlet + { + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the step.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/steps", nameof(ResourceGroupName))] + public string Name { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.ResourceIdParamSetName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource identifier.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName, + ValueFromPipeline = true, + HelpMessage = "The step resource object.")] + [ValidateNotNullOrEmpty] + public PSStepResource InputObject { get; set; } + + public override void ExecuteCmdlet() + { + if (this.InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.Name = this.InputObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.Name = parsedResourceId.ResourceName; + } + + var psStepResource = new PSStepResource() + { + ResourceGroupName = this.ResourceGroupName, + Name = this.Name, + }; + + psStepResource = this.DeploymentManagerClient.GetStep(psStepResource); + this.WriteObject(psStepResource); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/NewArtifactSource.cs b/src/DeploymentManager/DeploymentManager/Commands/NewArtifactSource.cs new file mode 100644 index 000000000000..4780c6e06930 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/NewArtifactSource.cs @@ -0,0 +1,112 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Collections; + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + + [Cmdlet( + VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerArtifactSource", + SupportsShouldProcess = true), + OutputType(typeof(PSArtifactSource))] + public class NewArtifactSource : DeploymentManagerBaseCmdlet + { + /// + /// The parameter set for SAS-based authentication. + /// + private const string SasUriParamSet = "Sas"; + + [Parameter( + Mandatory = true, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The name of the artifact source.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The location of the resource.")] + [ValidateNotNullOrEmpty] + [LocationCompleter] + public string Location { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The SAS Uri to the Azure storage container where the artifacts are stored.", ParameterSetName = NewArtifactSource.SasUriParamSet)] + [ValidateNotNullOrEmpty] + public string SasUri { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "A hash table which represents resource tags.")] + public Hashtable Tag { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The optional directory offset under the storage container for the artifacts.")] + public string ArtifactRoot { get; set; } + + public override void ExecuteCmdlet() + { + if (this.ShouldProcess(this.Name, Messages.CreateArtifactSource)) + { + var psArtifactSource = new PSArtifactSource() + { + ResourceGroupName = this.ResourceGroupName, + Name = this.Name, + Location = this.Location, + SourceType = "AzureStorage", + ArtifactRoot = this.ArtifactRoot, + Authentication = this.GetAuthentication(), + Tags = this.Tag + }; + + if (this.DeploymentManagerClient.ArtifactSourceExists(psArtifactSource)) + { + throw new PSArgumentException(Messages.ArtifactSourceAlreadyExists); + } + + psArtifactSource = this.DeploymentManagerClient.PutArtifactSource(psArtifactSource); + this.WriteObject(psArtifactSource); + } + } + + private PSAuthentication GetAuthentication() + { + switch (this.ParameterSetName) + { + case SasUriParamSet: + return new PSSasAuthentication() + { + SasUri = this.SasUri + }; + + default: + return null; + } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/NewService.cs b/src/DeploymentManager/DeploymentManager/Commands/NewService.cs new file mode 100644 index 000000000000..996a9815a897 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/NewService.cs @@ -0,0 +1,133 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Collections; + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsCommon. + New, ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerService", + SupportsShouldProcess = true, + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName), + OutputType(typeof(PSServiceResource))] + public class NewService : DeploymentManagerBaseCmdlet + { + private const string ByServiceTopologyObjectParameterSet = "ByServiceTopologyObject"; + private const string ByServiceTopologyResourceIdParamSet = "ByServiceTopologyResourceId"; + + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the service topology this service belongs to.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies", nameof(ResourceGroupName))] + public string ServiceTopologyName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The name of the service.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The location of the service resource.")] + [ValidateNotNullOrEmpty] + [LocationCompleter("Microsoft.DeploymentManager/serviceTopologies")] + public string Location { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Determines the location where resources under the service would be deployed to.")] + [ValidateNotNullOrEmpty] + public string TargetLocation { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Determines the subscription to which resources under the service would be deployed to.")] + [ValidateNotNullOrEmpty] + public string TargetSubscriptionId { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = NewService.ByServiceTopologyObjectParameterSet, + HelpMessage = "The service topology object in which the service should be created.")] + [ValidateNotNullOrEmpty] + public PSServiceTopologyResource ServiceTopologyObject { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = NewService.ByServiceTopologyResourceIdParamSet, + HelpMessage = "The service topology resource identifier in which the service should be created.")] + [ValidateNotNullOrEmpty] + public string ServiceTopologyId { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "A hash table which represents resource tags.")] + public Hashtable Tag { get; set; } + + public override void ExecuteCmdlet() + { + if (this.ShouldProcess(this.Name, Messages.CreateService)) + { + if (this.ServiceTopologyObject != null) + { + this.ServiceTopologyName = this.ServiceTopologyObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ServiceTopologyId)) + { + var parsedResource = new ResourceIdentifier(this.ServiceTopologyId); + this.ServiceTopologyName = parsedResource.ResourceName; + } + + var serviceResource = new PSServiceResource() + { + ResourceGroupName = this.ResourceGroupName, + Name = this.Name, + Location = this.Location, + TargetSubscriptionId = this.TargetSubscriptionId, + TargetLocation = this.TargetLocation, + ServiceTopologyName = this.ServiceTopologyName, + Tags = this.Tag + }; + + if (this.DeploymentManagerClient.ServiceExists(serviceResource)) + { + throw new PSArgumentException(Messages.ServiceAlreadyExists); + } + + serviceResource = this.DeploymentManagerClient.PutService(serviceResource); + this.WriteObject(serviceResource); + } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/NewServiceTopology.cs b/src/DeploymentManager/DeploymentManager/Commands/NewServiceTopology.cs new file mode 100644 index 000000000000..ffe42c0a747f --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/NewServiceTopology.cs @@ -0,0 +1,86 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Collections; + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.DeploymentManager.Models; + + [Cmdlet( + VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerServiceTopology", + SupportsShouldProcess = true), + OutputType(typeof(PSServiceTopologyResource))] + public class NewServiceTopology : DeploymentManagerBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The name of the topology.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The location of the topology.")] + [ValidateNotNullOrEmpty] + [LocationCompleter("Microsoft.DeploymentManager/serviceTopologies")] + public string Location { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The identifier of the artifact source, where the artifacts that make up the topology are stored.")] + public string ArtifactSourceId { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "A hash table which represents resource tags.")] + public Hashtable Tag { get; set; } + + public override void ExecuteCmdlet() + { + if (this.ShouldProcess(this.Name, Messages.CreateServiceTopology)) + { + var topologyResource = new PSServiceTopologyResource() + { + ResourceGroupName = this.ResourceGroupName, + Name = this.Name, + Location = this.Location, + ArtifactSourceId = this.ArtifactSourceId, + Tags = this.Tag + }; + + if (this.DeploymentManagerClient.ServiceTopologyExists(topologyResource)) + { + throw new PSArgumentException(Messages.ServiceTopologyAlreadyExists); + } + + topologyResource = this.DeploymentManagerClient.PutServiceTopology(topologyResource); + + this.WriteObject(topologyResource); + } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/NewServiceUnit.cs b/src/DeploymentManager/DeploymentManager/Commands/NewServiceUnit.cs new file mode 100644 index 000000000000..65dba98c1b73 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/NewServiceUnit.cs @@ -0,0 +1,230 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System; + using System.Collections; + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerServiceUnit", + DefaultParameterSetName = NewServiceUnit.ByTopologyAndServiceNamesParameterSet, + SupportsShouldProcess = true), + OutputType(typeof(PSServiceUnitResource))] + public class NewServiceUnit : DeploymentManagerBaseCmdlet + { + private const string IncrementalDeploymentMode = "Incremental"; + private const string CompleteDeploymentMode = "Complete"; + + private const string ByServiceObjectParameterSet = "ByServiceObject"; + private const string ByServiceResourceIdParamSet = "ByServiceResourceId"; + private const string ByTopologyAndServiceNamesParameterSet = "ByTopologyAndServiceNames"; + private const string ByTopologyObjectAndServiceNameParameterSet = "ByTopologyObjectAndServiceName"; + private const string ByTopologyResourceIdAndServiceNameParameterSet = "ByTopologyResourceAndServiceName"; + + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = NewServiceUnit.ByTopologyAndServiceNamesParameterSet, + HelpMessage = "The name of the serivce topology this service unit is a part of.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies", nameof(ResourceGroupName))] + public string ServiceTopologyName { get; set; } + + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = NewServiceUnit.ByTopologyAndServiceNamesParameterSet, + HelpMessage = "The name of the service this service unit is a part of.")] + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = NewServiceUnit.ByTopologyObjectAndServiceNameParameterSet, + HelpMessage = "The name of the service this service unit is a part of.")] + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = NewServiceUnit.ByTopologyResourceIdAndServiceNameParameterSet, + HelpMessage = "The name of the service this service unit is a part of.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies/services", nameof(ResourceGroupName), nameof(ServiceTopologyName))] + public string ServiceName { get; set; } + + [Parameter( + Position = 3, + Mandatory = true, + HelpMessage = "The name of the service unit.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits", nameof(ResourceGroupName), nameof(ServiceTopologyName), nameof(ServiceName))] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The location of the service unit resource.")] + [ValidateNotNullOrEmpty] + [LocationCompleter("Microsoft.DeploymentManager/serviceTopologies")] + public string Location { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Determines the location where resources under the service unit would be deployed to.")] + [ValidateNotNullOrEmpty] + public string TargetResourceGroup { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The deployment mode to use when deploying the resources in the service unit.")] + [ValidateSet(NewServiceUnit.IncrementalDeploymentMode, NewServiceUnit.CompleteDeploymentMode)] + [ValidateNotNullOrEmpty] + public string DeploymentMode { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The SAS Uri to the parameters file. If ArtifactSourceId was referenced in the ServiceTopology, specify relative path using ParametersArtifactSourceRelativePath.")] + public string ParametersUri { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The SAS Uri to the template file. If ArtifactSourceId was referenced in the ServiceTopology, specify relative path using TemplateArtifactSourceRelativePath.")] + public string TemplateUri { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The path to the template file relative to the artifact source. Requires ArtifactSource to be referenced in ServiceTopology.")] + public string TemplateArtifactSourceRelativePath { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The path to the parameters file relative to the artifact source. Requires ArtifactSource to be referenced in ServiceTopology.")] + public string ParametersArtifactSourceRelativePath { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "A hash table which represents resource tags.")] + public Hashtable Tag { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = NewServiceUnit.ByTopologyObjectAndServiceNameParameterSet, + HelpMessage = "The service topology object in which the service unit should be created.")] + [ValidateNotNullOrEmpty] + public PSServiceTopologyResource ServiceTopologyObject { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = NewServiceUnit.ByTopologyResourceIdAndServiceNameParameterSet, + HelpMessage = "The service topology resource identifier in which the service unit should be created.")] + [ValidateNotNullOrEmpty] + public string ServiceTopologyResourceId { get; set; } + + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = NewServiceUnit.ByServiceObjectParameterSet, + HelpMessage = "The service object in which the service unit should be created.")] + [ValidateNotNullOrEmpty] + public PSServiceResource ServiceObject { get; set; } + + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = NewServiceUnit.ByServiceResourceIdParamSet, + HelpMessage = "The service resource identifier in which the service unit should be created.")] + [ValidateNotNullOrEmpty] + public string ServiceResourceId { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + public override void ExecuteCmdlet() + { + if (this.ShouldProcess(this.Name, Messages.CreateServiceUnit)) + { + this.ResolveParameters(); + var psServiceUnitResource = new PSServiceUnitResource() + { + ResourceGroupName = this.ResourceGroupName, + ServiceTopologyName = this.ServiceTopologyName, + ServiceName = this.ServiceName, + Name = this.Name, + Location = this.Location, + TargetResourceGroup = this.TargetResourceGroup, + DeploymentMode = this.DeploymentMode, + TemplateUri = this.TemplateUri, + ParametersUri = this.ParametersUri, + TemplateArtifactSourceRelativePath = this.TemplateArtifactSourceRelativePath, + ParametersArtifactSourceRelativePath = this.ParametersArtifactSourceRelativePath, + Tags = this.Tag + }; + + if (this.DeploymentManagerClient.ServiceUnitExists(psServiceUnitResource)) + { + throw new PSArgumentException(Messages.ServiceUnitAlreadyExists); + } + + psServiceUnitResource = this.DeploymentManagerClient.PutServiceUnit(psServiceUnitResource); + this.WriteObject(psServiceUnitResource); + } + } + + private void ResolveParameters() + { + if (this.ServiceObject != null) + { + this.ServiceTopologyName = this.ServiceObject.ServiceTopologyName; + this.ServiceName = this.ServiceObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ServiceResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ServiceResourceId); + this.ServiceName = parsedResourceId.ResourceName; + string[] tokens = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + if (tokens.Length < 2) + { + throw new ArgumentException($"Invalid Service resource identifier: {this.ServiceResourceId}"); + } + + this.ServiceTopologyName = tokens[1]; + } + else if (this.ServiceTopologyObject != null) + { + this.ServiceTopologyName = this.ServiceTopologyObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ServiceTopologyResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ServiceTopologyResourceId); + this.ServiceTopologyName = parsedResourceId.ResourceName; + } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/NewStep.cs b/src/DeploymentManager/DeploymentManager/Commands/NewStep.cs new file mode 100644 index 000000000000..4dcd91d9c163 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/NewStep.cs @@ -0,0 +1,105 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Collections; + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + + [Cmdlet( + VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerStep", + DefaultParameterSetName = WaitParamSet, + SupportsShouldProcess = true), + OutputType(typeof(PSStepResource))] + public class NewStep : DeploymentManagerBaseCmdlet + { + /// + /// The parameter set for the wait step. + /// + private const string WaitParamSet = "Wait"; + + [Parameter( + Mandatory = true, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The name of the step.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The location of the resource.")] + [ValidateNotNullOrEmpty] + [LocationCompleter] + public string Location { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The duration to wait in ISO 8601 format. E.g.: PT30M, PT1H", ParameterSetName = NewStep.WaitParamSet)] + [ValidateNotNullOrEmpty] + public string Duration { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "A hash table which represents resource tags.")] + public Hashtable Tag { get; set; } + + public override void ExecuteCmdlet() + { + if (this.ShouldProcess(this.Name, Messages.CreateStep)) + { + var psStepResource = new PSStepResource() + { + ResourceGroupName = this.ResourceGroupName, + Name = this.Name, + Location = this.Location, + Tags = this.Tag, + StepProperties = this.GetProperties() + }; + + if (this.DeploymentManagerClient.StepExists(psStepResource)) + { + throw new PSArgumentException(Messages.StepAlreadyExists); + } + + psStepResource = this.DeploymentManagerClient.PutStep(psStepResource); + this.WriteObject(psStepResource); + } + } + + private PSStepProperties GetProperties() + { + switch (this.ParameterSetName) + { + case WaitParamSet: + return new PSWaitStepProperties() + { + Duration = this.Duration + }; + + default: + return null; + } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/RemoveArtifactSource.cs b/src/DeploymentManager/DeploymentManager/Commands/RemoveArtifactSource.cs new file mode 100644 index 000000000000..600cf854012a --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/RemoveArtifactSource.cs @@ -0,0 +1,106 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsCommon.Remove, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerArtifactSource", + SupportsShouldProcess = true, + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName), + OutputType(typeof(bool))] + public class RemoveArtifactSource : DeploymentManagerBaseCmdlet + { + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the artifact source.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.ResourceIdParamSetName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource identifier.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName, + ValueFromPipeline = true, + HelpMessage = "The artifact source to be removed.")] + [ValidateNotNullOrEmpty] + public PSArtifactSource InputObject { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + this.WriteVerbose(string.Format(Messages.RemovingArtifactSource, this.Name)); + var result = this.Delete(); + if (result) + { + this.WriteVerbose(string.Format(Messages.RemovedArtifactSource, this.Name)); + } + + if (this.PassThru) + { + this.WriteObject(result); + } + } + + private bool Delete() + { + if (this.InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.Name = this.InputObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.Name = parsedResourceId.ResourceName; + } + + var artifactSourceToDelete = new PSArtifactSource() + { + ResourceGroupName = this.ResourceGroupName, + Name = this.Name + }; + return this.DeploymentManagerClient.DeleteArtifactSource(artifactSourceToDelete); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/RemoveRollout.cs b/src/DeploymentManager/DeploymentManager/Commands/RemoveRollout.cs new file mode 100644 index 000000000000..952033b526ae --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/RemoveRollout.cs @@ -0,0 +1,106 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsCommon.Remove, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerRollout", + SupportsShouldProcess = true, + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName), + OutputType(typeof(bool))] + public class RemoveRollout : DeploymentManagerBaseCmdlet + { + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the rollout.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/rollouts", nameof(ResourceGroupName))] + public string Name { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.ResourceIdParamSetName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource identifier.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName, + ValueFromPipeline = true, + HelpMessage = "The resource to be removed.")] + [ValidateNotNullOrEmpty] + public PSRollout InputObject { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + this.WriteVerbose(string.Format(Messages.RemovingRollout, this.Name)); + + var result = this.Delete(); + this.WriteVerbose(string.Format(Messages.RemovedRollout, this.Name)); + + if (this.PassThru) + { + this.WriteObject(result); + } + } + + private bool Delete() + { + if (this.InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.Name = this.InputObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.Name = parsedResourceId.ResourceName; + } + + var rolloutToDelete = new PSRollout() + { + ResourceGroupName = this.ResourceGroupName, + Name = this.Name + }; + + return this.DeploymentManagerClient.DeleteRollout(rolloutToDelete); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/RemoveService.cs b/src/DeploymentManager/DeploymentManager/Commands/RemoveService.cs new file mode 100644 index 000000000000..d32a44a78311 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/RemoveService.cs @@ -0,0 +1,173 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System; + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsCommon.Remove, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerService", + SupportsShouldProcess = true, + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName), + OutputType(typeof(bool))] + public class RemoveService : DeploymentManagerBaseCmdlet + { + private const string ByServiceTopologyObjectParameterSet = "ByServiceTopologyObject"; + private const string ByServiceTopologyResourceIdParamSet = "ByServiceTopologyResourceId"; + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the service topology.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies", nameof(ResourceGroupName))] + public string ServiceTopologyName { get; set; } + + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the service.")] + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = RemoveService.ByServiceTopologyObjectParameterSet, + HelpMessage = "The name of the service.")] + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = RemoveService.ByServiceTopologyResourceIdParamSet, + HelpMessage = "The name of the service.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies/services", nameof(ResourceGroupName), nameof(ServiceTopologyName))] + public string Name { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.ResourceIdParamSetName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource identifier.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName, + ValueFromPipeline = true, + HelpMessage = "Service object.")] + [ValidateNotNullOrEmpty] + public PSServiceResource InputObject { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = RemoveService.ByServiceTopologyObjectParameterSet, + HelpMessage = "The service topology object in which the service should be created.")] + [ValidateNotNullOrEmpty] + public PSServiceTopologyResource ServiceTopologyObject { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = RemoveService.ByServiceTopologyResourceIdParamSet, + HelpMessage = "The service topology resource identifier in which the service should be created.")] + [ValidateNotNullOrEmpty] + public string ServiceTopologyResourceId { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + this.ResolveParams(); + this.WriteVerbose(string.Format(Messages.RemovingService, this.Name)); + + var result = this.Delete(); + if (result) + { + this.WriteVerbose(string.Format(Messages.RemovedService, this.Name)); + } + + if (this.PassThru) + { + this.WriteObject(true); + } + } + + private bool Delete() + { + var serviceToDelete = new PSServiceResource() + { + ResourceGroupName = this.ResourceGroupName, + ServiceTopologyName = this.ServiceTopologyName, + Name = this.Name + }; + + return this.DeploymentManagerClient.DeleteService(serviceToDelete); + } + + private void ResolveParams() + { + if (this.InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.ServiceTopologyName = this.InputObject.ServiceTopologyName; + this.Name = this.InputObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.Name = parsedResourceId.ResourceName; + + string[] tokens = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + if (tokens.Length < 2) + { + throw new ArgumentException($"Invalid Service resource identifier: {this.ResourceId}"); + } + + this.ServiceTopologyName = tokens[1]; + } + else if (this.ServiceTopologyObject != null) + { + this.ResourceGroupName = this.ServiceTopologyObject.ResourceGroupName; + this.ServiceTopologyName = this.ServiceTopologyObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ServiceTopologyResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ServiceTopologyResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.ServiceTopologyName = parsedResourceId.ResourceName; + } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/RemoveServiceTopology.cs b/src/DeploymentManager/DeploymentManager/Commands/RemoveServiceTopology.cs new file mode 100644 index 000000000000..87bfd6000e3b --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/RemoveServiceTopology.cs @@ -0,0 +1,114 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsCommon.Remove, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerServiceTopology", + SupportsShouldProcess = true, + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName), + OutputType(typeof(bool))] + public class RemoveServiceTopology : DeploymentManagerBaseCmdlet + { + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the service topology.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies", nameof(ResourceGroupName))] + public string Name { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.ResourceIdParamSetName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource identifier.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName, + ValueFromPipeline = true, + HelpMessage = "The resource to be removed.")] + [ValidateNotNullOrEmpty] + public PSServiceTopologyResource InputObject { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + this.ResolveParams(); + this.WriteVerbose(string.Format(Messages.RemovingTopology, this.Name)); + + var result = this.Delete(); + + if (result) + { + this.WriteVerbose(string.Format(Messages.RemovedTopology, this.Name)); + } + + if (this.PassThru) + { + this.WriteObject(true); + } + } + + private bool Delete() + { + var topologyToDelete = new PSServiceTopologyResource() + { + ResourceGroupName = this.ResourceGroupName, + Name = this.Name + }; + + return this.DeploymentManagerClient.DeleteServiceTopology(topologyToDelete); + } + + private void ResolveParams() + { + if (this.InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.Name = this.InputObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.Name = parsedResourceId.ResourceName; + } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/RemoveServiceUnit.cs b/src/DeploymentManager/DeploymentManager/Commands/RemoveServiceUnit.cs new file mode 100644 index 000000000000..ae057e3c3b2e --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/RemoveServiceUnit.cs @@ -0,0 +1,242 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System; + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsCommon.Remove, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerServiceUnit", + SupportsShouldProcess = true, + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName), + OutputType(typeof(bool))] + public class RemoveServiceUnit : DeploymentManagerBaseCmdlet + { + private const string ByServiceObjectParameterSet = "ByServiceObject"; + private const string ByServiceResourceIdParamSet = "ByServiceResourceId"; + private const string ByTopologyObjectAndServiceNameParameterSet = "ByTopologyObjectAndServiceName"; + private const string ByTopologyResourceIdAndServiceNameParameterSet = "ByTopologyResourceAndServiceName"; + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the service topology the service unit is part of.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies", nameof(ResourceGroupName))] + public string ServiceTopologyName { get; set; } + + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the service the service unit is part of.")] + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = RemoveServiceUnit.ByTopologyObjectAndServiceNameParameterSet, + HelpMessage = "The name of the service the service unit is part of.")] + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = RemoveServiceUnit.ByTopologyResourceIdAndServiceNameParameterSet, + HelpMessage = "The name of the service the service unit is part of.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies/services", nameof(ResourceGroupName), nameof(ServiceTopologyName))] + public string ServiceName { get; set; } + + [Parameter( + Position = 3, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the service unit.")] + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = RemoveServiceUnit.ByServiceObjectParameterSet, + HelpMessage = "The name of the service unit.")] + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = RemoveServiceUnit.ByServiceResourceIdParamSet, + HelpMessage = "The name of the service unit.")] + [Parameter( + Position = 3, + Mandatory = true, + ParameterSetName = RemoveServiceUnit.ByTopologyObjectAndServiceNameParameterSet, + HelpMessage = "The name of the service unit.")] + [Parameter( + Position = 3, + Mandatory = true, + ParameterSetName = RemoveServiceUnit.ByTopologyResourceIdAndServiceNameParameterSet, + HelpMessage = "The name of the service unit.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits", nameof(ResourceGroupName), nameof(ServiceTopologyName), nameof(ServiceName))] + public string Name { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.ResourceIdParamSetName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource identifier.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName, + ValueFromPipeline = true, + HelpMessage = "Service unit resource object.")] + [ValidateNotNullOrEmpty] + public PSServiceUnitResource InputObject { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = RemoveServiceUnit.ByTopologyObjectAndServiceNameParameterSet, + HelpMessage = "The service topology object in which the service unit should be created.")] + [ValidateNotNullOrEmpty] + public PSServiceTopologyResource ServiceTopologyObject { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = RemoveServiceUnit.ByTopologyResourceIdAndServiceNameParameterSet, + HelpMessage = "The service topology resource identifier in which the service unit should be created.")] + [ValidateNotNullOrEmpty] + public string ServiceTopologyResourceId { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = RemoveServiceUnit.ByServiceObjectParameterSet, + HelpMessage = "The service object in which the service unit should be created.")] + [ValidateNotNullOrEmpty] + public PSServiceResource ServiceObject { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = RemoveServiceUnit.ByServiceResourceIdParamSet, + HelpMessage = "The service resource identifier in which the service unit should be created.")] + [ValidateNotNullOrEmpty] + public string ServiceResourceId { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + this.ResolveParameters(); + this.WriteVerbose(string.Format(Messages.RemovingServiceUnit, this.Name)); + + var result = this.Delete(); + if (result) + { + this.WriteVerbose(string.Format(Messages.RemovedServiceUnit, this.Name)); + } + + if (this.PassThru) + { + this.WriteObject(true); + } + } + + private bool Delete() + { + var serviceUnitToDelete = new PSServiceUnitResource() + { + ResourceGroupName = this.ResourceGroupName, + ServiceTopologyName = this.ServiceTopologyName, + ServiceName = this.ServiceName, + Name = this.Name + }; + + return this.DeploymentManagerClient.DeleteServiceUnit(serviceUnitToDelete); + } + + private void ResolveParameters() + { + if (this.InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.ServiceTopologyName = this.InputObject.ServiceTopologyName; + this.ServiceName = this.InputObject.ServiceName; + this.Name = this.InputObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.Name = parsedResourceId.ResourceName; + + string[] tokens = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + if (tokens.Length < 4) + { + throw new ArgumentException($"Invalid Service Unit resource identifier: {this.ResourceId}"); + } + + this.ServiceTopologyName = tokens[1]; + this.ServiceName = tokens[3]; + } + else if (this.ServiceObject != null) + { + this.ResourceGroupName = this.ServiceObject.ResourceGroupName; + this.ServiceTopologyName = this.ServiceObject.ServiceTopologyName; + this.ServiceName = this.ServiceObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ServiceResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ServiceResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.ServiceName = parsedResourceId.ResourceName; + string[] tokens = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + if (tokens.Length < 2) + { + throw new ArgumentException($"Invalid Service resource identifier: {this.ResourceId}"); + } + + this.ServiceTopologyName = tokens[1]; + } + else if (this.ServiceTopologyObject != null) + { + this.ResourceGroupName = this.ServiceTopologyObject.ResourceGroupName; + this.ServiceTopologyName = this.ServiceTopologyObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ServiceTopologyResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ServiceTopologyResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.ServiceTopologyName = parsedResourceId.ResourceName; + } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/RemoveStep.cs b/src/DeploymentManager/DeploymentManager/Commands/RemoveStep.cs new file mode 100644 index 000000000000..4a8f7c1de316 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/RemoveStep.cs @@ -0,0 +1,108 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsCommon.Remove, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerStep", + SupportsShouldProcess = true, + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName), + OutputType(typeof(bool))] + public class RemoveStep : DeploymentManagerBaseCmdlet + { + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the step.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/steps", nameof(ResourceGroupName))] + public string Name { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.ResourceIdParamSetName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource identifier.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName, + ValueFromPipeline = true, + HelpMessage = "The step to be removed.")] + [ValidateNotNullOrEmpty] + public PSStepResource InputObject { get; set; } + + [Parameter(Mandatory = false)] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteCmdlet() + { + this.WriteVerbose(string.Format(Messages.RemovingStep, this.Name)); + + var result = this.Delete(); + if (result) + { + this.WriteVerbose(string.Format(Messages.RemovedStep, this.Name)); + } + + if (this.PassThru) + { + this.WriteObject(true); + } + } + + private bool Delete() + { + if (this.InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.Name = this.InputObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.Name = parsedResourceId.ResourceName; + } + + var stepToDelete = new PSStepResource() + { + ResourceGroupName = this.ResourceGroupName, + Name = this.Name + }; + return this.DeploymentManagerClient.DeleteStep(stepToDelete); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/RestartRollout.cs b/src/DeploymentManager/DeploymentManager/Commands/RestartRollout.cs new file mode 100644 index 000000000000..13bf00e20a4a --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/RestartRollout.cs @@ -0,0 +1,112 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsLifecycle.Restart, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerRollout", + SupportsShouldProcess = true, + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName), + OutputType(typeof(PSRollout))] + public class RestartpRollout : DeploymentManagerBaseCmdlet + { + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the rollout.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/rollouts", nameof(ResourceGroupName))] + public string Name { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.ResourceIdParamSetName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource identifier.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName, + ValueFromPipeline = true, + HelpMessage = "The resource to be removed.")] + [ValidateNotNullOrEmpty] + public PSRollout InputObject { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Skip steps that succeeded in the previous run of the rollout.")] + [ValidateNotNullOrEmpty] + public SwitchParameter SkipSucceeded { get; set; } + + public override void ExecuteCmdlet() + { + this.ConfirmAction( + this.SkipSucceeded.IsPresent, + string.Format(Messages.ConfirmRestartRollout, this.Name), + string.Format(Messages.RestartingRollout, this.Name), + this.Name, + () => + { + var restartedRollout = this.Restart(); + this.WriteVerbose(string.Format(Messages.RestartedRollout, this.Name)); + this.WriteObject(restartedRollout); + }); + } + + private PSRollout Restart() + { + if (this.InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.Name = this.InputObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.Name = parsedResourceId.ResourceName; + } + + var rolloutToRestart = new PSRollout() + { + ResourceGroupName = this.ResourceGroupName, + Name = this.Name + }; + + var restartedRollout = this.DeploymentManagerClient.RestartRollout(rolloutToRestart, this.SkipSucceeded); + return restartedRollout; + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/RolloutCmdletBase.cs b/src/DeploymentManager/DeploymentManager/Commands/RolloutCmdletBase.cs new file mode 100644 index 000000000000..81efd7580b59 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/RolloutCmdletBase.cs @@ -0,0 +1,352 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System; + using System.Collections.Generic; + using System.Globalization; + using System.Linq; + using System.Management.Automation; + using System.Text; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.DeploymentManager.Utilities; + using Microsoft.Azure.Management.DeploymentManager.Models; + + public abstract class RolloutCmdletBase : DeploymentManagerBaseCmdlet + { + private const string FailedStatus = "Failed"; + + private const int NoIndent = 0; + + private const int ServiceUnitIndentFactor = 1; + + private const int StepIndentFactor = 2; + + private const int StepPropertiesIndentFactor = 3; + + private const int ResourceOperationsIndentFactor = 4; + + StringBuilder verboseBuilder = new StringBuilder(); + + StringBuilder errorBuilder = new StringBuilder(); + + protected void PrintError() + { + if (this.errorBuilder.Length > 0) + { + var exception = new Exception(this.errorBuilder.ToString()); + var errorRecord = new ErrorRecord(exception, "RolloutFailed", ErrorCategory.NotSpecified, null); + this.WriteError(errorRecord); + } + } + + protected void PrintRollout(PSRollout rollout) + { + if (rollout != null) + { + verboseBuilder.InvariantAppend(this.FormatRolloutInfoHeader(rollout)); + this.PrintDetails(rollout); + + this.WriteVerbose(verboseBuilder.ToString()); + this.PrintError(); + } + } + + protected static string FormatOperationInfo(PSBaseOperationInfo operationInfo, int indentFactor) + { + string formattedString = string.Empty; + int indentFactorForDetails = indentFactor < int.MaxValue ? indentFactor + 1 : indentFactor; + if (operationInfo != null) + { + StringBuilder sb = new StringBuilder(); + + var rolloutOperationInfo = operationInfo as PSRolloutOperationInfo; + if (rolloutOperationInfo != null) + { + sb.AppendFormatWithLeftIndentAndNewLine(indentFactorForDetails, $"Retry Attempt: {rolloutOperationInfo.RetryAttempt}"); + sb.AppendFormatWithLeftIndentAndNewLine(indentFactorForDetails, $"Skip Succeeded: {rolloutOperationInfo.SkipSucceededOnRetry}"); + } + + var stepOperationInfo = operationInfo as PSStepOperationInfo; + if (stepOperationInfo != null) + { + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull(indentFactorForDetails, "DeploymentName", stepOperationInfo.DeploymentName); + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull(indentFactorForDetails, "CorrelationId", stepOperationInfo.CorrelationId); + } + + if (operationInfo?.StartTime != null && operationInfo.StartTime.HasValue) + { + sb.AppendFormatWithLeftIndentAndNewLine(indentFactorForDetails, $"Start Time: {operationInfo.StartTime.Value.ToLocalTimeForUserDisplay()}"); + } + + if (operationInfo?.EndTime != null && operationInfo.EndTime.HasValue) + { + sb.AppendFormatWithLeftIndentAndNewLine(indentFactorForDetails, $"End Time: {operationInfo.EndTime.Value.ToLocalTimeForUserDisplay()}"); + + if (operationInfo?.StartTime != null && operationInfo.StartTime.HasValue) + { + sb.AppendFormatWithLeftIndentAndNewLine( + indentFactorForDetails, + "Total Duration: {0}", + (operationInfo.EndTime.Value - operationInfo.StartTime.Value).ToDisplayFormat()); + } + } + + sb.InvariantAppend(RolloutCmdletBase.FormatErrorInfo(operationInfo, indentFactorForDetails)); + + formattedString = sb.ToString(); + if (!StringUtilities.IsNullOrWhiteSpace(formattedString)) + { + sb.Clear(); + sb.AppendFormatWithLeftIndentAndNewLine(indentFactor, "Operation Info:"); + formattedString = string.Concat(sb.ToString(), formattedString); + } + } + + return formattedString; + } + + protected void PrintResourceOperations(IList resourceOperations, StringBuilder eb) + { + StringBuilder sb = new StringBuilder(); + + if (resourceOperations != null && resourceOperations.Any()) + { + sb.AppendFormatWithLeftIndentAndNewLine(RolloutCmdletBase.StepPropertiesIndentFactor, "Resource Operations:"); + int i = 0; + foreach (var resourceOperation in resourceOperations) + { + if (resourceOperation.ProvisioningState != null && + resourceOperation.ProvisioningState.Equals(RolloutCmdletBase.FailedStatus, StringComparison.OrdinalIgnoreCase)) + { + verboseBuilder.InvariantAppend(sb.ToString()); + sb.Clear(); + } + + sb.AppendLine(); + sb.AppendFormatWithLeftIndentAndNewLine(RolloutCmdletBase.ResourceOperationsIndentFactor, "Resource Operation {0}:", ++i); + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull(RolloutCmdletBase.ResourceOperationsIndentFactor, "Name", resourceOperation.ResourceName); + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull(RolloutCmdletBase.ResourceOperationsIndentFactor, "Type", resourceOperation.ResourceType); + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull(RolloutCmdletBase.ResourceOperationsIndentFactor, "ProvisioningState", resourceOperation.ProvisioningState); + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull(RolloutCmdletBase.ResourceOperationsIndentFactor, "StatusMessage", resourceOperation.StatusMessage); + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull(RolloutCmdletBase.ResourceOperationsIndentFactor, "StatusCode", resourceOperation.StatusCode); + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull(RolloutCmdletBase.ResourceOperationsIndentFactor, "OperationId", resourceOperation.OperationId); + + if (resourceOperation.ProvisioningState != null && + resourceOperation.ProvisioningState.Equals(RolloutCmdletBase.FailedStatus, StringComparison.OrdinalIgnoreCase)) + { + eb.InvariantAppend(sb.ToString()); + verboseBuilder.InvariantAppend(sb.ToString()); + sb.Clear(); + } + } + } + + verboseBuilder.InvariantAppend(sb.ToString()); + } + + private void PrintDetails(PSRollout rollout) + { + var sb = new StringBuilder(); + if (rollout != null && rollout.Services != null) + { + this.PrintServices(rollout.Services); + } + } + + private void PrintServices(IList services) + { + var sb = new StringBuilder(); + var serviceErrors = new StringBuilder(); + + foreach (var service in services) + { + sb.AppendLine(); + sb.AppendLine(); + sb.InvariantAppend($"Service: {service.Name}"); + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull(RolloutCmdletBase.ServiceUnitIndentFactor, "TargetLocation", service.TargetLocation); + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull(RolloutCmdletBase.ServiceUnitIndentFactor, "TargetSubscriptionId", service.TargetSubscriptionId); + + verboseBuilder.InvariantAppend(sb.ToString()); + sb.Clear(); + + serviceErrors.Clear(); + if (service.ServiceUnits != null) + { + var suErrors = new StringBuilder(); + foreach (var serviceUnit in service.ServiceUnits) + { + suErrors.Clear(); + this.PrintServiceUnits(serviceUnit, suErrors); + + if (suErrors.Length > 0) + { + serviceErrors.AppendLine(); + serviceErrors.AppendFormatWithLeftIndentAndNewLine( + RolloutCmdletBase.ServiceUnitIndentFactor, + $"ServiceUnit: {serviceUnit.Name}"); + serviceErrors.InvariantAppend(suErrors.ToString()); + } + } + } + + if (serviceErrors.Length > 0) + { + this.errorBuilder.AppendLine(); + this.errorBuilder.InvariantAppend($"Service: {service.Name}"); + this.errorBuilder.InvariantAppend(serviceErrors.ToString()); + } + } + } + + private void PrintServiceUnits(PSServiceUnit serviceUnit, StringBuilder eb) + { + StringBuilder sb = new StringBuilder(); + if (serviceUnit != null) + { + sb.AppendLine(); + sb.AppendFormatWithLeftIndentAndNewLine( + RolloutCmdletBase.ServiceUnitIndentFactor, + $"ServiceUnit: {serviceUnit.Name}"); + + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull( + RolloutCmdletBase.StepIndentFactor, + "TargetResourceGroup", + serviceUnit.TargetResourceGroup); + + foreach (var step in serviceUnit.Steps) + { + if (step.Status != null && step.Status.Equals("Failed", StringComparison.OrdinalIgnoreCase)) + { + verboseBuilder.InvariantAppend(sb.ToString()); + sb.Clear(); + } + + sb.AppendLine(); + sb.AppendFormatWithLeftIndentAndNewLine(RolloutCmdletBase.StepIndentFactor, $"Step: {step.Name}"); + sb.AppendFormatWithLeftIndentAndNewLine(RolloutCmdletBase.StepPropertiesIndentFactor, $"Status: {step.Status}"); + sb.AppendFormatWithLeftIndentAndNewLine(RolloutCmdletBase.StepPropertiesIndentFactor, $"StepGroup: {step.StepGroup}"); + + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull( + RolloutCmdletBase.StepPropertiesIndentFactor, + "Message", + RolloutCmdletBase.ActionMessagesToDisplayString(step.Messages)); + + if (step.OperationInfo != null) + { + string formatOperationInfo = RolloutCmdletBase.FormatOperationInfo(step.OperationInfo, RolloutCmdletBase.StepPropertiesIndentFactor); + sb.Append(formatOperationInfo); + } + + if (step.Status != null && step.Status.Equals("Failed", StringComparison.OrdinalIgnoreCase)) + { + verboseBuilder.InvariantAppend(sb.ToString()); + eb.InvariantAppend(sb.ToString()); + } + else + { + verboseBuilder.InvariantAppend(sb.ToString()); + } + + sb.Clear(); + + this.PrintResourceOperations(step.ResourceOperations, eb); + } + } + } + + private string FormatRolloutInfoHeader(PSRollout rollout) + { + StringBuilder sb = new StringBuilder(); + sb.InvariantAppend($"\n\nStatus: {rollout.Status}"); + + if (rollout.Status == RolloutCmdletBase.FailedStatus) + { + verboseBuilder.InvariantAppend(sb.ToString()); + sb.Clear(); + } + + sb.Append(RolloutCmdletBase.FormatRolloutDetails(rollout)); + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull( + RolloutCmdletBase.NoIndent, + "Total Retry Attempts", + rollout.TotalRetryAttempts.HasValue && rollout.TotalRetryAttempts > 0 ? rollout.TotalRetryAttempts.Value.ToString(CultureInfo.InvariantCulture) : null); + + if (rollout.OperationInfo != null) + { + sb.AppendFormatWithLeftIndentAndNewLine(NoIndent, RolloutCmdletBase.FormatOperationInfo(rollout.OperationInfo, RolloutCmdletBase.NoIndent)); + } + + return sb.ToString(); + } + + private static string FormatRolloutDetails(PSRollout rollout) + { + StringBuilder sb = new StringBuilder(); + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull(RolloutCmdletBase.NoIndent, "ArtifactSourceId", rollout.ArtifactSourceId); + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull(RolloutCmdletBase.NoIndent, "BuildVersion", rollout.BuildVersion); + return sb.ToString(); + } + + private static string ActionMessagesToDisplayString(IList messages) + { + if (messages == null || messages.Count == 0) + { + return null; + } + + return string.Join( + Environment.NewLine, + messages.Select( + m => StringUtilities.SafeInvariantFormat( + "{0}{1}", + m.TimeStamp.HasValue ? $"{m.TimeStamp.Value.ToLocalTimeForUserDisplay()}: " : string.Empty, + m.MessageProperty))); + } + + private static string FormatErrorInfo(PSBaseOperationInfo operationInfo, int indentFactor) + { + StringBuilder sb = new StringBuilder(); + if (operationInfo != null && operationInfo.Error != null) + { + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull( + indentFactor, + "Error", + RolloutCmdletBase.AppendError(operationInfo.Error, indentFactor + 1)); + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull( + indentFactor + 1, + "Details", + operationInfo.Error?.Details?.ToList().Select(e => + RolloutCmdletBase.AppendError(e, indentFactor + 2)).ToCommaDelimitedString()); + } + + return sb.ToString(); + } + + private static string AppendError(CloudErrorBody error, int indentFactor) + { + StringBuilder sb = new StringBuilder(); + if (error != null) + { + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull(indentFactor, "Code", error.Code); + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull(indentFactor, "Message", error.Message); + sb.AppendFormatWithLeftIndentAndNewLineIfNotNull(indentFactor, "Target", error.Target); + } + + return sb.ToString(); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/SetArtifactSource.cs b/src/DeploymentManager/DeploymentManager/Commands/SetArtifactSource.cs new file mode 100644 index 000000000000..30c311b09f90 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/SetArtifactSource.cs @@ -0,0 +1,47 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + + [Cmdlet( + VerbsCommon.Set, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerArtifactSource", + SupportsShouldProcess = true, + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName), + OutputType(typeof(PSArtifactSource))] + public class SetArtifactSource : DeploymentManagerBaseCmdlet + { + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "The artifact source object.", + ValueFromPipeline = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName)] + [ValidateNotNullOrEmpty] + public PSArtifactSource InputObject { get; set; } + + public override void ExecuteCmdlet() + { + if (this.ShouldProcess(this.InputObject.Name, Messages.UpdateArtifactSource)) + { + var artifactSource = this.DeploymentManagerClient.PutArtifactSource(this.InputObject); + this.WriteObject(artifactSource); + } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/SetService.cs b/src/DeploymentManager/DeploymentManager/Commands/SetService.cs new file mode 100644 index 000000000000..6331f6a3ca21 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/SetService.cs @@ -0,0 +1,47 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + + [Cmdlet( + VerbsCommon.Set, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerService", + SupportsShouldProcess = true, + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName), + OutputType(typeof(PSServiceResource))] + public class SetService : DeploymentManagerBaseCmdlet + { + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "The service object.", + ValueFromPipeline = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName)] + [ValidateNotNullOrEmpty] + public PSServiceResource InputObject { get; set; } + + public override void ExecuteCmdlet() + { + if (this.ShouldProcess(this.InputObject.Name, Messages.UpdateService)) + { + var serviceResource = this.DeploymentManagerClient.PutService(this.InputObject); + this.WriteObject(serviceResource); + } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/SetServiceTopology.cs b/src/DeploymentManager/DeploymentManager/Commands/SetServiceTopology.cs new file mode 100644 index 000000000000..ced05d62f553 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/SetServiceTopology.cs @@ -0,0 +1,46 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + + [Cmdlet( + VerbsCommon.Set, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerServiceTopology", + SupportsShouldProcess = true, + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName), + OutputType(typeof(PSServiceTopologyResource))] + public class SetServiceTopology : DeploymentManagerBaseCmdlet + { + [Parameter( + Position = 0, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The service topology object.")] + [ValidateNotNullOrEmpty] + public PSServiceTopologyResource InputObject { get; set; } + + public override void ExecuteCmdlet() + { + if (this.ShouldProcess(this.InputObject.Name, Messages.UpdateServiceTopology)) + { + var topologyResource = this.DeploymentManagerClient.PutServiceTopology(this.InputObject); + this.WriteObject(topologyResource); + } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/SetServiceUnit.cs b/src/DeploymentManager/DeploymentManager/Commands/SetServiceUnit.cs new file mode 100644 index 000000000000..e08a90faf8fd --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/SetServiceUnit.cs @@ -0,0 +1,46 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + + [Cmdlet( + VerbsCommon.Set, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerServiceUnit", + SupportsShouldProcess = true, + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName), + OutputType(typeof(PSServiceUnitResource))] + public class SetServiceUnit : DeploymentManagerBaseCmdlet + { + [Parameter( + Position = 0, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The service unit object.")] + [ValidateNotNullOrEmpty] + public PSServiceUnitResource InputObject { get; set; } + + public override void ExecuteCmdlet() + { + if (this.ShouldProcess(this.InputObject.Name, Messages.UpdateServiceUnit)) + { + var topologyResource = this.DeploymentManagerClient.PutServiceUnit(this.InputObject); + this.WriteObject(topologyResource); + } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/SetStep.cs b/src/DeploymentManager/DeploymentManager/Commands/SetStep.cs new file mode 100644 index 000000000000..172fc787e49f --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/SetStep.cs @@ -0,0 +1,47 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + + [Cmdlet( + VerbsCommon.Set, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerStep", + SupportsShouldProcess = true, + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName), + OutputType(typeof(PSStepResource))] + public class SetStep : DeploymentManagerBaseCmdlet + { + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "The step object.", + ValueFromPipeline = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName)] + [ValidateNotNullOrEmpty] + public PSStepResource InputObject { get; set; } + + public override void ExecuteCmdlet() + { + if (this.ShouldProcess(this.InputObject.Name, Messages.UpdateStep)) + { + var psStepResource = this.DeploymentManagerClient.PutStep(this.InputObject); + this.WriteObject(psStepResource); + } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Commands/StopRollout.cs b/src/DeploymentManager/DeploymentManager/Commands/StopRollout.cs new file mode 100644 index 000000000000..38167deccee6 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Commands/StopRollout.cs @@ -0,0 +1,111 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Commands +{ + using System.Management.Automation; + + using Microsoft.Azure.Commands.DeploymentManager.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsLifecycle.Stop, + ResourceManager.Common.AzureRMConstants.AzurePrefix + "DeploymentManagerRollout", + SupportsShouldProcess = true, + DefaultParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName), + OutputType(typeof(PSRollout))] + public class StopRollout : DeploymentManagerBaseCmdlet + { + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The resource group.")] + [ValidateNotNullOrEmpty] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InteractiveParamSetName, + HelpMessage = "The name of the rollout.")] + [ValidateNotNullOrEmpty] + [ResourceNameCompleter("Microsoft.DeploymentManager/rollouts", nameof(ResourceGroupName))] + public string Name { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.ResourceIdParamSetName, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The resource identifier.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ParameterSetName = DeploymentManagerBaseCmdlet.InputObjectParamSetName, + ValueFromPipeline = true, + HelpMessage = "The rollout to be removed.")] + [ValidateNotNullOrEmpty] + public PSRollout InputObject { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Do not ask for confirmation.")] + public SwitchParameter Force { get; set; } + + public override void ExecuteCmdlet() + { + this.ConfirmAction( + this.Force.IsPresent, + string.Format(Messages.ConfirmStopRollout, this.Name), + string.Format(Messages.StoppingRollout, this.Name), + this.Name, + () => + { + var canceledRollout = this.Cancel(); + this.WriteVerbose(string.Format(Messages.StoppedRollout, this.Name)); + this.WriteObject(canceledRollout); + }); + } + + private PSRollout Cancel() + { + if (this.InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.Name = this.InputObject.Name; + } + else if (!string.IsNullOrWhiteSpace(this.ResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.Name = parsedResourceId.ResourceName; + } + + var rolloutToCancel = new PSRollout() + { + ResourceGroupName = this.ResourceGroupName, + Name = this.Name + }; + + var canceledRollout = this.DeploymentManagerClient.CancelRollout(rolloutToCancel); + return canceledRollout; + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/DeploymentManager.csproj b/src/DeploymentManager/DeploymentManager/DeploymentManager.csproj new file mode 100644 index 000000000000..eb403c8f712e --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/DeploymentManager.csproj @@ -0,0 +1,17 @@ + + + + DeploymentManager + + + + + + $(LegacyAssemblyPrefix)$(PsModuleName) + + + + + + + \ No newline at end of file diff --git a/src/DeploymentManager/DeploymentManager/Messages.Designer.cs b/src/DeploymentManager/DeploymentManager/Messages.Designer.cs new file mode 100644 index 000000000000..6e5391996f36 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Messages.Designer.cs @@ -0,0 +1,423 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.DeploymentManager { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Messages { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Messages() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.Commands.DeploymentManager.Messages", typeof(Messages).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to The specified artifact source already exists.. + /// + internal static string ArtifactSourceAlreadyExists { + get { + return ResourceManager.GetString("ArtifactSourceAlreadyExists", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There might be rollouts or topologies referencing the artifact source {0}. Are you sure you want to remove the artifact source?. + /// + internal static string ConfirmRemoveArtifactSource { + get { + return ResourceManager.GetString("ConfirmRemoveArtifactSource", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove the rollout {0}?. + /// + internal static string ConfirmRemoveRollout { + get { + return ResourceManager.GetString("ConfirmRemoveRollout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove the service {0}?. + /// + internal static string ConfirmRemoveService { + get { + return ResourceManager.GetString("ConfirmRemoveService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove the service unit {0}?. + /// + internal static string ConfirmRemoveServiceUnit { + get { + return ResourceManager.GetString("ConfirmRemoveServiceUnit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove the step {0}?. + /// + internal static string ConfirmRemoveStep { + get { + return ResourceManager.GetString("ConfirmRemoveStep", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove the topology {0}?. + /// + internal static string ConfirmRemoveTopology { + get { + return ResourceManager.GetString("ConfirmRemoveTopology", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to restart the rollout {0} and re-run all the steps from the start? If you want to skip all the steps that succeeded on the previous attempt, enter No and pass the SkipSucceeded parameter.. + /// + internal static string ConfirmRestartRollout { + get { + return ResourceManager.GetString("ConfirmRestartRollout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Once stopped, a rollout cannot be resumed. Are you sure you want to stop the rollout {0}. + /// + internal static string ConfirmStopRollout { + get { + return ResourceManager.GetString("ConfirmStopRollout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create artifact source. + /// + internal static string CreateArtifactSource { + get { + return ResourceManager.GetString("CreateArtifactSource", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create service. + /// + internal static string CreateService { + get { + return ResourceManager.GetString("CreateService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create service topology. + /// + internal static string CreateServiceTopology { + get { + return ResourceManager.GetString("CreateServiceTopology", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create service unit. + /// + internal static string CreateServiceUnit { + get { + return ResourceManager.GetString("CreateServiceUnit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create step. + /// + internal static string CreateStep { + get { + return ResourceManager.GetString("CreateStep", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removed artifact source {0}.. + /// + internal static string RemovedArtifactSource { + get { + return ResourceManager.GetString("RemovedArtifactSource", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removed rollout {0}. + /// + internal static string RemovedRollout { + get { + return ResourceManager.GetString("RemovedRollout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service {0} deleted.. + /// + internal static string RemovedService { + get { + return ResourceManager.GetString("RemovedService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removed service unit {0}. + /// + internal static string RemovedServiceUnit { + get { + return ResourceManager.GetString("RemovedServiceUnit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Step {0} deleted.. + /// + internal static string RemovedStep { + get { + return ResourceManager.GetString("RemovedStep", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Topology {0} deleted.. + /// + internal static string RemovedTopology { + get { + return ResourceManager.GetString("RemovedTopology", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removing artifact source {0}. + /// + internal static string RemovingArtifactSource { + get { + return ResourceManager.GetString("RemovingArtifactSource", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removing rollout {0}. + /// + internal static string RemovingRollout { + get { + return ResourceManager.GetString("RemovingRollout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removing service {0}. + /// + internal static string RemovingService { + get { + return ResourceManager.GetString("RemovingService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removing service unit {0}. + /// + internal static string RemovingServiceUnit { + get { + return ResourceManager.GetString("RemovingServiceUnit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removing step {0}. + /// + internal static string RemovingStep { + get { + return ResourceManager.GetString("RemovingStep", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removing service topology {0}. + /// + internal static string RemovingTopology { + get { + return ResourceManager.GetString("RemovingTopology", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rollout {0} restarted.. + /// + internal static string RestartedRollout { + get { + return ResourceManager.GetString("RestartedRollout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Restarting rollout {0}. + /// + internal static string RestartingRollout { + get { + return ResourceManager.GetString("RestartingRollout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The specified service already exists.. + /// + internal static string ServiceAlreadyExists { + get { + return ResourceManager.GetString("ServiceAlreadyExists", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The specified service topology already exists.. + /// + internal static string ServiceTopologyAlreadyExists { + get { + return ResourceManager.GetString("ServiceTopologyAlreadyExists", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The specified service unit already exists.. + /// + internal static string ServiceUnitAlreadyExists { + get { + return ResourceManager.GetString("ServiceUnitAlreadyExists", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The specified step already exists.. + /// + internal static string StepAlreadyExists { + get { + return ResourceManager.GetString("StepAlreadyExists", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rollout {0} stopped.. + /// + internal static string StoppedRollout { + get { + return ResourceManager.GetString("StoppedRollout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stopping rollout {0}. + /// + internal static string StoppingRollout { + get { + return ResourceManager.GetString("StoppingRollout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Template and Parameters paths are required, either both as absolute SAS URIs or both relative paths.. + /// + internal static string TemplateParametersMissing { + get { + return ResourceManager.GetString("TemplateParametersMissing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update artifact source. + /// + internal static string UpdateArtifactSource { + get { + return ResourceManager.GetString("UpdateArtifactSource", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update service. + /// + internal static string UpdateService { + get { + return ResourceManager.GetString("UpdateService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update service topology. + /// + internal static string UpdateServiceTopology { + get { + return ResourceManager.GetString("UpdateServiceTopology", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update service unit. + /// + internal static string UpdateServiceUnit { + get { + return ResourceManager.GetString("UpdateServiceUnit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update step. + /// + internal static string UpdateStep { + get { + return ResourceManager.GetString("UpdateStep", resourceCulture); + } + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Messages.resx b/src/DeploymentManager/DeploymentManager/Messages.resx new file mode 100644 index 000000000000..845841c9a565 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Messages.resx @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Are you sure you want to restart the rollout {0} and re-run all the steps from the start? If you want to skip all the steps that succeeded on the previous attempt, enter No and pass the SkipSucceeded parameter. + + + Removing artifact source {0} + + + Removed rollout {0} + + + Topology {0} deleted. + + + Service {0} deleted. + + + Removing rollout {0} + + + Removing service topology {0} + + + Removing service {0} + + + Removing service unit {0} + + + Rollout {0} restarted. + + + Restarting rollout {0} + + + Rollout {0} stopped. + + + Once stopped, a rollout cannot be resumed. Are you sure you want to stop the rollout {0} + + + Stopping rollout {0} + + + Template and Parameters paths are required, either both as absolute SAS URIs or both relative paths. + + + Removed artifact source {0}. + + + The specified artifact source already exists. + + + Create artifact source + + + Create service + + + Create service topology + + + Create service unit + + + The specified service already exists. + + + The specified service topology already exists. + + + The specified service unit already exists. + + + Update artifact source + + + Update service + + + Update service topology + + + Update service unit + + + Removed service unit {0} + + + Create step + + + Step {0} deleted. + + + Removing step {0} + + + The specified step already exists. + + + Update step + + \ No newline at end of file diff --git a/src/DeploymentManager/DeploymentManager/Models/ArtifactSource/PSArtifactSource.cs b/src/DeploymentManager/DeploymentManager/Models/ArtifactSource/PSArtifactSource.cs new file mode 100644 index 000000000000..708c7e392ef0 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/ArtifactSource/PSArtifactSource.cs @@ -0,0 +1,68 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using Microsoft.Azure.Commands.ResourceManager.Common.Tags; + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSArtifactSource : PSResource + { + public PSArtifactSource() : base() + { + } + + public PSArtifactSource(string resourceGroupName, ArtifactSource artifactSource) : base(artifactSource) + { + this.ResourceGroupName = resourceGroupName; + this.SourceType = artifactSource.SourceType; + this.ArtifactRoot = artifactSource.ArtifactRoot; + this.Authentication = new PSSasAuthentication((SasAuthentication)artifactSource.Authentication); + } + + /// + /// Gets or sets the resource group to which the service unit belongs. + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets the artifact source type. + /// + public string SourceType { get; set; } + + /// + /// Gets or sets the root folder under which the artifacts are to be found. + /// + public string ArtifactRoot { get; set; } + + /// + /// Gets or sets the authentication information to access the artifact store. + /// + public PSAuthentication Authentication { get; set; } + + internal ArtifactSource ToSdkType() + { + var sasAuthentication = new SasAuthentication(((PSSasAuthentication)this.Authentication)?.SasUri); + return new ArtifactSource( + this.Location, + this.SourceType, + sasAuthentication, + this.Name, + this.Type, + this.Id, + TagsConversionHelper.CreateTagDictionary(this.Tags, validate: true), + this.ArtifactRoot); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/ArtifactSource/PSAuthentication.cs b/src/DeploymentManager/DeploymentManager/Models/ArtifactSource/PSAuthentication.cs new file mode 100644 index 000000000000..d46c3a169876 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/ArtifactSource/PSAuthentication.cs @@ -0,0 +1,29 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using Microsoft.Azure.Management.DeploymentManager.Models; + + public abstract class PSAuthentication + { + protected PSAuthentication() + { + } + + protected PSAuthentication(Authentication authentication) + { + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/ArtifactSource/PSSasAuthentication.cs b/src/DeploymentManager/DeploymentManager/Models/ArtifactSource/PSSasAuthentication.cs new file mode 100644 index 000000000000..03b7f4320af6 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/ArtifactSource/PSSasAuthentication.cs @@ -0,0 +1,39 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSSasAuthentication : PSAuthentication + { + public PSSasAuthentication() : base() + { + } + + public PSSasAuthentication(SasAuthentication sasAuthentication) : base(sasAuthentication) + { + this.SasUri = sasAuthentication.SasUri; + } + + /// + /// Gets or sets the complete SAS URI to the location of the artifacts. + /// + public string SasUri + { + get; + set; + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/PSIdentity.cs b/src/DeploymentManager/DeploymentManager/Models/PSIdentity.cs new file mode 100644 index 000000000000..4d6bf804afcc --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/PSIdentity.cs @@ -0,0 +1,53 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using System.Collections.Generic; + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSIdentity + { + public PSIdentity(Identity identity) + { + this.Type = identity.Type; + this.IdentityIds = identity.IdentityIds; + } + + /// + /// Gets or sets the identity type. + /// + public string Type + { + get; + set; + } + + /// + /// Gets or sets the list of identities. + /// + public IList IdentityIds + { + get; + set; + } + + internal Identity ToSdkType() + { + return new Identity( + type: this.Type, + identityIds: this.IdentityIds); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/Rollout/PSBaseOperationInfo.cs b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSBaseOperationInfo.cs new file mode 100644 index 000000000000..12aa2e65b62e --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSBaseOperationInfo.cs @@ -0,0 +1,58 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using System; + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSBaseOperationInfo + { + public PSBaseOperationInfo( + DateTime? startTime, + DateTime? endTime, + DateTime? lastUpdateTime, + CloudErrorBody error) + { + this.StartTime = startTime; + this.EndTime = endTime; + this.LastUpdatedTime = lastUpdateTime; + this.Error = error; + } + + public DateTime? StartTime + { + get; + private set; + } + + public DateTime? EndTime + { + get; + private set; + } + + public DateTime? LastUpdatedTime + { + get; + private set; + } + + public CloudErrorBody Error + { + get; + set; + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/Rollout/PSMessage.cs b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSMessage.cs new file mode 100644 index 000000000000..755139f977c2 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSMessage.cs @@ -0,0 +1,47 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using System; + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSMessage + { + public PSMessage(Message message) + { + this.TimeStamp = message?.TimeStamp; + this.MessageProperty = message?.MessageProperty; + } + + /// + /// Gets time in UTC this message was provided. + /// + public DateTime? TimeStamp + { + get; + private set; + } + + /// + /// Gets the actual message text. + /// + public string MessageProperty + { + get; + private set; + } + + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/Rollout/PSResource.cs b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSResource.cs new file mode 100644 index 000000000000..f54f665e9b01 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSResource.cs @@ -0,0 +1,61 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using System.Collections; + using Microsoft.Azure.Commands.ResourceManager.Common.Tags; + using Microsoft.Azure.Management.DeploymentManager.Models; + + public abstract class PSResource + { + protected PSResource() + { + } + + protected PSResource(TrackedResource trackedResource) + { + this.Name = trackedResource.Name; + this.Type = trackedResource.Type; + this.Id = trackedResource.Id; + this.Location = trackedResource.Location; + this.Tags = TagsConversionHelper.CreateTagHashtable(trackedResource.Tags); + } + + /// + /// Gets or sets the resource name. + /// + public string Name { get; set; } + + /// + /// Gets or sets the resource type. + /// + public string Type { get; set; } + + /// + /// Gets or sets the resource location. + /// + public string Location { get; set; } + + /// + /// Gets or sets the resource Id. + /// + public string Id { get; set; } + + /// + /// Gets or sets the resource tags. + /// + public Hashtable Tags { get; set; } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/Rollout/PSResourceOperation.cs b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSResourceOperation.cs new file mode 100644 index 000000000000..95127fc45caa --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSResourceOperation.cs @@ -0,0 +1,91 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Management.DeploymentManager.Models; + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + public class PSResourceOperation + { + public PSResourceOperation(ResourceOperation resourceOperation) + { + this.ResourceName = resourceOperation?.ResourceName; + this.OperationId = resourceOperation?.OperationId; + this.ResourceType = resourceOperation?.ResourceType; + this.ProvisioningState = resourceOperation?.ProvisioningState; + this.StatusCode = resourceOperation?.StatusCode; + this.StatusMessage = resourceOperation?.StatusMessage; + } + + /// + /// Gets or sets name of the resource as specified in the artifacts. + /// For ARM resources, this is the name of the resource specified in + /// the template. + /// + public string ResourceName + { + get; + set; + } + + /// + /// Gets unique identifier of the operation. For ARM resources, this is + /// the operationId obtained from ARM service. + /// + public string OperationId + { + get; + private set; + } + + /// + /// Gets or sets type of the resource as specified in the artifacts. + /// For ARM resources, this is the type of the resource specified in + /// the template. + /// + public string ResourceType + { + get; + set; + } + + /// + /// Gets state of the resource deployment. For ARM resources, this is + /// the current provisioning state of the resource. + /// + public string ProvisioningState + { + get; + private set; + } + + /// + /// Gets descriptive information of the resource operation. + /// + public string StatusMessage + { + get; + private set; + } + + /// + /// Gets http status code of the operation. + /// + public string StatusCode + { + get; + private set; + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/Rollout/PSRollout.cs b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSRollout.cs new file mode 100644 index 000000000000..19642e0572de --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSRollout.cs @@ -0,0 +1,122 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using System.Collections.Generic; + using System.Linq; + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSRollout : PSResource + { + public PSRollout() : base() + { + } + + public PSRollout(string resourceGroupName, Rollout rollout) : base(rollout) + { + this.ResourceGroupName = resourceGroupName; + this.BuildVersion = rollout.BuildVersion; + this.ArtifactSourceId = rollout.ArtifactSourceId; + this.TargetServiceTopologyId = rollout.TargetServiceTopologyId; + this.Identity = rollout.Identity != null ? new PSIdentity(rollout.Identity) : null; + this.OperationInfo = rollout.OperationInfo != null ? new PSRolloutOperationInfo(rollout.OperationInfo) : null; + this.Status = rollout.Status; + this.TotalRetryAttempts = rollout.TotalRetryAttempts; + this.Services = rollout.Services?.Select(s=> new PSService(s)).ToList(); + } + + /// + /// Gets or sets the resource group to which the service unit belongs. + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets the version of the build being deployed. + /// + public string BuildVersion + { + get; + set; + } + + /// + /// Gets or sets the reference to the ARM resource Id where the payload + /// is located. + /// + public string ArtifactSourceId + { + get; + set; + } + + /// + /// Gets or sets the reference to the ARM resource Id where the payload + /// is located. + /// + public string TargetServiceTopologyId + { + get; + set; + } + + /// + /// Gets or sets the list of steps that define the orchestration. + /// + public string Status + { + get; + private set; + } + + /// + /// Gets the cardinal count of total number of retries performed on the + /// rollout at a given time. + /// + public int? TotalRetryAttempts + { + get; + private set; + } + + /// + /// Gets or sets the identity information for the rollout. + /// + public PSIdentity Identity + { + get; + set; + } + + /// + /// Gets or sets operational information of the rollout. + /// + public PSRolloutOperationInfo OperationInfo + { + get; + set; + } + + /// + /// Gets or sets set of detailed step result information on target + /// resource groups. + /// + public IList Services + { + get; + set; + } + + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/Rollout/PSRolloutOperationInfo.cs b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSRolloutOperationInfo.cs new file mode 100644 index 000000000000..99e4b034408a --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSRolloutOperationInfo.cs @@ -0,0 +1,43 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSRolloutOperationInfo : PSBaseOperationInfo + { + public PSRolloutOperationInfo(RolloutOperationInfo rolloutOperationInfo) : base( + rolloutOperationInfo?.StartTime, + rolloutOperationInfo?.EndTime, + null, + rolloutOperationInfo?.Error) + { + this.RetryAttempt = rolloutOperationInfo.RetryAttempt; + this.SkipSucceededOnRetry = rolloutOperationInfo.SkipSucceededOnRetry; + } + + public int? RetryAttempt + { + get; + set; + } + + public bool? SkipSucceededOnRetry + { + get; + set; + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/Rollout/PSRolloutStep.cs b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSRolloutStep.cs new file mode 100644 index 000000000000..bd83327c09ec --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSRolloutStep.cs @@ -0,0 +1,90 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using System.Collections.Generic; + using System.Linq; + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSRolloutStep + { + public PSRolloutStep(RolloutStep rolloutStep) + { + this.Name = rolloutStep.Name; + this.Status = rolloutStep.Status; + this.StepGroup = rolloutStep.StepGroup; + this.OperationInfo = rolloutStep.OperationInfo != null ? new PSStepOperationInfo(rolloutStep.OperationInfo) : null; + this.ResourceOperations = rolloutStep.ResourceOperations?.Select(ro => new PSResourceOperation(ro)).ToList(); + this.Messages = rolloutStep.Messages?.Select(m => new PSMessage(m)).ToList(); + } + + /// + /// Gets or sets name of the step as specified in the rollout + /// specification input artifact. + /// + public string Name + { + get; + set; + } + + /// + /// Gets current state of the step. + /// + public string Status + { + get; + private set; + } + + /// + /// Gets or sets the step group the current step is part of. + /// + public string StepGroup + { + get; + set; + } + + /// + /// Gets detailed information of specific action execution. + /// + public PSStepOperationInfo OperationInfo + { + get; + private set; + } + + /// + /// Gets set of resource operations that were performed on the Azure + /// resource that the action acted upon. + /// + public IList ResourceOperations + { + get; + private set; + } + + /// + /// Gets supplementary informative messages during rollout. + /// + public IList Messages + { + get; + private set; + } + + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/Rollout/PSService.cs b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSService.cs new file mode 100644 index 000000000000..bcefa71dec1d --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSService.cs @@ -0,0 +1,71 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using System.Collections.Generic; + using System.Linq; + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSService + { + public PSService(Service service) + { + this.TargetLocation = service.TargetLocation; + this.TargetSubscriptionId = service.TargetSubscriptionId; + this.Name = service.Name; + this.ServiceUnits = service.ServiceUnits?.Select(su => new PSServiceUnit(su)).ToList(); + } + + /// + /// Gets or sets the Azure location to which the resources in the + /// service belong to. + /// + public string TargetLocation + { + get; + set; + } + + /// + /// Gets or sets the subscription to which the resources in the service + /// belong to. + /// + public string TargetSubscriptionId + { + get; + set; + } + + /// + /// Gets or sets name of the service. + /// + public string Name + { + get; + set; + } + + /// + /// Gets or sets the detailed information about the units that make up + /// the service. + /// + public IList ServiceUnits + { + get; + set; + } + + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/Rollout/PSServiceUnit.cs b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSServiceUnit.cs new file mode 100644 index 000000000000..542910e204f5 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSServiceUnit.cs @@ -0,0 +1,114 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using System.Collections.Generic; + using System.Linq; + + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSServiceUnit + { + public PSServiceUnit(ServiceUnit serviceUnit) + { + this.Name = serviceUnit.Name; + this.TargetResourceGroup = serviceUnit.TargetResourceGroup; + this.DeploymentMode = serviceUnit.DeploymentMode; + this.ParametersArtifactSourceRelativePath = serviceUnit.Artifacts?.ParametersArtifactSourceRelativePath; + this.ParametersUri = serviceUnit.Artifacts?.ParametersUri; + this.TemplateArtifactSourceRelativePath = serviceUnit.Artifacts?.TemplateArtifactSourceRelativePath; + this.TemplateUri = serviceUnit.Artifacts?.TemplateUri; + this.Steps = serviceUnit.Steps?.Select(s => new PSRolloutStep(s)).ToList(); + } + /// + /// Gets or sets the Azure Resource Group to which the resources in the + /// service unit belong to. + /// + public string TargetResourceGroup + { + get; + set; + } + + /// + /// Gets or sets describes the type of ARM deployment to be performed + /// on the resource. Possible values include: 'Complete', 'Incremental' + /// + public DeploymentMode DeploymentMode + { + get; + set; + } + + /// + /// Gets or sets the full URI of the ARM template file with the SAS + /// token. + /// + public string TemplateUri + { + get; + set; + } + + /// + /// Gets or sets the full URI of the ARM parameters file with the SAS + /// token. + /// + public string ParametersUri + { + get; + set; + } + + /// + /// Gets or sets the path to the ARM template file relative to the + /// artifact store. + /// + public string TemplateArtifactSourceRelativePath + { + get; + set; + } + + /// + /// Gets or sets the path to the ARM parameters file relative to the + /// artifact store. + /// + public string ParametersArtifactSourceRelativePath + { + get; + set; + } + + /// + /// Gets or sets name of the service unit. + /// + public string Name + { + get; + set; + } + + /// + /// Gets or sets detailed step information, if present. + /// + public IList Steps + { + get; + set; + } + + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/Rollout/PSStepOperationInfo.cs b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSStepOperationInfo.cs new file mode 100644 index 000000000000..2609e341ce70 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/Rollout/PSStepOperationInfo.cs @@ -0,0 +1,43 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSStepOperationInfo : PSBaseOperationInfo + { + public PSStepOperationInfo(StepOperationInfo stepOperationInfo) : base( + stepOperationInfo?.StartTime, + stepOperationInfo?.EndTime, + stepOperationInfo?.LastUpdatedTime, + stepOperationInfo?.Error) + { + this.DeploymentName = stepOperationInfo?.DeploymentName; + this.CorrelationId = stepOperationInfo?.CorrelationId; + } + + public string DeploymentName + { + get; + private set; + } + + public string CorrelationId + { + get; + private set; + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/ServiceTopology/PSServiceResource.cs b/src/DeploymentManager/DeploymentManager/Models/ServiceTopology/PSServiceResource.cs new file mode 100644 index 000000000000..814a3b8179b4 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/ServiceTopology/PSServiceResource.cs @@ -0,0 +1,69 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using Microsoft.Azure.Commands.ResourceManager.Common.Tags; + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSServiceResource : PSResource + { + public PSServiceResource() : base() + { + } + + public PSServiceResource( + string resourceGroup, + string serviceTopologyName, + ServiceResource serviceResource) : base(serviceResource) + { + this.ResourceGroupName = resourceGroup; + this.ServiceTopologyName = serviceTopologyName; + this.TargetSubscriptionId = serviceResource.TargetSubscriptionId; + this.TargetLocation = serviceResource.TargetLocation; + } + + /// + /// Gets or sets the resource group to which the service unit belongs. + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets the service topology the service unit belongs to. + /// + public string ServiceTopologyName { get; set; } + + /// + /// Gets or sets the subscription to which the resources in the topology group should be deployed to. + /// + public string TargetSubscriptionId { get; set; } + + /// + /// Gets or sets the location where the resources in the topology group should be deployed to. + /// + public string TargetLocation { get; set; } + + internal ServiceResource ToSdkType() + { + return new ServiceResource( + location: this.Location, + targetLocation: this.TargetLocation, + targetSubscriptionId: this.TargetSubscriptionId, + id: this.Id, + name: this.Name, + type: this.Type, + tags: TagsConversionHelper.CreateTagDictionary(this.Tags, validate: true)); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/ServiceTopology/PSServiceTopologyResource.cs b/src/DeploymentManager/DeploymentManager/Models/ServiceTopology/PSServiceTopologyResource.cs new file mode 100644 index 000000000000..0caa19e178bb --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/ServiceTopology/PSServiceTopologyResource.cs @@ -0,0 +1,56 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using Microsoft.Azure.Commands.ResourceManager.Common.Tags; + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSServiceTopologyResource : PSResource + { + public PSServiceTopologyResource() : base() + { + } + + public PSServiceTopologyResource( + string resourceGroup, + ServiceTopologyResource topologyResource) : base(topologyResource) + { + this.ResourceGroupName = resourceGroup; + this.ArtifactSourceId = topologyResource.ArtifactSourceId; + } + + /// + /// Gets or sets the resource group to which the service unit belongs. + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets the artifact store that contains the artifacts that + /// make up the topology components. + /// + public string ArtifactSourceId { get; set; } + + internal ServiceTopologyResource ToSdkType() + { + return new ServiceTopologyResource( + location: this.Location, + artifactSourceId: this.ArtifactSourceId, + id: this.Id, + name: this.Name, + type: this.Type, + tags: TagsConversionHelper.CreateTagDictionary(this.Tags, validate: true)); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/ServiceTopology/PSServiceUnitResource.cs b/src/DeploymentManager/DeploymentManager/Models/ServiceTopology/PSServiceUnitResource.cs new file mode 100644 index 000000000000..98f201990fb4 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/ServiceTopology/PSServiceUnitResource.cs @@ -0,0 +1,111 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using System; + using Microsoft.Azure.Commands.ResourceManager.Common.Tags; + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSServiceUnitResource : PSResource + { + public PSServiceUnitResource() : base() + { + } + + public PSServiceUnitResource( + string resourceGroup, + string serviceTopologyName, + string serviceName, + ServiceUnitResource serviceUnitResource) : base(serviceUnitResource) + { + this.ResourceGroupName = resourceGroup; + this.DeploymentMode = serviceUnitResource.DeploymentMode.ToString(); + this.ServiceTopologyName = serviceTopologyName; + this.ServiceName = serviceName; + this.TargetResourceGroup = serviceUnitResource.TargetResourceGroup; + this.TemplateUri = serviceUnitResource.Artifacts.TemplateUri; + this.ParametersUri = serviceUnitResource.Artifacts.ParametersUri; + this.ParametersArtifactSourceRelativePath = serviceUnitResource.Artifacts.ParametersArtifactSourceRelativePath; + this.TemplateArtifactSourceRelativePath = serviceUnitResource.Artifacts.TemplateArtifactSourceRelativePath; + } + + /// + /// Gets or sets the resource group to which the service unit belongs. + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets the service topology the service unit belongs to. + /// + public string ServiceTopologyName { get; set; } + + /// + /// Gets or sets the service the service unit belongs to. + /// + public string ServiceName { get; set; } + + /// + /// Gets or sets the resource group to which the resources in the topology group should be deployed to. + /// + public string TargetResourceGroup { get; set; } + + /// + /// Gets or sets describes the type of ARM deployment to be performed + /// on the resource. Possible values include: 'Complete', 'Incremental' + /// + public string DeploymentMode { get; set; } + + /// + /// Gets or sets the SAS URI of the ARM template. + /// + public string TemplateUri { get; set; } + + /// + /// Gets or sets the SAS URI of the ARM parameters file. + /// + public string ParametersUri { get; set; } + + /// + /// Gets or sets the relative path of the ARM parameters file from the artifact source for this topology. + /// + public string ParametersArtifactSourceRelativePath { get; set; } + + /// + /// Gets or sets the relative path of the ARM template file from the artifact source for this topology. + /// + public string TemplateArtifactSourceRelativePath { get; set; } + + internal ServiceUnitResource ToSdkType() + { + return new ServiceUnitResource( + location: this.Location, + targetResourceGroup: this.TargetResourceGroup, + deploymentMode: (DeploymentMode)Enum.Parse(typeof(DeploymentMode), this.DeploymentMode, ignoreCase: true), + id: this.Id, + name: this.Name, + type: this.Type, + tags: TagsConversionHelper.CreateTagDictionary(this.Tags, validate: true)) + { + Artifacts = new ServiceUnitArtifacts() + { + TemplateUri = this.TemplateUri, + ParametersUri = this.ParametersUri, + TemplateArtifactSourceRelativePath = this.TemplateArtifactSourceRelativePath, + ParametersArtifactSourceRelativePath = this.ParametersArtifactSourceRelativePath + } + }; + } + } +} diff --git a/src/AnalysisServices/AnalysisServices.Dataplane/Models/ClusterResolutionResult.cs b/src/DeploymentManager/DeploymentManager/Models/Steps/PSStepProperties.cs similarity index 61% rename from src/AnalysisServices/AnalysisServices.Dataplane/Models/ClusterResolutionResult.cs rename to src/DeploymentManager/DeploymentManager/Models/Steps/PSStepProperties.cs index ea48bd6e2fda..14933aa075db 100644 --- a/src/AnalysisServices/AnalysisServices.Dataplane/Models/ClusterResolutionResult.cs +++ b/src/DeploymentManager/DeploymentManager/Models/Steps/PSStepProperties.cs @@ -12,22 +12,20 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; -using System.Collections.Generic; -using System.Runtime.Serialization; +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using Microsoft.Azure.Management.DeploymentManager.Models; -namespace Microsoft.Azure.Commands.AnalysisServices.Dataplane.Models -{ - [DataContract] - public sealed class ClusterResolutionResult + public abstract class PSStepProperties { - [DataMember(Name = "clusterFQDN")] - public string ClusterFQDN { get; set; } + protected PSStepProperties() + { + } - [DataMember(Name = "coreServerName")] - public string CoreServerName { get; set; } + protected PSStepProperties(StepProperties stepProperties) + { + } - [DataMember(Name = "tenantId")] - public string TenantId { get; set; } + internal abstract StepProperties ToSdkType(); } } diff --git a/src/DeploymentManager/DeploymentManager/Models/Steps/PSStepResource.cs b/src/DeploymentManager/DeploymentManager/Models/Steps/PSStepResource.cs new file mode 100644 index 000000000000..049e5bc75d6e --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/Steps/PSStepResource.cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using Microsoft.Azure.Commands.ResourceManager.Common.Tags; + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSStepResource : PSResource + { + public PSStepResource(): base() + { + + } + + public PSStepResource(string resourceGroupName, StepResource stepResource) : base(stepResource) + { + this.ResourceGroupName = resourceGroupName; + this.StepProperties = new PSWaitStepProperties((WaitStepProperties)stepResource.Properties); + } + + /// + /// Gets or sets the resource group to which the service unit belongs. + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets provides the input parameters that correspond to the + /// stepType. + /// + public PSStepProperties StepProperties + { + get; + set; + } + + internal StepResource ToSdkType() + { + return new StepResource( + location: this.Location, + properties: this.StepProperties?.ToSdkType(), + id: this.Id, + name: this.Name, + type: this.Type, + tags: TagsConversionHelper.CreateTagDictionary(this.Tags, validate: true)); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Models/Steps/PSWaitStepProperties.cs b/src/DeploymentManager/DeploymentManager/Models/Steps/PSWaitStepProperties.cs new file mode 100644 index 000000000000..c25f40fe6160 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Models/Steps/PSWaitStepProperties.cs @@ -0,0 +1,37 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Models +{ + using Microsoft.Azure.Management.DeploymentManager.Models; + + public class PSWaitStepProperties : PSStepProperties + { + public PSWaitStepProperties() : base() + { + } + + public PSWaitStepProperties(WaitStepProperties waitStepProperties) : base(waitStepProperties) + { + this.Duration = waitStepProperties.Attributes?.Duration; + } + + public string Duration { get; set; } + + internal override StepProperties ToSdkType() + { + return new WaitStepProperties(new WaitStepAttributes(this.Duration)); + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/Properties/AssemblyInfo.cs b/src/DeploymentManager/DeploymentManager/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..921e83330a4e --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("DeploymentManager")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("DeploymentManager")] +[assembly: AssemblyCopyright("Copyright © 2018")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("f022ed20-7d3b-4bf4-88af-f97cc50484da")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// 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("0.1.0")] +[assembly: AssemblyFileVersion("0.1.0")] diff --git a/src/DeploymentManager/DeploymentManager/Utilities/EnumerationUtilities.cs b/src/DeploymentManager/DeploymentManager/Utilities/EnumerationUtilities.cs new file mode 100644 index 000000000000..895000520d7b --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Utilities/EnumerationUtilities.cs @@ -0,0 +1,48 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Utilities +{ + using System.Collections.Generic; + using System.Globalization; + using System.Linq; + using System.Text; + + internal static class EnumerationUtilities + { + internal static string ToCommaDelimitedString(this IEnumerable items, string delimiter = ", ") + { + StringBuilder builder = new StringBuilder(); + int count = items.Count(); + foreach (T item in items) + { + builder.AppendFormat( + CultureInfo.InvariantCulture, + $"{item}"); + + if (--count != 0) + { + builder.Append(delimiter); + } + } + + if (builder.Length > 0) + { + builder.Append("."); + } + + return builder.ToString(); + } + } +} \ No newline at end of file diff --git a/src/DeploymentManager/DeploymentManager/Utilities/StringUtilities.cs b/src/DeploymentManager/DeploymentManager/Utilities/StringUtilities.cs new file mode 100644 index 000000000000..1505ac04c80a --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/Utilities/StringUtilities.cs @@ -0,0 +1,168 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.DeploymentManager.Utilities +{ + using System; + using System.Globalization; + using System.Linq; + using System.Text; + + internal static class StringUtilities + { + private const int DefaultIndentLength = 4; + + internal static string InvariantFormat(string format, params object[] args) + { + if (args.Length > 0) + { + return string.Format( + CultureInfo.InvariantCulture, + format, + args); + } + else + { + return format; + } + } + + internal static string SafeInvariantFormat(string format, params object[] args) + { + const string NullString = ""; + + if (args == null) + { + // When the argument is null replace with an array of one + // containing the null string. + args = new string[] { NullString }; + } + else + { + // Iterate all the args replacing any nulls with the null string. + for (int i = 0; i < args.Length; i++) + { + if (args[i] == null) + { + args[i] = NullString; + } + } + } + + return StringUtilities.InvariantFormat(format, args); + } + + internal static void InvariantAppend( + this StringBuilder builder, + string format, + params object[] args) + { + const string NullString = ""; + + if (args == null) + { + // When the argument is null replace with an array of one + // containing the null string. + args = new string[] { NullString }; + } + else + { + // Iterate all the args replacing any nulls with the null string. + for (int i = 0; i < args.Length; i++) + { + if (args[i] == null) + { + args[i] = NullString; + } + } + } + + if (args.Length > 0) + { + builder.AppendFormat(CultureInfo.InvariantCulture, format, args); + } + else + { + builder.Append(format); + } + } + + internal static bool IsNullOrWhiteSpace(string value) + { + if (string.IsNullOrEmpty(value)) + { + return true; + } + + if (value.Trim().Length == 0) + { + return true; + } + + return false; + } + + internal static string ToLocalTimeForUserDisplay(this DateTime dateTime) + { + return dateTime.ToLocalTime().ToString("G", CultureInfo.InvariantCulture); + } + + internal static string ToDisplayFormat(this TimeSpan timeSpan) + { + var trimmedTimeSpan = new TimeSpan(timeSpan.Days, timeSpan.Hours, timeSpan.Minutes, timeSpan.Seconds); + + return trimmedTimeSpan.ToString(); + } + + internal static void AppendFormatWithLeftIndentAndNewLine(this StringBuilder sb, int indentFactor, string format, params object[] args) + { + string resultString; + + if (args == null || !args.Any()) + { + resultString = format; + } + else + { + resultString = StringUtilities.SafeInvariantFormat(format, args); + } + + if (indentFactor > 0) + { + resultString = resultString.PadLeft(resultString.Length + (StringUtilities.DefaultIndentLength * indentFactor)); + } + + sb.AppendLine(); + sb.Append(resultString); + } + + internal static void AppendFormatWithLeftIndentAndNewLineIfNotNull(this StringBuilder sb, int indentFactor, string name, string value) + { + if (!StringUtilities.IsNullOrWhiteSpace(value)) + { + sb.AppendFormatWithLeftIndentAndNewLine(indentFactor, "{0}: {1}", name, value); + } + } + + internal static string FormatIfNotNull(string name, string value) + { + if (!StringUtilities.IsNullOrWhiteSpace(value)) + { + return StringUtilities.SafeInvariantFormat("{0}: {1}", name, value); + } + + return string.Empty; + } + } +} diff --git a/src/DeploymentManager/DeploymentManager/help/Az.DeploymentManager.md b/src/DeploymentManager/DeploymentManager/help/Az.DeploymentManager.md new file mode 100644 index 000000000000..0d146fdd15d7 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Az.DeploymentManager.md @@ -0,0 +1,85 @@ +--- +Module Name: Az.DeploymentManager +Module Guid: F022ED20-7D3B-4BF4-88AF-F97CC50484DA +Download Help Link: {{ Update Download Link }} +Help Version: 0.9.0 +Locale: {{ Update Locale }} +--- + +# Az.DeploymentManager Module +## Description +Cmdlets to interact with the Azure Deployment Manager service. + +## Az.DeploymentManager Cmdlets +### [Get-AzDeploymentManagerArtifactSource](Get-AzDeploymentManagerArtifactSource.md) +Gets the Artifact source. + +### [Get-AzDeploymentManagerRollout](Get-AzDeploymentManagerRollout.md) +Gets the rollout. + +### [Get-AzDeploymentManagerService](Get-AzDeploymentManagerService.md) +Gets the service. + +### [Get-AzDeploymentManagerServiceTopology](Get-AzDeploymentManagerServiceTopology.md) +Gets the service topology. + +### [Get-AzDeploymentManagerServiceUnit](Get-AzDeploymentManagerServiceUnit.md) +Gets the service unit. + +### [Get-AzDeploymentManagerStep](Get-AzDeploymentManagerStep.md) +Gets the step. + +### [New-AzDeploymentManagerArtifactSource](New-AzDeploymentManagerArtifactSource.md) +Creates an artifact source. + +### [New-AzDeploymentManagerService](New-AzDeploymentManagerService.md) +Creates a service under the specified service topology. + +### [New-AzDeploymentManagerServiceTopology](New-AzDeploymentManagerServiceTopology.md) +Creates a service topology. + +### [New-AzDeploymentManagerServiceUnit](New-AzDeploymentManagerServiceUnit.md) +Creates a service unit under the specified service and service topology. + +### [New-AzDeploymentManagerStep](New-AzDeploymentManagerStep.md) +Creates a step. + +### [Remove-AzDeploymentManagerArtifactSource](Remove-AzDeploymentManagerArtifactSource.md) +Deletes the specified artifact source. + +### [Remove-AzDeploymentManagerRollout](Remove-AzDeploymentManagerRollout.md) +Deletes the rollout. + +### [Remove-AzDeploymentManagerService](Remove-AzDeploymentManagerService.md) +Deletes the service.. All service units created under a service need to be deleted before deleting the service. + +### [Remove-AzDeploymentManagerServiceTopology](Remove-AzDeploymentManagerServiceTopology.md) +Deletes the service topology. All services created under a service topology need to be deleted before deleting the service topology. + +### [Remove-AzDeploymentManagerServiceUnit](Remove-AzDeploymentManagerServiceUnit.md) +Deletes the service unit. + +### [Remove-AzDeploymentManagerStep](Remove-AzDeploymentManagerStep.md) +Deletes the step. + +### [Restart-AzDeploymentManagerRollout](Restart-AzDeploymentManagerRollout.md) +Restarts a failed rollout. + +### [Set-AzDeploymentManagerArtifactSource](Set-AzDeploymentManagerArtifactSource.md) +Updates the artifacts source. + +### [Set-AzDeploymentManagerService](Set-AzDeploymentManagerService.md) +Updates the service. + +### [Set-AzDeploymentManagerServiceTopology](Set-AzDeploymentManagerServiceTopology.md) +Updates the service topology. + +### [Set-AzDeploymentManagerServiceUnit](Set-AzDeploymentManagerServiceUnit.md) +Updates the service unit. + +### [Set-AzDeploymentManagerStep](Set-AzDeploymentManagerStep.md) +Updates the step. + +### [Stop-AzDeploymentManagerRollout](Stop-AzDeploymentManagerRollout.md) +Stops the rollout. + diff --git a/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerArtifactSource.md b/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerArtifactSource.md new file mode 100644 index 000000000000..4a490d9fcdeb --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerArtifactSource.md @@ -0,0 +1,153 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/get-azdeploymentmanagerartifactsource +schema: 2.0.0 +--- + +# Get-AzDeploymentManagerArtifactSource + +## SYNOPSIS + +Gets the Artifact source. + +## SYNTAX + +### Interactive (Default) +``` +Get-AzDeploymentManagerArtifactSource [-ResourceGroupName] [-Name] + [-DefaultProfile ] [] +``` + +### ResourceId +``` +Get-AzDeploymentManagerArtifactSource [-ResourceId] [-DefaultProfile ] + [] +``` + +### InputObject +``` +Get-AzDeploymentManagerArtifactSource [-InputObject] + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzDeploymentManagerArtifactSource** cmdlet gets an artifact source, and returns an object that represents that artifact source. +Specify the artifact source by its name and resource group name. Alternately, you can provide the ArtifactSource object or the ResourceId. + +## EXAMPLES + +### Example 1: Get an artifact source +```powershell +PS C:\> Get-AzDeploymentManagerArtifactSource -ResourceGroupName "ContosoResourceGroup" -Name "ContosoArtifactSource" +``` + +This command gets an artifact source named ContosoArtifactSource in ContosoResourceGroup. + +### Example 2: Get an artifact source using the resource identifier +```powershell +PS C:\> Get-AzDeploymentManagerArtifactSource -ResourceId "/subscriptions/subscriptionId/resourcegroups/ContosoResourceGroup/providers/Microsoft.DeploymentManager/artifactSources/ContosoArtifactSource" +``` + +This command gets an artifact source named ContosoArtifactSource in ContosoResourceGroup. + +### Example 3: Get an artifact source using an object returned by New-AzDeploymentManagerArtifactSource +```powershell +PS C:\> Get-AzDeploymentManagerArtifactSource -InputObject $artifactSourceObject +``` + +This command gets an artifact source whose name and ResourceGroup match the Name and ResourceGroupName properties of the $artifactSourceObject, respectively. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Artifact Source object. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSArtifactSource +Parameter Sets: InputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the artifact source. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource identifier. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSArtifactSource + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSArtifactSource + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerRollout.md b/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerRollout.md new file mode 100644 index 000000000000..da76dd259e8b --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerRollout.md @@ -0,0 +1,179 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/get-azdeploymentmanagerrollout +schema: 2.0.0 +--- + +# Get-AzDeploymentManagerRollout + +## SYNOPSIS +Gets the rollout. + +## SYNTAX + +### Interactive (Default) +``` +Get-AzDeploymentManagerRollout [-ResourceGroupName] [-Name] [-RetryAttempt ] + [-DefaultProfile ] [] +``` + +### ResourceId +``` +Get-AzDeploymentManagerRollout [-ResourceId] [-DefaultProfile ] + [] +``` + +### InputObject +``` +Get-AzDeploymentManagerRollout [-InputObject] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The **Get-AzDeploymentManagerRollout** cmdlet gets a rollout, and returns an object that represents that rollout with all the detailed information on the progress of the rollout. +Specify the rollout by its name and resource group name. Alternately, you can provide the Rollout object or the ResourceId. + +The returned rollout object contains the services, service units and steps that have been deployed and the ones in progress. Those that are yet to be deployed are not in the response. + +## EXAMPLES + +### Example 1 Get the rollout +```powershell +PS C:\> Get-AzDeploymentManagerRollout -ResourceGroupName ContosoResourceGroup -Name ContosoRollout +``` + +This command gets a rollout named ContosoRollout in the ContosoResourceGroup. + +### Example 2 Get and display the rollout details +```powershell +PS C:\> Get-AzDeploymentManagerRollout -ResourceGroupName ContosoResourceGroup -Name ContosoRollout -Verbose +``` + +This command gets a rollout named ContosoRollout in the ContosoResourceGroup. +The -Verbose switch displays all the rollout details hierarchically; showing the Services, the ServiceUnits and the steps under each ServiceUnit and contextual information for each step for a holistic view of the rollout. + +### Example 3: Get a rollout using the resource identifier +```powershell +PS C:\> Get-AzDeploymentManagerRollout -ResourceId "/subscriptions/subscriptionId/resourcegroups/ContosoResourceGroup/providers/Microsoft.DeploymentManager/rollouts/ContosoRollout" +``` + +This command gets a rollout named ContosoRollout in the ContosoResourceGroup. + +### Example 4: Get a rollout using the rollout object. +```powershell +PS C:\> Get-AzDeploymentManagerRollout -InputObject $rolloutObject +``` + +This command gets a rollout whose name and ResourceGroup match the Name and ResourceGroupName properties of the $rolloutObject, respectively. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Rollout object. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSRollout +Parameter Sets: InputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the rollout. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource identifier. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RetryAttempt +The retry attempt of the rollout. + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: Interactive +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Nullable`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSRollout + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSRollout + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerService.md b/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerService.md new file mode 100644 index 000000000000..8ca08789606e --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerService.md @@ -0,0 +1,213 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/get-azdeploymentmanagerservice +schema: 2.0.0 +--- + +# Get-AzDeploymentManagerService + +## SYNOPSIS +Gets the service. + +## SYNTAX + +### Interactive (Default) +``` +Get-AzDeploymentManagerService [-ResourceGroupName] [-ServiceTopologyName] [-Name] + [-DefaultProfile ] [] +``` + +### ByServiceTopologyObject +``` +Get-AzDeploymentManagerService [-ResourceGroupName] [-Name] + [-ServiceTopologyObject] [-DefaultProfile ] + [] +``` + +### ByServiceTopologyResourceId +``` +Get-AzDeploymentManagerService [-ResourceGroupName] [-Name] + [-ServiceTopologyResourceId] [-DefaultProfile ] [] +``` + +### ResourceId +``` +Get-AzDeploymentManagerService [-ResourceId] [-DefaultProfile ] + [] +``` + +### InputObject +``` +Get-AzDeploymentManagerService [-InputObject] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The **Get-AzDeploymentManagerService** cmdlet gets a service under a service topology, and returns an object that represents that service. +Specify the service by its name, service topology it is in and the resource group name. Alternately, you can provide the Service object or the ResourceId. + +You can modify this object locally, and then apply changes to the service by using the Set-AzDeploymentManagerService cmdlet. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Get-AzDeploymentManagerService -ResourceGroupName ContosoResourceGroup -ServiceTopologyName ContosoServiceTopology -Name ContosoService1 +``` + +This command gets a service named ContosoService1 in a service topology named ContosoServiceTopology in the ContosoResourceGroup. + +### Example 2: Get a service using the resource identifier. +```powershell +PS C:\> Get-AzDeploymentManagerService -ResourceId "/subscriptions/subscriptionId/resourcegroups/ContosoResourceGroup/providers/Microsoft.DeploymentManager/serviceTopologies/ContosoServiceTopology/services/ContosoService1" +``` + +This command gets a service named ContosoService1 in a service topology named ContosoServiceTopology in the ContosoResourceGroup. + +### Example 3: Get a service using the service object. +```powershell +PS C:\> Get-AzDeploymentManagerService -InputObject $serviceObject +``` + +This command gets a service whose name, service topology name and ResourceGroup match the Name, ServiceTopologyName and ResourceGroupName properties of the $serviceObject, respectively. + + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Service object. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceResource +Parameter Sets: InputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the service. + +```yaml +Type: System.String +Parameter Sets: Interactive, ByServiceTopologyObject, ByServiceTopologyResourceId +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: Interactive, ByServiceTopologyObject, ByServiceTopologyResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource identifier. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ServiceTopologyName +The name of the service topology. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyObject +The service topology object in which the service should be created. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceTopologyResource +Parameter Sets: ByServiceTopologyObject +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyResourceId +The service topology resource identifier in which the service should be created. + +```yaml +Type: System.String +Parameter Sets: ByServiceTopologyResourceId +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceResource + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceResource + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerServiceTopology.md b/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerServiceTopology.md new file mode 100644 index 000000000000..c7a1bed13204 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerServiceTopology.md @@ -0,0 +1,154 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/get-azdeploymentmanagerservicetopology +schema: 2.0.0 +--- + +# Get-AzDeploymentManagerServiceTopology + +## SYNOPSIS +Gets the service topology. + +## SYNTAX + +### Interactive (Default) +``` +Get-AzDeploymentManagerServiceTopology [-ResourceGroupName] [-Name] + [-DefaultProfile ] [] +``` + +### ResourceId +``` +Get-AzDeploymentManagerServiceTopology [-ResourceId] [-DefaultProfile ] + [] +``` + +### InputObject +``` +Get-AzDeploymentManagerServiceTopology [-InputObject] + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzDeploymentManagerServiceTopology** cmdlet gets a service topology. + +You can modify this object locally, and then apply changes to the topology by using the Set-AzDeploymentManagerServiceTopology cmdlet. +Specify the service topology by its name and the resource group name. Alternately, you can provide the ServiceTopology object or the ResourceId. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Get-AzDeploymentManagerServiceTopology -ResourceGroupName ContosoResourceGroup -Name ContosoServiceTopology +``` + +This command gets a service topology named ContosoServiceTopology in the ContosoResourceGroup. + +### Example 2: Get a service topology using the resource identifier. +```powershell +PS C:\> Get-AzDeploymentManagerServiceTopology -ResourceId "/subscriptions/subscriptionId/resourcegroups/ContosoResourceGroup/providers/Microsoft.DeploymentManager/serviceTopologies/ContosoServiceTopology" +``` + +This command gets a service topology named ContosoServiceTopology in the ContosoResourceGroup. + +### Example 3: Get a service topology using the service topology object. +```powershell +PS C:\> Get-AzDeploymentManagerService -InputObject $serviceTopologyObject +``` + +This command gets a service topology whose name and ResourceGroup match the Name and ResourceGroupName properties of the $serviceTopologyObject, respectively. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Service topology resource object. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceTopologyResource +Parameter Sets: InputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the service topology. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource identifier. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceTopologyResource + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceTopologyResource + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerServiceUnit.md b/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerServiceUnit.md new file mode 100644 index 000000000000..9a3221f3f61e --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerServiceUnit.md @@ -0,0 +1,270 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/get-azdeploymentmanagerserviceunit +schema: 2.0.0 +--- + +# Get-AzDeploymentManagerServiceUnit + +## SYNOPSIS +Gets the service unit. + +## SYNTAX + +### Interactive (Default) +``` +Get-AzDeploymentManagerServiceUnit [-ResourceGroupName] [-ServiceTopologyName] + [-ServiceName] [-Name] [-DefaultProfile ] [] +``` + +### ByServiceObject +``` +Get-AzDeploymentManagerServiceUnit [-ResourceGroupName] [-Name] + [-ServiceObject] [-DefaultProfile ] [] +``` + +### ByServiceResourceId +``` +Get-AzDeploymentManagerServiceUnit [-ResourceGroupName] [-Name] [-ServiceResourceId] + [-DefaultProfile ] [] +``` + +### ByTopologyObjectAndServiceName +``` +Get-AzDeploymentManagerServiceUnit [-ResourceGroupName] [-ServiceName] [-Name] + [-ServiceTopologyObject] [-DefaultProfile ] + [] +``` + +### ByTopologyResourceAndServiceName +``` +Get-AzDeploymentManagerServiceUnit [-ResourceGroupName] [-ServiceName] [-Name] + [-ServiceTopologyResourceId] [-DefaultProfile ] [] +``` + +### ResourceId +``` +Get-AzDeploymentManagerServiceUnit [-ResourceId] [-DefaultProfile ] + [] +``` + +### InputObject +``` +Get-AzDeploymentManagerServiceUnit [-ServiceUnitObject] + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzDeploymentManagerServiceUnit** cmdlet gets a service unit in a service. + +Specify the service unit by its name, the service under which it was defined, the service topology name and the resource group name. Alternately, you can provide the ServiceUnit object or the ResourceId. + +You can modify this object locally, and then apply changes to the service unit by using the Set-AzDeploymentManagerServiceUnit cmdlet. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Get-AzDeploymentManagerServiceUnit -ResourceGroupName ContosoResourceGroup -ServiceTopologyName ContosoServiceTopology -ServiceName ContosoService1 -Name ContosoService1Storage +``` + +This command gets a service unit named ContosoService1Storage under a service ContosoService1 in a service topology named ContosoServiceTopology in the ContosoResourceGroup. + +### Example 2: Get a service unit using the resource identifier. +```powershell +PS C:\> Get-AzDeploymentManagerServiceUnit -ResourceId "/subscriptions/subscriptionId/resourcegroups/ContosoResourceGroup/providers/Microsoft.DeploymentManager/serviceTopologies/ContosoServiceTopology/services/ContosoService1/serviceUnits/ContosoService1Storage" +``` + +This command gets a service unit named ContosoService1Storage under a service ContosoService1 in a service topology named ContosoServiceTopology in the ContosoResourceGroup. + +### Example 3: Get a service unit using the service unit object. +```powershell +PS C:\> Get-AzDeploymentManagerServiceUnit -InputObject $serviceUnitObject +``` + +This command gets a service unit whose name, service name, service topology name and ResourceGroup match the Name, ServiceName, ServiceTopologyName and ResourceGroupName properties of the $serviceUnitObject, respectively. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the service unit. + +```yaml +Type: System.String +Parameter Sets: Interactive, ByServiceObject, ByServiceResourceId, ByTopologyObjectAndServiceName, ByTopologyResourceAndServiceName +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: Interactive, ByServiceObject, ByServiceResourceId, ByTopologyObjectAndServiceName, ByTopologyResourceAndServiceName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource identifier. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ServiceName +The name of the service the service unit is part of. + +```yaml +Type: System.String +Parameter Sets: Interactive, ByTopologyObjectAndServiceName, ByTopologyResourceAndServiceName +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceObject +The service object in which the service unit should be created. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceResource +Parameter Sets: ByServiceObject +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceResourceId +The service resource identifier in which the service unit should be created. + +```yaml +Type: System.String +Parameter Sets: ByServiceResourceId +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyName +The name of the service topology the service unit is part of. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyObject +The service topology object in which the service unit should be created. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceTopologyResource +Parameter Sets: ByTopologyObjectAndServiceName +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyResourceId +The service topology resource identifier in which the service unit should be created. + +```yaml +Type: System.String +Parameter Sets: ByTopologyResourceAndServiceName +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceUnitObject +Service unit resource object. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceUnitResource +Parameter Sets: InputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceUnitResource + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceUnitResource + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerStep.md b/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerStep.md new file mode 100644 index 000000000000..cf28ffeefe09 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Get-AzDeploymentManagerStep.md @@ -0,0 +1,155 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/get-azdeploymentmanagerstep +schema: 2.0.0 +--- + +# Get-AzDeploymentManagerStep + +## SYNOPSIS +Gets the step. + +## SYNTAX + +### Interactive (Default) +``` +Get-AzDeploymentManagerStep [-ResourceGroupName] [-Name] + [-DefaultProfile ] [] +``` + +### ResourceId +``` +Get-AzDeploymentManagerStep [-ResourceId] [-DefaultProfile ] + [] +``` + +### InputObject +``` +Get-AzDeploymentManagerStep [-InputObject] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The **Get-AzDeploymentManagerStep** cmdlet gets a step, and returns an object that represents that step. +Specify the step by its name and resource group name. Alternately, you can provide the Step object or the ResourceId. + +You can modify this object locally, and then apply changes to the artifact source by using the Set-AzDeploymentManagerStep cmdlet. + +## EXAMPLES + +### Example 1: Get a step +```powershell +PS C:\> New-AzDeploymentManagerStep -ResourceGroupName ContosoResourceGroup -Name ContosoService1WaitStep +``` + +This command gets a step named ContosoService1WaitStep in ContosoResourceGroup. + +### Example 2: Get a step using the resource identifier +### Example 1 +```powershell +PS C:\> Get-AzDeploymentManagerStep -ResourceId "/subscriptions/subscriptionId/resourcegroups/ContosoResourceGroup/providers/Microsoft.DeploymentManager/steps/ContosoService1WaitStep" +``` + +This command gets a step named ContosoService1WaitStep in ContosoResourceGroup. + +### Example 3: Get a step using an object returned by New-AzDeploymentManagerStep +```powershell +PS C:\> Get-AzDeploymentManagerStep -InputObject $stepObject +``` + + This command gets a step whose name and ResourceGroup match the Name and ResourceGroupName properties of the $stepObject, respectively. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The step resource object. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSStepResource +Parameter Sets: InputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the step. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource identifier. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSStepResource + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSStepResource + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/New-AzDeploymentManagerArtifactSource.md b/src/DeploymentManager/DeploymentManager/help/New-AzDeploymentManagerArtifactSource.md new file mode 100644 index 000000000000..466880680c60 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/New-AzDeploymentManagerArtifactSource.md @@ -0,0 +1,189 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/new-azdeploymentmanagerartifactsource +schema: 2.0.0 +--- + +# New-AzDeploymentManagerArtifactSource + +## SYNOPSIS +Creates an artifact source. + +## SYNTAX + +``` +New-AzDeploymentManagerArtifactSource -ResourceGroupName -Name -Location + -SasUri [-Tag ] [-ArtifactRoot ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **New-AzDeploymentManagerArtifactSource** cmdlet creates an artifact source. +Specify the *Name*, *ResourceGroupName* and required properties. + +You can modify the returned object locally and then apply the changes to the artifact source by using the Set-AzDeploymentManagerArtifactSource cmdlet. + +The cmdlet returns an ArtifactSource object that has a ResourceId which can be referenced in the New-AzDeloymentManagerServiceTopology cmdlet so that artifacts required for a ServiceUnit resource, the Template and Parameters files, can be referenced from this location. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> New-AzDeploymentManagerArtifactSource -ResourceGroupName ContosoResourceGroup -Name ContosoArtifactSource -Location "Central US" -SasUri "https://ContosoStorage.blob.core.windows.net/ContosoArtifacts?sasParameters" +``` + +Creates an artifact source in the ContosoResourceGroup with the name ContosoArtifactSource with Central US as the location of the resource. The SasUri property provides an Azure Storage SAS Uri to the storage container where the artifacts are stored. + +## PARAMETERS + +### -ArtifactRoot +The optional directory offset under the storage container for the artifacts. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The location of the resource. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the artifact source. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SasUri +The SAS Uri to the Azure storage container where the artifacts are stored. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +A hash table which represents resource tags. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Collections.Hashtable + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSArtifactSource + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/New-AzDeploymentManagerService.md b/src/DeploymentManager/DeploymentManager/help/New-AzDeploymentManagerService.md new file mode 100644 index 000000000000..bf3017fa12c5 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/New-AzDeploymentManagerService.md @@ -0,0 +1,247 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/new-azdeploymentmanagerservice +schema: 2.0.0 +--- + +# New-AzDeploymentManagerService + +## SYNOPSIS +Creates a service under the specified service topology. + +## SYNTAX + +### Interactive (Default) +``` +New-AzDeploymentManagerService [-ResourceGroupName] [-ServiceTopologyName] -Name + -Location -TargetLocation -TargetSubscriptionId [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByServiceTopologyObject +``` +New-AzDeploymentManagerService [-ResourceGroupName] -Name -Location + -TargetLocation -TargetSubscriptionId [-ServiceTopologyObject] + [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByServiceTopologyResourceId +``` +New-AzDeploymentManagerService [-ResourceGroupName] -Name -Location + -TargetLocation -TargetSubscriptionId [-ServiceTopologyId] [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **New-AzDeploymentManagerService** cmdlet creates a service under a service topology, and returns an object that represents that service. +Specify the service by its name, service topology it is in and the resource group name. + +The cmdlet returns a Service object. You can modify this object locally, and then apply changes to the service by using the Set-AzDeploymentManagerService cmdlet. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> New-AzDeploymentManagerService -ResourceGroupName ContosoResourceGroup -ServiceTopologyName ContosoServiceTopology -Name ContosoService1 -Location "Central US" -TargetLocation "East US" -TargetSubscriptionId XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX +``` + +Creates a new service with name ContosoService1 under service topology ContosoServiceTopology in Resource Group ContosoResourceGroup, in the location Central US. The TargetLocation property indicates that the service ContosoService1 should be deployed to the East US region in the subscription specified. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The location of the service resource. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the service. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyId +The service topology resource identifier in which the service should be created. + +```yaml +Type: System.String +Parameter Sets: ByServiceTopologyResourceId +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyName +The name of the service topology this service belongs to. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyObject +The service topology object in which the service should be created. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceTopologyResource +Parameter Sets: ByServiceTopologyObject +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +A hash table which represents resource tags. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TargetLocation +Determines the location where resources under the service would be deployed to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TargetSubscriptionId +Determines the subscription to which resources under the service would be deployed to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Collections.Hashtable + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceResource + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/New-AzDeploymentManagerServiceTopology.md b/src/DeploymentManager/DeploymentManager/help/New-AzDeploymentManagerServiceTopology.md new file mode 100644 index 000000000000..5fccd8555348 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/New-AzDeploymentManagerServiceTopology.md @@ -0,0 +1,181 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/new-azdeploymentmanagerservicetopology +schema: 2.0.0 +--- + +# New-AzDeploymentManagerServiceTopology + +## SYNOPSIS +Creates a service topology. + +## SYNTAX + +``` +New-AzDeploymentManagerServiceTopology -ResourceGroupName -Name -Location + [-ArtifactSourceId ] [-Tag ] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +The **New-AzDeploymentManagerServiceTopology** cmdlet creates a service topology. + +You can modify the returned ServiceTopology object locally, and then apply changes to the topology by using the Set-AzDeploymentManagerServiceTopology cmdlet. +The returned object + +The returned object has a ResourceId field which can be referenced in a rollout resource to indicate that the services declared in this service topology would be deployed in the rollout. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> New-AzDeploymentManagerServiceTopology -ResourceGroupName ContosoResourceGroup -Name ContosoServiceTopology -Location "Central US" -ArtifactSourceId "/subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourcegroups/ContosoResourceGroup/providers/Microsoft.DeploymentManager/artifactSources/ContosoArtifactSource" +``` + +This cmdlet creates a new service topology in the resource group ContosoResourceGroup with the name ContosoServiceTopology and in location Central US. The artifact source ResourceId indicates that the artifacts required for the service unit definitions in this topology need to be read from the specified artifact source. + +### Example 2 +```powershell +PS C:\> New-AzDeploymentManagerServiceTopology -ResourceGroupName ContosoResourceGroup -Name ContosoServiceTopology -Location "Central US" +``` + +This cmdlet creates a new service topology in the resource group ContosoResourceGroup with the name ContosoServiceTopology and in location Central US. The absence of an artifact source reference indicates that the artifacts required for the service unit definitions in this topology would be provided as absolute SAS URIs in the service unit. + +## PARAMETERS + +### -ArtifactSourceId +The identifier of the artifact source, where the artifacts that make up the topology are stored. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The location of the topology. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the topology. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +A hash table which represents resource tags. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Collections.Hashtable + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceTopologyResource + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/New-AzDeploymentManagerServiceUnit.md b/src/DeploymentManager/DeploymentManager/help/New-AzDeploymentManagerServiceUnit.md new file mode 100644 index 000000000000..b4cf2929b054 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/New-AzDeploymentManagerServiceUnit.md @@ -0,0 +1,405 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/new-azdeploymentmanagerserviceunit +schema: 2.0.0 +--- + +# New-AzDeploymentManagerServiceUnit + +## SYNOPSIS +Creates a service unit under the specified service and service topology. + +## SYNTAX + +### ByTopologyAndServiceNames (Default) +``` +New-AzDeploymentManagerServiceUnit [-ResourceGroupName] [-ServiceTopologyName] + [-ServiceName] [-Name] -Location -TargetResourceGroup + -DeploymentMode [-ParametersUri ] [-TemplateUri ] + [-TemplateArtifactSourceRelativePath ] [-ParametersArtifactSourceRelativePath ] + [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByTopologyObjectAndServiceName +``` +New-AzDeploymentManagerServiceUnit [-ResourceGroupName] [-ServiceName] [-Name] + -Location -TargetResourceGroup -DeploymentMode [-ParametersUri ] + [-TemplateUri ] [-TemplateArtifactSourceRelativePath ] + [-ParametersArtifactSourceRelativePath ] [-Tag ] + [-ServiceTopologyObject] [-AsJob] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByTopologyResourceAndServiceName +``` +New-AzDeploymentManagerServiceUnit [-ResourceGroupName] [-ServiceName] [-Name] + -Location -TargetResourceGroup -DeploymentMode [-ParametersUri ] + [-TemplateUri ] [-TemplateArtifactSourceRelativePath ] + [-ParametersArtifactSourceRelativePath ] [-Tag ] [-ServiceTopologyResourceId] + [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByServiceObject +``` +New-AzDeploymentManagerServiceUnit [-ResourceGroupName] [-Name] -Location + -TargetResourceGroup -DeploymentMode [-ParametersUri ] [-TemplateUri ] + [-TemplateArtifactSourceRelativePath ] [-ParametersArtifactSourceRelativePath ] + [-Tag ] [-ServiceObject] [-AsJob] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByServiceResourceId +``` +New-AzDeploymentManagerServiceUnit [-ResourceGroupName] [-Name] -Location + -TargetResourceGroup -DeploymentMode [-ParametersUri ] [-TemplateUri ] + [-TemplateArtifactSourceRelativePath ] [-ParametersArtifactSourceRelativePath ] + [-Tag ] [-ServiceResourceId] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +The **New-AzDeploymentManagerServiceUnit** cmdlet creates a service under a service in a service topology, and returns an object that represents that service unit. +Specify the service unit by its name, service name, service topology it is in and the resource group name. + +The cmdlet returns a ServiceUnit object. You can modify this object locally, and then apply changes to the service by using the Set-AzDeploymentManagerService cmdlet. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> New-AzDeploymentManagerServiceUnit -ResourceGroupName ContosoResourceGroup -ServiceTopologyName ContosoServiceTopology -ServiceName ContosoService2 -Name ContosoService2Storage -Location "Central US" -TargetResourceGroup service2ResourceGroup -DeploymentMode Incremental -TemplateArtifactSourceRelativePath "Templates/Service2.Storage.json" -ParametersArtifactSourceRelativePath "Parameters/Service2Storage.Parameters.json" +``` + +This cmdlet creates a new service unit with name ContosoService2Storage in the ContosoResourceGroup under the service ContosoService2 in topology ContosoServiceTopology, in the location Central US. The Template and parameters files are defined as relative paths into the artifact source location referenced in the Service Topology ContosoServiceTopology. The resources defined in this template are to be deployed into the target resource group service2ResourceGroup with the deployment mode set to Incremental. + +### Example 2 +```powershell +PS C:\> New-AzDeploymentManagerServiceUnit -ResourceGroupName ContosoResourceGroup -ServiceTopologyName ContosoServiceTopology1 -ServiceName ContosoService2 -Name ContosoService2Storage -Location "Central US" -TargetResourceGroup service2ResourceGroup -DeploymentMode Complete -TemplateUri "https://ContosoStorage.blob.core.windows.net/ContosoArtifacts/Templates/Service2.Storage.json?sasParameters" -ParametersUri "https://ContosoStorage.blob.core.windows.net/ContosoArtifacts/Parameters/Service2Storage.Parameters.json?sasParameters" +``` + +This cmdlet creates a new service unit with name ContosoService2Storage in the ContosoResourceGroup under the service ContosoService2 in topology ContosoServiceTopology, in the location Central US. The Template and parameters references are provided as SAS Uri's as artifact source ResourceId was not provided in the Service Topology ContosoServiceTopology1. The resources defined in this template are to be deployed into the target resource group service2ResourceGroup with the deployment mode set to Complete. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DeploymentMode +The deployment mode to use when deploying the resources in the service unit. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: +Accepted values: Incremental, Complete + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The location of the service unit resource. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the service unit. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ParametersArtifactSourceRelativePath +The path to the parameters file relative to the artifact source. +Requires ArtifactSource to be referenced in ServiceTopology. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ParametersUri +The SAS Uri to the parameters file. +If ArtifactSourceId was referenced in the ServiceTopology, specify relative path using ParametersArtifactSourceRelativePath. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceName +The name of the service this service unit is a part of. + +```yaml +Type: System.String +Parameter Sets: ByTopologyAndServiceNames, ByTopologyObjectAndServiceName, ByTopologyResourceAndServiceName +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceObject +The service object in which the service unit should be created. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceResource +Parameter Sets: ByServiceObject +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceResourceId +The service resource identifier in which the service unit should be created. + +```yaml +Type: System.String +Parameter Sets: ByServiceResourceId +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyName +The name of the serivce topology this service unit is a part of. + +```yaml +Type: System.String +Parameter Sets: ByTopologyAndServiceNames +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyObject +The service topology object in which the service unit should be created. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceTopologyResource +Parameter Sets: ByTopologyObjectAndServiceName +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyResourceId +The service topology resource identifier in which the service unit should be created. + +```yaml +Type: System.String +Parameter Sets: ByTopologyResourceAndServiceName +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +A hash table which represents resource tags. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -TargetResourceGroup +Determines the location where resources under the service unit would be deployed to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TemplateArtifactSourceRelativePath +The path to the template file relative to the artifact source. +Requires ArtifactSource to be referenced in ServiceTopology. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TemplateUri +The SAS Uri to the template file. +If ArtifactSourceId was referenced in the ServiceTopology, specify relative path using TemplateArtifactSourceRelativePath. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Collections.Hashtable + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceUnitResource + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/New-AzDeploymentManagerStep.md b/src/DeploymentManager/DeploymentManager/help/New-AzDeploymentManagerStep.md new file mode 100644 index 000000000000..62d208ab966f --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/New-AzDeploymentManagerStep.md @@ -0,0 +1,172 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/new-azdeploymentmanagerstep +schema: 2.0.0 +--- + +# New-AzDeploymentManagerStep + +## SYNOPSIS +Creates a step. + +## SYNTAX + +``` +New-AzDeploymentManagerStep -ResourceGroupName -Name -Location -Duration + [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **New-AzDeploymentManagerStep** cmdlet creates a deployment step that can be referenced in rollouts. +Specify the *Name*, *ResourceGroupName* and required properties. + +You can modify the returned object locally and then apply the changes to the step by using the Set-AzDeploymentManagerStep cmdlet. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> New-AzDeploymentManagerStep -ResourceGroupName ContosoResourceGroup -Name ContosoService1WaitStep -Location "Central US" -Duration PT20M +``` + +Creates a step in the ContosoResourceGroup with the name ContosoService1WaitStep with Central US as the location of the resource. The Duration property provides the duration the rollout will wait before running the next step. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Duration +The duration to wait in ISO 8601 format. +E.g.: PT30M, PT1H + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The location of the resource. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the step. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +A hash table which represents resource tags. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Collections.Hashtable + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSStepResource + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerArtifactSource.md b/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerArtifactSource.md new file mode 100644 index 000000000000..5bedfecbf29c --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerArtifactSource.md @@ -0,0 +1,199 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/remove-azdeploymentmanagerartifactsource +schema: 2.0.0 +--- + +# Remove-AzDeploymentManagerArtifactSource + +## SYNOPSIS +Deletes the specified artifact source. + +## SYNTAX + +### Interactive (Default) +``` +Remove-AzDeploymentManagerArtifactSource [-ResourceGroupName] [-Name] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ResourceId +``` +Remove-AzDeploymentManagerArtifactSource [-ResourceId] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### InputObject +``` +Remove-AzDeploymentManagerArtifactSource [-InputObject] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzDeploymentManagerArtifactSource** cmdlet deletes an artifact source +Specify the artifact source by its name and resource group name. Alternately, you can provide the ArtifactSource object or the ResourceId. + +## EXAMPLES + +### Example 1: Delete an artifact source +### Example 1 +```powershell +PS C:\> Remove-AzDeploymentManagerArtifactSource -ResourceGroupName "ContosoResourceGroup" -Name "ContosoArtifactSource" +``` + +This command deletes an artifact source named ContosoArtifactSource in ContosoResourceGroup. + +### Example 2: Delete an artifact source using the resource identifier +```powershell +PS C:\> Remove-AzDeploymentManagerArtifactSource -ResourceId "/subscriptions/subscriptionId/resourcegroups/ContosoResourceGroup/providers/Microsoft.DeploymentManager/artifactSources/ContosoArtifactSource" +``` + +This command deletes an artifact source named ContosoArtifactSource in ContosoResourceGroup. + +### Example 3: Delete an artifact source using an object +```powershell +PS C:\> Remove-AzDeploymentManagerArtifactSource -InputObject $artifactSourceObject +``` + +This command deletes an artifact source whose name and ResourceGroup match the Name and ResourceGroupName properties of the $artifactSourceObject, respectively. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The artifact source to be removed. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSArtifactSource +Parameter Sets: InputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the artifact source. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +{{Fill PassThru Description}} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource identifier. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSArtifactSource + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerRollout.md b/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerRollout.md new file mode 100644 index 000000000000..339d803d442b --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerRollout.md @@ -0,0 +1,198 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/remove-azdeploymentmanagerrollout +schema: 2.0.0 +--- + +# Remove-AzDeploymentManagerRollout + +## SYNOPSIS +Deletes the rollout. + +## SYNTAX + +### Interactive (Default) +``` +Remove-AzDeploymentManagerRollout [-ResourceGroupName] [-Name] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ResourceId +``` +Remove-AzDeploymentManagerRollout [-ResourceId] [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### InputObject +``` +Remove-AzDeploymentManagerRollout [-InputObject] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzDeploymentManagerRollout** cmdlet deletes a rollout in a terminal state. +Specify the rollout by its name and resource group name. Alternately, you can provide the Rollout object or the ResourceId. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Remove-AzDeploymentManagerRollout -ResourceGroupName ContosoResourceGroup -Name ContosoRollout +``` + +This command deletes a rollout named ContosoRollout in the ContosoResourceGroup. + +### Example 2: Delete a rollout using the resource identifier +```powershell +PS C:\> Remove-AzDeploymentManagerRollout -ResourceId "/subscriptions/subscriptionId/resourcegroups/ContosoResourceGroup/providers/Microsoft.DeploymentManager/rollouts/ContosoRollout" +``` + +This command deletes a rollout named ContosoRollout in the ContosoResourceGroup. + +### Example 3: Delete a rollout using the rollout object. +```powershell +PS C:\> Remove-AzDeploymentManagerRollout -InputObject $rolloutObject +``` + +This command deletes a rollout whose name and ResourceGroup match the Name and ResourceGroupName properties of the $rolloutObject, respectively. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The resource to be removed. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSRollout +Parameter Sets: InputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the rollout. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +{{Fill PassThru Description}} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource identifier. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSRollout + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerService.md b/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerService.md new file mode 100644 index 000000000000..1bd74193281c --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerService.md @@ -0,0 +1,256 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/remove-azdeploymentmanagerservice +schema: 2.0.0 +--- + +# Remove-AzDeploymentManagerService + +## SYNOPSIS +Deletes the service.. All service units created under a service need to be deleted before deleting the service. + +## SYNTAX + +### Interactive (Default) +``` +Remove-AzDeploymentManagerService [-ResourceGroupName] [-ServiceTopologyName] + [-Name] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByServiceTopologyObject +``` +Remove-AzDeploymentManagerService [-Name] [-ServiceTopologyObject] + [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByServiceTopologyResourceId +``` +Remove-AzDeploymentManagerService [-Name] [-ServiceTopologyResourceId] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ResourceId +``` +Remove-AzDeploymentManagerService [-ResourceId] [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### InputObject +``` +Remove-AzDeploymentManagerService [-InputObject] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzDeploymentManagerService** cmdlet deletes a service under a service topology. +Specify the service by its name, service topology it is in and the resource group name. Alternately, you can provide the Service object or the ResourceId. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Remove-AzDeploymentManagerService -ResourceGroupName ContosoResourceGroup -ServiceTopologyName ContosoServiceTopology -Name ContosoService1 +``` + +This command deletes a service named ContosoService1 in a service topology named ContosoServiceTopology in the ContosoResourceGroup. + +### Example 2: Delete a service using the resource identifier. +```powershell +PS C:\> Remove-AzDeploymentManagerService -ResourceId "/subscriptions/subscriptionId/resourcegroups/ContosoResourceGroup/providers/Microsoft.DeploymentManager/serviceTopologies/ContosoServiceTopology/services/ContosoService1" +``` + +This command deletes a service named ContosoService1 in a service topology named ContosoServiceTopology in the ContosoResourceGroup. + +### Example 3: Delete a service using the service object. +```powershell +PS C:\> Remove-AzDeploymentManagerService -InputObject $serviceObject +``` + +This command deletes a service whose name, service topology name and ResourceGroup match the Name, ServiceTopologyName and ResourceGroupName properties of the $serviceObject, respectively. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Service object. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceResource +Parameter Sets: InputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the service. + +```yaml +Type: System.String +Parameter Sets: Interactive, ByServiceTopologyObject, ByServiceTopologyResourceId +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +{{Fill PassThru Description}} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource identifier. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ServiceTopologyName +The name of the service topology. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyObject +The service topology object in which the service should be created. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceTopologyResource +Parameter Sets: ByServiceTopologyObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyResourceId +The service topology resource identifier in which the service should be created. + +```yaml +Type: System.String +Parameter Sets: ByServiceTopologyResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceResource + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerServiceTopology.md b/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerServiceTopology.md new file mode 100644 index 000000000000..2f322dac0261 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerServiceTopology.md @@ -0,0 +1,199 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/remove-azdeploymentmanagerservicetopology +schema: 2.0.0 +--- + +# Remove-AzDeploymentManagerServiceTopology + +## SYNOPSIS +Deletes the service topology. All services created under a service topology need to be deleted before deleting the service topology. + +## SYNTAX + +### Interactive (Default) +``` +Remove-AzDeploymentManagerServiceTopology [-ResourceGroupName] [-Name] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ResourceId +``` +Remove-AzDeploymentManagerServiceTopology [-ResourceId] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### InputObject +``` +Remove-AzDeploymentManagerServiceTopology [-InputObject] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzDeploymentManagerServiceTopology** cmdlet deletes a service topology. + +Specify the service topology by its name and the resource group name. Alternately, you can provide the ServiceTopology object or the ResourceId. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Remove-AzDeploymentManagerServiceTopology -ResourceGroupName ContosoResourceGroup -Name ContosoServiceTopology +``` + +This command deletes a service topology named ContosoServiceTopology in the ContosoResourceGroup. + +### Example 2: Delete a service topology using the resource identifier. +```powershell +PS C:\> Remove-AzDeploymentManagerServiceTopology -ResourceId "/subscriptions/subscriptionId/resourcegroups/ContosoResourceGroup/providers/Microsoft.DeploymentManager/serviceTopologies/ContosoServiceTopology" +``` + +This command deletes a service topology named ContosoServiceTopology in the ContosoResourceGroup. + +### Example 3: Delete a service topology using the service topology object. +```powershell +PS C:\> Remove-AzDeploymentManagerService -InputObject $serviceTopologyObject +``` + +This command deletes a service topology whose name and ResourceGroup match the Name and ResourceGroupName properties of the $serviceTopologyObject, respectively. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The resource to be removed. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceTopologyResource +Parameter Sets: InputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the service topology. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +{{Fill PassThru Description}} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource identifier. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceTopologyResource + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerServiceUnit.md b/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerServiceUnit.md new file mode 100644 index 000000000000..befb235bcc42 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerServiceUnit.md @@ -0,0 +1,316 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/remove-azdeploymentmanagerserviceunit +schema: 2.0.0 +--- + +# Remove-AzDeploymentManagerServiceUnit + +## SYNOPSIS +Deletes the service unit. + +## SYNTAX + +### Interactive (Default) +``` +Remove-AzDeploymentManagerServiceUnit [-ResourceGroupName] [-ServiceTopologyName] + [-ServiceName] [-Name] [-PassThru] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByTopologyObjectAndServiceName +``` +Remove-AzDeploymentManagerServiceUnit [-ServiceName] [-Name] + [-ServiceTopologyObject] [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByTopologyResourceAndServiceName +``` +Remove-AzDeploymentManagerServiceUnit [-ServiceName] [-Name] + [-ServiceTopologyResourceId] [-PassThru] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByServiceObject +``` +Remove-AzDeploymentManagerServiceUnit [-Name] [-ServiceObject] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByServiceResourceId +``` +Remove-AzDeploymentManagerServiceUnit [-Name] [-ServiceResourceId] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ResourceId +``` +Remove-AzDeploymentManagerServiceUnit [-ResourceId] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### InputObject +``` +Remove-AzDeploymentManagerServiceUnit [-InputObject] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzDeploymentManagerServiceUnit** cmdlet deletes a service unit in a service. + +Specify the service unit by its name, the service under which it was defined, the service topology name and the resource group name. Alternately, you can provide the ServiceUnit object or the ResourceId. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Remove-AzDeploymentManagerServiceUnit -ResourceGroupName ContosoResourceGroup -ServiceTopologyName ContosoServiceTopology -ServiceName ContosoService1 -Name ContosoService1Storage +``` + +This command deletes a service unit named ContosoService1Storage under a service ContosoService1 in a service topology named ContosoServiceTopology in the ContosoResourceGroup. + +### Example 2: Delete a service unit using the resource identifier. +```powershell +PS C:\> Remove-AzDeploymentManagerServiceUnit -ResourceId "/subscriptions/subscriptionId/resourcegroups/ContosoResourceGroup/providers/Microsoft.DeploymentManager/serviceTopologies/ContosoServiceTopology/services/ContosoService1/serviceUnits/ContosoService1Storage" +``` + +This command gets a service unit named ContosoService1Storage under a service ContosoService1 in a service topology named ContosoServiceTopology in the ContosoResourceGroup. + +### Example 3: Delete a service unit using the service unit object. +```powershell +PS C:\> Remove-AzDeploymentManagerServiceUnit -InputObject $serviceUnitObject +``` + +This command deletes a service unit whose name, service name, service topology name and ResourceGroup match the Name, ServiceName, ServiceTopologyName and ResourceGroupName properties of the $serviceUnitObject, respectively. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Service unit resource object. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceUnitResource +Parameter Sets: InputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the service unit. + +```yaml +Type: System.String +Parameter Sets: Interactive, ByTopologyObjectAndServiceName, ByTopologyResourceAndServiceName, ByServiceObject, ByServiceResourceId +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +{{Fill PassThru Description}} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource identifier. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ServiceName +The name of the service the service unit is part of. + +```yaml +Type: System.String +Parameter Sets: Interactive, ByTopologyObjectAndServiceName, ByTopologyResourceAndServiceName +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceObject +The service object in which the service unit should be created. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceResource +Parameter Sets: ByServiceObject +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceResourceId +The service resource identifier in which the service unit should be created. + +```yaml +Type: System.String +Parameter Sets: ByServiceResourceId +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyName +The name of the service topology the service unit is part of. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyObject +The service topology object in which the service unit should be created. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceTopologyResource +Parameter Sets: ByTopologyObjectAndServiceName +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceTopologyResourceId +The service topology resource identifier in which the service unit should be created. + +```yaml +Type: System.String +Parameter Sets: ByTopologyResourceAndServiceName +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceUnitResource + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerStep.md b/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerStep.md new file mode 100644 index 000000000000..162653fb843b --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Remove-AzDeploymentManagerStep.md @@ -0,0 +1,199 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/remove-azdeploymentmanagerstep +schema: 2.0.0 +--- + +# Remove-AzDeploymentManagerStep + +## SYNOPSIS +Deletes the step. + +## SYNTAX + +### Interactive (Default) +``` +Remove-AzDeploymentManagerStep [-ResourceGroupName] [-Name] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ResourceId +``` +Remove-AzDeploymentManagerStep [-ResourceId] [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### InputObject +``` +Remove-AzDeploymentManagerStep [-InputObject] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzDeploymentManagerStep** cmdlet deletes a step. +Specify the step by its name and the resource group name. Alternately, you can provide the Step object or the ResourceId. + +## EXAMPLES + +### Example 1: Remove a step +```powershell +PS C:\> Remove-AzDeploymentManagerStep -ResourceGroupName ContosoResourceGroup -Name ContosoService1WaitStep +``` + +This command deletes a step named ContosoService1WaitStep in ContosoResourceGroup. + +### Example 2: Remove a step using the resource identifier +```powershell +PS C:\> Remove-AzDeploymentManagerStep -ResourceId "/subscriptions/subscriptionId/resourcegroups/ContosoResourceGroup/providers/Microsoft.DeploymentManager/steps/ContosoService1WaitStep" +``` + +This command deletes a step named ContosoService1WaitStep in ContosoResourceGroup. + +### Example 3: Remove a step using an object returned by New-AzDeploymentManagerStep +### Example 1 +```powershell +PS C:\> Remove-AzDeploymentManagerStep -InputObject $stepObject +``` + + This command deletes a step whose name and ResourceGroup match the Name and ResourceGroupName properties of the $stepObject, respectively. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The step to be removed. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSStepResource +Parameter Sets: InputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the step. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +{{Fill PassThru Description}} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource identifier. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSStepResource + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Restart-AzDeploymentManagerRollout.md b/src/DeploymentManager/DeploymentManager/help/Restart-AzDeploymentManagerRollout.md new file mode 100644 index 000000000000..2939bbe754b4 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Restart-AzDeploymentManagerRollout.md @@ -0,0 +1,199 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/restart-azdeploymentmanagerrollout +schema: 2.0.0 +--- + +# Restart-AzDeploymentManagerRollout + +## SYNOPSIS +Restarts a failed rollout. + +## SYNTAX + +### Interactive (Default) +``` +Restart-AzDeploymentManagerRollout [-ResourceGroupName] [-Name] [-SkipSucceeded] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ResourceId +``` +Restart-AzDeploymentManagerRollout [-ResourceId] [-SkipSucceeded] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### InputObject +``` +Restart-AzDeploymentManagerRollout [-InputObject] [-SkipSucceeded] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Restart-AzDeploymentManagerRollout** cmdlet restarts a failed rollout, and returns an object that represents that rollout with all the detailed information on the progress of the rollout. +Specify the rollout by its name and resource group name. Alternately, you can provide the Rollout object or the ResourceId. +Optional parameter SkipSucceeded allows you to skip all the succeeded steps in the previous run of the rollout. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Restart-AzDeploymentManagerRollout -ResourceGroupName ContosoResourceGroup -Name ContosoRollout -SkipSucceeded +``` + +This command restarts a rollout named ContosoRollout in the ContosoResourceGroup. The SkipSucceeded flag indicates that all the steps that already ran successfully should be skipped and the rollout should continue execution from where it last failed. + +### Example 2: Restart a rollout using the resource identifier +```powershell +PS C:\> Restart-AzDeploymentManagerRollout -ResourceId "/subscriptions/subscriptionId/resourcegroups/ContosoResourceGroup/providers/Microsoft.DeploymentManager/rollouts/ContosoRollout" +``` + +This command restarts a rollout named ContosoRollout in the ContosoResourceGroup. + +### Example 3: Restart a rollout using the rollout object. +```powershell +PS C:\> Get-AzDeploymentManagerRollout -InputObject $rolloutObject +``` + +This command restarts a rollout whose name and ResourceGroup match the Name and ResourceGroupName properties of the $rolloutObject, respectively. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The resource to be removed. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSRollout +Parameter Sets: InputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the rollout. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource identifier. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SkipSucceeded +Skip steps that succeeded in the previous run of the rollout. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSRollout + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSRollout + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Set-AzDeploymentManagerArtifactSource.md b/src/DeploymentManager/DeploymentManager/help/Set-AzDeploymentManagerArtifactSource.md new file mode 100644 index 000000000000..f2c056fef94b --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Set-AzDeploymentManagerArtifactSource.md @@ -0,0 +1,110 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/set-azdeploymentmanagerartifactsource +schema: 2.0.0 +--- + +# Set-AzDeploymentManagerArtifactSource + +## SYNOPSIS +Updates the artifacts source. + +## SYNTAX + +``` +Set-AzDeploymentManagerArtifactSource [-InputObject] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-AzDeploymentManagerArtifactSource** cmdlet updates an artifact source with the specified artifact source object. +The cmdlet returns the updated ArtifactSource object. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Get-AzDeploymentManagerArtifactSource -InputObject $artifactSourceObject +``` + +This command updates an artifact source whose name and ResourceGroup match the Name and ResourceGroupName properties of the $artifactSourceObject, respectively. +The artifact source would be updated to the properties set in the $artifactSourceObject. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The artifact source object. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSArtifactSource +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSArtifactSource + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSArtifactSource + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Set-AzDeploymentManagerService.md b/src/DeploymentManager/DeploymentManager/help/Set-AzDeploymentManagerService.md new file mode 100644 index 000000000000..4387df249df8 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Set-AzDeploymentManagerService.md @@ -0,0 +1,110 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/set-azdeploymentmanagerservice +schema: 2.0.0 +--- + +# Set-AzDeploymentManagerService + +## SYNOPSIS +Updates the service. + +## SYNTAX + +``` +Set-AzDeploymentManagerService [-InputObject] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-AzDeploymentManagerService** cmdlet updates a service with the specified service object. +The cmdlet returns the updated service object. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Set-AzDeploymentManagerService -InputObject $serviceObject +``` + +This command updates a service whose name, service topology name and ResourceGroup match the Name, ServiceTopologyName and ResourceGroupName properties of the $serviceObject, respectively. +The service would be updated to the properties set in the $serviceObject. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The service object. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceResource +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceResource + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceResource + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Set-AzDeploymentManagerServiceTopology.md b/src/DeploymentManager/DeploymentManager/help/Set-AzDeploymentManagerServiceTopology.md new file mode 100644 index 000000000000..92f6d341c2bc --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Set-AzDeploymentManagerServiceTopology.md @@ -0,0 +1,110 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/set-azdeploymentmanagerservicetopology +schema: 2.0.0 +--- + +# Set-AzDeploymentManagerServiceTopology + +## SYNOPSIS +Updates the service topology. + +## SYNTAX + +``` +Set-AzDeploymentManagerServiceTopology [-InputObject] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-AzDeploymentManagerServiceTopology** cmdlet updates a service topology with the specified service topology object. +The cmdlet returns the updated service topology object. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Set-AzDeploymentManagerService -InputObject $serviceTopologyObject +``` + +This command updates a service topology whose name and ResourceGroup match the Name and ResourceGroupName properties of the $serviceTopologyObject, respectively. +The command returns the updated service topology object. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The service topology object. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceTopologyResource +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceTopologyResource + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceTopologyResource + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Set-AzDeploymentManagerServiceUnit.md b/src/DeploymentManager/DeploymentManager/help/Set-AzDeploymentManagerServiceUnit.md new file mode 100644 index 000000000000..d88c4719b950 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Set-AzDeploymentManagerServiceUnit.md @@ -0,0 +1,110 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/set-azdeploymentmanagerserviceunit +schema: 2.0.0 +--- + +# Set-AzDeploymentManagerServiceUnit + +## SYNOPSIS +Updates the service unit. + +## SYNTAX + +``` +Set-AzDeploymentManagerServiceUnit [-InputObject] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-AzDeploymentManagerServiceUnit** cmdlet updates a service unit with the specified service unit object. +The cmdlet returns the updated service unit object. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Set-AzDeploymentManagerServiceUnit -InputObject $serviceUnitObject +``` + +This command updates a service unit whose name, service name, service topology name and ResourceGroup match the Name, ServiceName, ServiceTopologyName and ResourceGroupName properties of the $serviceUnitObject, respectively. +The command returns the updated service unit object. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The service unit object. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceUnitResource +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceUnitResource + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSServiceUnitResource + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Set-AzDeploymentManagerStep.md b/src/DeploymentManager/DeploymentManager/help/Set-AzDeploymentManagerStep.md new file mode 100644 index 000000000000..14ad911eb6b7 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Set-AzDeploymentManagerStep.md @@ -0,0 +1,110 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/set-azdeploymentmanagerstep +schema: 2.0.0 +--- + +# Set-AzDeploymentManagerStep + +## SYNOPSIS +Updates the step. + +## SYNTAX + +``` +Set-AzDeploymentManagerStep [-InputObject] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-AzDeploymentManagerStep** cmdlet updates a step with the specified step object. +The cmdlet returns the updated step object. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Set-AzDeploymentManagerStep -InputObject $stepObject +``` + +This command updates a step whose name and ResourceGroup match the Name and ResourceGroupName properties of the $stepObject, respectively. +The step would be updated to the properties set in the $stepObject. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The step object. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSStepResource +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSStepResource + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSStepResource + +## NOTES + +## RELATED LINKS diff --git a/src/DeploymentManager/DeploymentManager/help/Stop-AzDeploymentManagerRollout.md b/src/DeploymentManager/DeploymentManager/help/Stop-AzDeploymentManagerRollout.md new file mode 100644 index 000000000000..719d535f3c63 --- /dev/null +++ b/src/DeploymentManager/DeploymentManager/help/Stop-AzDeploymentManagerRollout.md @@ -0,0 +1,200 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll-Help.xml +Module Name: Az.DeploymentManager +online version: https://docs.microsoft.com/en-us/powershell/module/az.deploymentmanager/stop-azdeploymentmanagerrollout +schema: 2.0.0 +--- + +# Stop-AzDeploymentManagerRollout + +## SYNOPSIS +Stops the rollout. + +## SYNTAX + +### Interactive (Default) +``` +Stop-AzDeploymentManagerRollout [-ResourceGroupName] [-Name] [-Force] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ResourceId +``` +Stop-AzDeploymentManagerRollout [-ResourceId] [-Force] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### InputObject +``` +Stop-AzDeploymentManagerRollout [-InputObject] [-Force] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Stop-AzDeploymentManagerRollout** cmdlet stops a rollout in progress and returns an object that represents the current state of the rollout. +Specify the rollout by its name and resource group name. Alternately, you can provide the Rollout object or the ResourceId. + +Note that once a rollout is stopped, it cannot be resumed or restarted. You can only create a new rollout. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Stop-AzDeploymentManagerRollout -ResourceGroupName ContosoResourceGroup -Name ContosoRollout -SkipSucceeded +``` + +This command stops a rollout named ContosoRollout in the ContosoResourceGroup. + +### Example 2: Stop a rollout using the resource identifier +```powershell +PS C:\> Restart-AzDeploymentManagerRollout -ResourceId "/subscriptions/subscriptionId/resourcegroups/ContosoResourceGroup/providers/Microsoft.DeploymentManager/rollouts/ContosoRollout" +``` + +This command stops a rollout named ContosoRollout in the ContosoResourceGroup. + +### Example 3: Stop a rollout using the rollout object. +```powershell +PS C:\> Get-AzDeploymentManagerRollout -InputObject $rolloutObject +``` + +This command stops a rollout whose name and ResourceGroup match the Name and ResourceGroupName properties of the $rolloutObject, respectively. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Do not ask for confirmation. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The rollout to be removed. + +```yaml +Type: Microsoft.Azure.Commands.DeploymentManager.Models.PSRollout +Parameter Sets: InputObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the rollout. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group. + +```yaml +Type: System.String +Parameter Sets: Interactive +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource identifier. + +```yaml +Type: System.String +Parameter Sets: ResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSRollout + +## OUTPUTS + +### Microsoft.Azure.Commands.DeploymentManager.Models.PSRollout + +## NOTES + +## RELATED LINKS diff --git a/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 b/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 index 4f32e64f776a..11d7d8dad635 100644 --- a/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 +++ b/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.DevSpaces.dll' diff --git a/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 b/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 index 9eac205f3f95..1920f49dae8e 100644 --- a/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 +++ b/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.DevTestLabs.dll' diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 b/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 index 7a9486d76ca9..38feb5d08d09 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.DeviceProvisioningServices.dll' diff --git a/src/Dns/Dns/Az.Dns.psd1 b/src/Dns/Dns/Az.Dns.psd1 index 0b8a9126b0ea..655d9e61cf75 100644 --- a/src/Dns/Dns/Az.Dns.psd1 +++ b/src/Dns/Dns/Az.Dns.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Dns.dll' diff --git a/src/EventGrid/EventGrid/Az.EventGrid.psd1 b/src/EventGrid/EventGrid/Az.EventGrid.psd1 index 1bb5945f53b3..c9e97b7e9c05 100644 --- a/src/EventGrid/EventGrid/Az.EventGrid.psd1 +++ b/src/EventGrid/EventGrid/Az.EventGrid.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.EventGrid.dll' diff --git a/src/EventHub/EventHub/Az.EventHub.psd1 b/src/EventHub/EventHub/Az.EventHub.psd1 index 47b2c7dcb245..21281c9aece0 100644 --- a/src/EventHub/EventHub/Az.EventHub.psd1 +++ b/src/EventHub/EventHub/Az.EventHub.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.EventHub.dll' diff --git a/src/FrontDoor/FrontDoor.Test/FrontDoor.Test.csproj b/src/FrontDoor/FrontDoor.Test/FrontDoor.Test.csproj index 0d05580ee076..5d2eff77f2a8 100644 --- a/src/FrontDoor/FrontDoor.Test/FrontDoor.Test.csproj +++ b/src/FrontDoor/FrontDoor.Test/FrontDoor.Test.csproj @@ -11,7 +11,7 @@ - + \ No newline at end of file diff --git a/src/FrontDoor/FrontDoor.Test/ScenarioTests/FrontDoorTests.cs b/src/FrontDoor/FrontDoor.Test/ScenarioTests/FrontDoorTests.cs index 7e7a41d39ab2..3aa010bdf61d 100644 --- a/src/FrontDoor/FrontDoor.Test/ScenarioTests/FrontDoorTests.cs +++ b/src/FrontDoor/FrontDoor.Test/ScenarioTests/FrontDoorTests.cs @@ -48,5 +48,12 @@ public void TestFrontDoorEndpointCustomDomainHTTPSFrontDoor() { TestController.NewInstance.RunPowerShellTest(_logger, "Test-FrontDoorEndpointCustomDomainHTTPS-FrontDoor"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestFrontDoorCrudRedirect() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-FrontDoorCrudRedirect"); + } } } diff --git a/src/FrontDoor/FrontDoor.Test/ScenarioTests/FrontDoorTests.ps1 b/src/FrontDoor/FrontDoor.Test/ScenarioTests/FrontDoorTests.ps1 index 835b51422843..767d4e147d0a 100644 --- a/src/FrontDoor/FrontDoor.Test/ScenarioTests/FrontDoorTests.ps1 +++ b/src/FrontDoor/FrontDoor.Test/ScenarioTests/FrontDoorTests.ps1 @@ -39,6 +39,7 @@ function Test-FrontDoorCrud Assert-AreEqual $healthProbeSetting1.Name $retrievedFrontDoor.HealthProbeSettings[0].Name Assert-AreEqual $backendpool1.Name $retrievedFrontDoor.BackendPools[0].Name Assert-AreEqual $frontendEndpoint1.Name $retrievedFrontDoor.FrontendEndpoints[0].Name + Assert-AreEqual $retrievedFrontDoor.RoutingRules[0].RouteConfiguration.GetType().Name "PSForwardingConfiguration" Assert-Tags $tags $retrievedFrontDoor.Tags $newTags = @{"tag1" = "value3"; "tag2" = "value4"} @@ -59,6 +60,70 @@ function Test-FrontDoorCrud Remove-AzResourceGroup -Name $ResourceGroupName -Force } +function Test-FrontDoorCrudRedirect +{ + $Name = getAssetName + $resourceGroup = TestSetup-CreateResourceGroup + $resourceGroupName = $resourceGroup.ResourceGroupName + $tags = @{"tag1" = "value1"; "tag2" = "value2"} + $hostName = "$Name.azurefd.net" + $customHost = "contoso2" + $customPath = "/test" + $routingrule1 = New-AzFrontDoorRoutingRuleObject -Name "routingrule1" -FrontDoorName $Name -ResourceGroupName $resourceGroupName -FrontendEndpointName "frontendEndpoint1" -CustomHost $customHost + $backend1 = New-AzFrontDoorBackendObject -Address "contoso1.azurewebsites.net" + $healthProbeSetting1 = New-AzFrontDoorHealthProbeSettingObject -Name "healthProbeSetting1" + $loadBalancingSetting1 = New-AzFrontDoorLoadBalancingSettingObject -Name "loadbalancingsetting1" + $frontendEndpoint1 = New-AzFrontDoorFrontendEndpointObject -Name "frontendendpoint1" -HostName $hostName + $backendpool1 = New-AzFrontDoorBackendPoolObject -Name "backendpool1" -FrontDoorName $Name -ResourceGroupName $resourceGroupName -Backend $backend1 -HealthProbeSettingsName "healthProbeSetting1" -LoadBalancingSettingsName "loadBalancingSetting1" + New-AzFrontDoor -Name $Name -ResourceGroupName $resourceGroupName -RoutingRule $routingrule1 -BackendPool $backendpool1 -FrontendEndpoint $frontendEndpoint1 -LoadBalancingSetting $loadBalancingSetting1 -HealthProbeSetting $healthProbeSetting1 -Tag $tags + + $retrievedFrontDoor = Get-AzFrontDoor -Name $Name -ResourceGroupName $resourceGroupName + Assert-NotNull $retrievedFrontDoor + Assert-AreEqual $Name $retrievedFrontDoor.Name + Assert-AreEqual $routingrule1.Name $retrievedFrontDoor.RoutingRules[0].Name + Assert-AreEqual $loadBalancingSetting1.Name $retrievedFrontDoor.LoadBalancingSettings[0].Name + Assert-AreEqual $healthProbeSetting1.Name $retrievedFrontDoor.HealthProbeSettings[0].Name + Assert-AreEqual $backendpool1.Name $retrievedFrontDoor.BackendPools[0].Name + Assert-AreEqual $frontendEndpoint1.Name $retrievedFrontDoor.FrontendEndpoints[0].Name + Assert-Tags $tags $retrievedFrontDoor.Tags + Assert-AreEqual $retrievedFrontDoor.RoutingRules[0].RouteConfiguration.GetType().Name "PSRedirectConfiguration" + Assert-AreEqual $retrievedFrontDoor.RoutingRules[0].RouteConfiguration.CustomHost $customHost + Assert-AreEqual $retrievedFrontDoor.EnforceCertificateNameCheck "Enabled" + + $routingrule1 = New-AzFrontDoorRoutingRuleObject -Name "routingrule1" -FrontDoorName $Name -ResourceGroupName $resourceGroupName -FrontendEndpointName "frontendEndpoint1" -CustomHost $customHost -CustomPath $customPath + $updatedFrontDoor = Set-AzFrontDoor -Name $Name -ResourceGroupName $resourceGroupName -RoutingRule $routingrule1 + Assert-NotNull $updatedFrontDoor + Assert-AreEqual $Name $updatedFrontDoor.Name + Assert-AreEqual $routingrule1.Name $updatedFrontDoor.RoutingRules[0].Name + Assert-AreEqual $loadBalancingSetting1.Name $updatedFrontDoor.LoadBalancingSettings[0].Name + Assert-AreEqual $healthProbeSetting1.Name $updatedFrontDoor.HealthProbeSettings[0].Name + Assert-AreEqual $backendpool1.Name $updatedFrontDoor.BackendPools[0].Name + Assert-AreEqual $frontendEndpoint1.Name $updatedFrontDoor.FrontendEndpoints[0].Name + Assert-AreEqual $updatedFrontDoor.RoutingRules[0].RouteConfiguration.GetType().Name "PSRedirectConfiguration" + Assert-AreEqual $updatedFrontDoor.RoutingRules[0].RouteConfiguration.CustomHost $customHost + Assert-AreEqual $updatedFrontDoor.RoutingRules[0].RouteConfiguration.CustomPath $customPath + Assert-AreEqual $updatedFrontDoor.EnforceCertificateNameCheck "Enabled" + + $updatedFrontDoor = Set-AzFrontDoor -Name $Name -ResourceGroupName $resourceGroupName -DisableCertificateNameCheck + Assert-NotNull $updatedFrontDoor + Assert-AreEqual $Name $updatedFrontDoor.Name + Assert-AreEqual $routingrule1.Name $updatedFrontDoor.RoutingRules[0].Name + Assert-AreEqual $loadBalancingSetting1.Name $updatedFrontDoor.LoadBalancingSettings[0].Name + Assert-AreEqual $healthProbeSetting1.Name $updatedFrontDoor.HealthProbeSettings[0].Name + Assert-AreEqual $backendpool1.Name $updatedFrontDoor.BackendPools[0].Name + Assert-AreEqual $frontendEndpoint1.Name $updatedFrontDoor.FrontendEndpoints[0].Name + Assert-AreEqual $updatedFrontDoor.RoutingRules[0].RouteConfiguration.GetType().Name "PSRedirectConfiguration" + Assert-AreEqual $updatedFrontDoor.RoutingRules[0].RouteConfiguration.CustomHost $customHost + Assert-AreEqual $updatedFrontDoor.RoutingRules[0].RouteConfiguration.CustomPath $customPath + Assert-AreEqual $updatedFrontDoor.EnforceCertificateNameCheck "Disabled" + + $removed = Remove-AzFrontDoor -Name $Name -ResourceGroupName $resourceGroupName -PassThru + Assert-True { $removed } + Assert-ThrowsContains { Get-AzFrontDoor -Name $Name -ResourceGroupName $resourceGroupName } "does not exist" + + Remove-AzResourceGroup -Name $ResourceGroupName -Force +} + <# .SYNOPSIS Front Door cycle with piping @@ -88,6 +153,7 @@ function Test-FrontDoorCrudWithPiping Assert-AreEqual $backendpool1.Name $updatedFrontDoor.BackendPools[0].Name Assert-AreEqual $frontendEndpoint1.Name $updatedFrontDoor.FrontendEndpoints[0].Name Assert-Tags $newTags $updatedFrontDoor.Tags + Assert-AreEqual $updatedFrontDoor.RoutingRules[0].RouteConfiguration.GetType().Name "PSForwardingConfiguration" $removed = Get-AzFrontDoor -Name $Name -ResourceGroupName $resourceGroupName | Remove-AzFrontDoor -PassThru Assert-True { $removed } diff --git a/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 b/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 index 84ad4fd9c9c9..ced03f9526c0 100644 --- a/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 +++ b/src/FrontDoor/FrontDoor.Test/ScenarioTests/WebApplicationFireWallPolicyTests.ps1 @@ -20,35 +20,38 @@ function Test-PolicyCrud { $Name = getAssetName $resourceGroup = TestSetup-CreateResourceGroup - $resourceGroupName = $resourceGroup.ResourceGroupName - $tags = @{"tag1" = "value1"; "tag2" = "value2"} - $matchCondition1 = New-AzFrontDoorMatchConditionObject -MatchVariable RequestHeader -OperatorProperty Contains -Selector "UserAgent" -MatchValue "Windows" - $customRule1 = New-AzFrontDoorCustomRuleObject -Name "Rule1" -RuleType MatchRule -MatchCondition $matchCondition1 -Action Block -Priority 2 - $override1 = New-AzFrontDoorRuleGroupOverrideObject -Override SqlInjection -Action Block - $managedRule1 = New-AzFrontDoorManagedRuleObject -Priority 1 -Version 0 -RuleGroupOverride $override1 - New-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName -Customrule $customRule1 -ManagedRule $managedRule1 -EnabledState Enabled -Mode Prevention + $resourceGroupName = $resourceGroup.ResourceGroupName + $tags = @{"tag1" = "value1"; "tag2" = "value2"} + $matchCondition1 = New-AzFrontDoorMatchConditionObject -MatchVariable RequestHeader -OperatorProperty Contains -Selector "UserAgent" -MatchValue "Windows" + $customRule1 = New-AzFrontDoorCustomRuleObject -Name "Rule1" -RuleType MatchRule -MatchCondition $matchCondition1 -Action Block -Priority 2 + + $ruleOverride = New-AzFrontDoorManagedRuleOverrideObject -RuleId "942100" -Action Log + $override1 = New-AzFrontDoorRuleGroupOverrideObject -RuleGroupName SQLI -ManagedRuleOverride $ruleOverride + $managedRule1 = New-AzFrontDoorManagedRuleObject -Type DefaultRuleSet -Version "preview-0.1" -RuleGroupOverride $override1 + + New-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName -Customrule $customRule1 -ManagedRule $managedRule1 -EnabledState Enabled -Mode Prevention - $retrievedPolicy = Get-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName - Assert-NotNull $retrievedPolicy - Assert-AreEqual $Name $retrievedPolicy.Name - Assert-AreEqual $customRule1.Name $retrievedPolicy.CustomRules[0].Name - Assert-AreEqual $customRule1.RuleType $retrievedPolicy.CustomRules[0].RuleType - Assert-AreEqual $customRule1.Action $retrievedPolicy.CustomRules[0].Action - Assert-AreEqual $customRule1.Priority $retrievedPolicy.CustomRules[0].Priority - Assert-AreEqual $managedRule1.RuleGroupOverrides[0].Action $retrievedPolicy.ManagedRules[0].RuleGroupOverrides[0].Action + $retrievedPolicy = Get-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName + Assert-NotNull $retrievedPolicy + Assert-AreEqual $Name $retrievedPolicy.Name + Assert-AreEqual $customRule1.Name $retrievedPolicy.CustomRules[0].Name + Assert-AreEqual $customRule1.RuleType $retrievedPolicy.CustomRules[0].RuleType + Assert-AreEqual $customRule1.Action $retrievedPolicy.CustomRules[0].Action + Assert-AreEqual $customRule1.Priority $retrievedPolicy.CustomRules[0].Priority + Assert-AreEqual $managedRule1.RuleGroupOverrides[0].ManagedRuleOverrides[0].Action $retrievedPolicy.ManagedRules[0].RuleGroupOverrides[0].ManagedRuleOverrides[0].Action - $customRule2 = New-AzFrontDoorCustomRuleObject -Name "Rule2" -RuleType MatchRule -MatchCondition $matchCondition1 -Action Log -Priority 2 - $updatedPolicy = Set-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName -Customrule $customRule2 - Assert-NotNull $updatedPolicy - Assert-AreEqual $Name $updatedPolicy.Name - Assert-AreEqual $customRule2.Name $updatedPolicy.CustomRules[0].Name - Assert-AreEqual $customRule2.Action $updatedPolicy.CustomRules[0].Action - Assert-AreEqual $customRule2.Priority $updatedPolicy.CustomRules[0].Priority - Assert-AreEqual $managedRule1.RuleGroupOverrides[0].Action $updatedPolicy.ManagedRules[0].RuleGroupOverrides[0].Action + $customRule2 = New-AzFrontDoorCustomRuleObject -Name "Rule2" -RuleType MatchRule -MatchCondition $matchCondition1 -Action Log -Priority 2 + $updatedPolicy = Update-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName -Customrule $customRule2 + Assert-NotNull $updatedPolicy + Assert-AreEqual $Name $updatedPolicy.Name + Assert-AreEqual $customRule2.Name $updatedPolicy.CustomRules[0].Name + Assert-AreEqual $customRule2.Action $updatedPolicy.CustomRules[0].Action + Assert-AreEqual $customRule2.Priority $updatedPolicy.CustomRules[0].Priority + Assert-AreEqual $managedRule1.RuleGroupOverrides[0].ManagedRuleOverrides[0].Action $updatedPolicy.ManagedRules[0].RuleGroupOverrides[0].ManagedRuleOverrides[0].Action - $removed = Remove-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName -PassThru - Assert-True { $removed } - Assert-ThrowsContains { Get-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName } "does not exist." + $removed = Remove-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName -PassThru + Assert-True { $removed } + Assert-ThrowsContains { Get-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName } "does not exist." } <# @@ -59,25 +62,27 @@ function Test-PolicyCrudWithPiping { $Name = getAssetName $resourceGroup = TestSetup-CreateResourceGroup - $resourceGroupName = $resourceGroup.ResourceGroupName - $tag = @{"tag1" = "value1"; "tag2" = "value2"} - $matchCondition1 = New-AzFrontDoorMatchConditionObject -MatchVariable RequestHeader -OperatorProperty Contains -Selector "UserAgent" -MatchValue "Windows" - $customRule1 = New-AzFrontDoorCustomRuleObject -Name "Rule1" -RuleType MatchRule -MatchCondition $matchCondition1 -Action Block -Priority 2 - $override1 = New-AzFrontDoorRuleGroupOverrideObject -Override SqlInjection -Action Block - $managedRule1 = New-AzFrontDoorManagedRuleObject -Priority 1 -Version 0 -RuleGroupOverrid $override1 - New-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName -Customrule $customRule1 -ManagedRule $managedRule1 -EnabledState Enabled -Mode Prevention + $resourceGroupName = $resourceGroup.ResourceGroupName + $tag = @{"tag1" = "value1"; "tag2" = "value2"} + $matchCondition1 = New-AzFrontDoorMatchConditionObject -MatchVariable RequestHeader -OperatorProperty Contains -Selector "UserAgent" -MatchValue "Windows" + $customRule1 = New-AzFrontDoorCustomRuleObject -Name "Rule1" -RuleType MatchRule -MatchCondition $matchCondition1 -Action Block -Priority 2 + + $ruleOverride = New-AzFrontDoorManagedRuleOverrideObject -RuleId "942100" -Action Log + $override1 = New-AzFrontDoorRuleGroupOverrideObject -RuleGroupName SQLI -ManagedRuleOverride $ruleOverride + $managedRule1 = New-AzFrontDoorManagedRuleObject -Type DefaultRuleSet -Version "preview-0.1" -RuleGroupOverride $override1 + New-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName -Customrule $customRule1 -ManagedRule $managedRule1 -EnabledState Enabled -Mode Prevention - $customRule2 = New-AzFrontDoorCustomRuleObject -Name "Rule2" -RuleType MatchRule -MatchCondition $matchCondition1 -Action Log -Priority 2 - $updatedPolicy = Get-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName | Set-AzFrontDoorFireWallPolicy -Customrule $customRule2 - Assert-NotNull $updatedPolicy - Assert-AreEqual $Name $updatedPolicy.Name - Assert-AreEqual $customRule2.Name $updatedPolicy.CustomRules[0].Name - Assert-AreEqual $customRule2.Action $updatedPolicy.CustomRules[0].Action - Assert-AreEqual $customRule2.Priority $updatedPolicy.CustomRules[0].Priority - Assert-AreEqual $managedRule1.RuleGroupOverrides[0].Action $updatedPolicy.ManagedRules[0].RuleGroupOverrides[0].Action + $customRule2 = New-AzFrontDoorCustomRuleObject -Name "Rule2" -RuleType MatchRule -MatchCondition $matchCondition1 -Action Log -Priority 2 + $updatedPolicy = Get-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName | Update-AzFrontDoorFireWallPolicy -Customrule $customRule2 + Assert-NotNull $updatedPolicy + Assert-AreEqual $Name $updatedPolicy.Name + Assert-AreEqual $customRule2.Name $updatedPolicy.CustomRules[0].Name + Assert-AreEqual $customRule2.Action $updatedPolicy.CustomRules[0].Action + Assert-AreEqual $customRule2.Priority $updatedPolicy.CustomRules[0].Priority + Assert-AreEqual $managedRule1.RuleGroupOverrides[0].ManagedRuleOverrides[0].Action $updatedPolicy.ManagedRules[0].RuleGroupOverrides[0].ManagedRuleOverrides[0].Action - $removed = Get-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName | Remove-AzFrontDoorFireWallPolicy -PassThru - Assert-True { $removed } - Assert-ThrowsContains { Get-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName } "does not exist." + $removed = Get-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName | Remove-AzFrontDoorFireWallPolicy -PassThru + Assert-True { $removed } + Assert-ThrowsContains { Get-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName } "does not exist." } \ No newline at end of file diff --git a/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.FrontDoorTests/TestFrontDoorCrud.json b/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.FrontDoorTests/TestFrontDoorCrud.json index 439f8bf81cad..eff5f7d7a1dd 100644 --- a/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.FrontDoorTests/TestFrontDoorCrud.json +++ b/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.FrontDoorTests/TestFrontDoorCrud.json @@ -1,34 +1,27 @@ { "Entries": [ { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Byb3ZpZGVycy8/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Resources?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3988b00-dc6e-4251-bcf2-cd7255cfdc3c" + "265697b9-84d9-4c3b-a3dc-287da3032a14" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configurations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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\": \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/importImage\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/scheduleRun\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/listLogSasUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Korea South\",\r\n \"Korea 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 \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\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/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\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 \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\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 \"Korea South\",\r\n \"Korea 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 \"2018-03-31\",\r\n \"2017-08-31\",\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 \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-04-01\",\r\n \"2018-01-22\",\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 \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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 \"2018-04-01\",\r\n \"2018-01-22\",\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\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\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 \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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 \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n },\r\n {\r\n \"applicationId\": \"b503eb83-1222-4dcc-b116-b98ed5216e05\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\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 \"2018-05-01-preview\",\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\": \"components/query\",\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 \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\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 \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\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 \"2018-04-20\"\r\n ]\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 \"2018-05-01-preview\",\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\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"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 \"France Central\",\r\n \"West US\",\r\n \"Global\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\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 \"France Central\",\r\n \"West US\",\r\n \"Global\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\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 \"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 US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\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\": \"metricNamespaces\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"UK South 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"guestDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"guestDiagnosticSettingsAssociation\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North 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 \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"interfaceEndpoints\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\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 \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"publicIPPrefixes\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"locations/availableDelegations\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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 \"2018-04-01\",\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 \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"resourceType\": \"azureFirewalls\",\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 \"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 \"France Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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\": \"views\",\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-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\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 \"2018-06-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\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\": \"Compliances\",\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\": \"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\": \"discoveredSecuritySolutions\",\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/discoveredSecuritySolutions\",\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\": \"allowedConnections\",\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/allowedConnections\",\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\": \"topologies\",\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/topologies\",\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 \"North Europe\",\r\n \"West Europe\",\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 \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\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\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West 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/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West 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/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 \"resourceType\": \"InformationProtectionPolicies\",\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\": \"settings\",\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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/geoBackupPolicies\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/extendedAuditingSettings\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/interfaceEndpointProfiles\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/interfaceEndpointProfileOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/interfaceEndpointProfileAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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\": \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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/usages\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/instances\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"validate\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"sourceControls\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"availableStacks\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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/hostNameBindings\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"certificates\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-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\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"sites/metrics\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\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 \"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 \"South 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 \"France Central\"\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 \"2018-02-01\",\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 \"2018-02-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/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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/premieraddons\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\"\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 \"2018-02-01\",\r\n \"2017-08-01\",\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 \"2018-02-01\",\r\n \"2017-08-01\",\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 \"2018-02-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\": \"functions\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"deletedSites\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-07-01\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\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\": \"DomainServices/oucontainer\",\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 ]\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-03-01\",\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 \"2018-03-01\",\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 \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\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 \"2018-01-01\",\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 \"2018-01-01\",\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 \"2018-01-01\",\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 \"2018-01-01\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\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 \"2018-01-01-preview\",\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 \"2018-01-01-preview\",\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\": \"denyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-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 \"2018-05-01\",\r\n \"2018-03-01\",\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 \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\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 \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/checkNameAvailability\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\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 \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\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 \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"billingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingRoleDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingRoleAssignments\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingPermissions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listBillingAccountsWithCreateProjectPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/listProjectsWithCreateSubscriptionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/eligibleOffers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/paymentMethods\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoices\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/transactions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/transactions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-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 \"2018-03-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-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-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-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-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/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\": \"domainNames/serviceCertificates\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"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 \"France Central\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\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\": \"expressRouteCrossConnections/peerings\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\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\": \"storageAccounts/vmImages\",\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-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"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 \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\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 \"Central US EUAP\"\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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AggregatedCost\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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\": \"Charges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"credits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\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 \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"serviceAssociationLinks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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 \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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 \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateAddress\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\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 \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\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 US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\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 \"2018-06-01\",\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 \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getFeatureValue\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West Europe\"\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 \"West Europe\"\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/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DBforMariaDB\",\r\n \"namespace\": \"Microsoft.DBforMariaDB\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"managedByRoleDefinitionId\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"operationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"locations\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"locations/deleteVirtualNetworkOrSubnets\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-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 \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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\": \"clusters\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\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 \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\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\": \"namespaces/eventhubs/authorizationrules\",\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\": \"namespaces/eventhubs/consumergroups\",\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\": \"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 \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.HanaOnAzure\",\r\n \"namespace\": \"Microsoft.HanaOnAzure\",\r\n \"authorization\": {\r\n \"applicationId\": \"cc5476ec-3074-44d1-8461-711f5d9b0e39\",\r\n \"roleDefinitionId\": \"4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hanaInstances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\",\r\n \"2017-06-15-preview\",\r\n \"2016-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\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 \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\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 \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.IoTSpaces\",\r\n \"namespace\": \"Microsoft.IoTSpaces\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\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 \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/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 \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\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 \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\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, SystemAssignedResourceIdentity\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\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 \"2018-07-01-preview\",\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 \"2018-07-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\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\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US EUAP\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\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 \"Central US EUAP\"\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 \"Central US EUAP\"\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 \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\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 \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\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 \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\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\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\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\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\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\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\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\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/computes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/computeOperationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest 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 \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\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 \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"12fb057d-b751-47cd-857c-f2934bb677b4\",\r\n \"roleDefinitionId\": \"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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 ],\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 \"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 ],\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 \"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 ],\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 \"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 ],\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"asyncOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"remediations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyTrackedResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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-12-01-preview\",\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-12-01-preview\",\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 \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\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-12-01-preview\",\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 \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\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 \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\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 \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\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-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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\": \"namespaces/authorizationrules\",\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\": \"namespaces/queues\",\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\": \"namespaces/queues/authorizationrules\",\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\": \"namespaces/topics\",\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\": \"namespaces/topics/authorizationrules\",\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\": \"namespaces/topics/subscriptions\",\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\": \"namespaces/topics/subscriptions/rules\",\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\": \"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 \"resourceType\": \"namespaces/eventgridfilters\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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\": \"clusters/applications\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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/environments\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d10de03d-5ba3-497a-90e6-7ff8c9736059\",\r\n \"roleDefinitionId\": \"BC13595A-E262-4621-929E-56FF90E6BF18\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-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 \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/networkOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/volumeOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/gatewayOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/secretOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-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 \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"managedByAuthorization\": {\r\n \"managedByResourceRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitRequests\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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, SystemAssignedResourceIdentity\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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\": \"operations\",\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 },\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"componentsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstancesSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notificationSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2368d027-f996-4edb-bf48-928f98f2ab8c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "469320" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -37,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "7d21fd77-75c4-4ec8-9fe7-4b6ff44e1342" + "1ccfafac-81f9-4908-bd92-74b0fe98c7e4" ], "x-ms-correlation-request-id": [ - "7d21fd77-75c4-4ec8-9fe7-4b6ff44e1342" + "1ccfafac-81f9-4908-bd92-74b0fe98c7e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T191256Z:7d21fd77-75c4-4ec8-9fe7-4b6ff44e1342" + "WESTCENTRALUS:20190403T222155Z:1ccfafac-81f9-4908-bd92-74b0fe98c7e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,50 +44,50 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:12:56 GMT" + "Wed, 03 Apr 2019 22:21:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7478" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzODU4Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], "x-ms-client-request-id": [ - "cbb63faa-92d2-4a8d-abfe-d7a767de4182" + "6d08dd51-0763-4c8d-8dd5-a9989e34239b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687\",\r\n \"name\": \"ps7687\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "165" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -103,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "7db56646-e55e-47d2-915e-282bfd122c84" + "3507bda7-97ff-4cd7-92ca-677b1c8d8580" ], "x-ms-correlation-request-id": [ - "7db56646-e55e-47d2-915e-282bfd122c84" + "3507bda7-97ff-4cd7-92ca-677b1c8d8580" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T191257Z:7db56646-e55e-47d2-915e-282bfd122c84" + "WESTCENTRALUS:20190403T222156Z:3507bda7-97ff-4cd7-92ca-677b1c8d8580" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,113 +110,128 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:12:57 GMT" + "Wed, 03 Apr 2019 22:21:56 GMT" + ], + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583\",\r\n \"name\": \"ps8583\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODU4My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ed717f8-7725-4137-8f06-c9bbda6f2f04" + "0f4356f0-51ed-4717-a6cf-c32c5302127a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], "x-ms-request-id": [ - "bbc0193c-b695-47a2-9385-7bf58580e6ba" + "9fba7222-4065-4174-8a6c-bb34655a6128" ], - "x-ms-correlation-request-id": [ - "bbc0193c-b695-47a2-9385-7bf58580e6ba" + "x-ms-client-request-id": [ + "0f4356f0-51ed-4717-a6cf-c32c5302127a" ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191258Z:bbc0193c-b695-47a2-9385-7bf58580e6ba" + "OData-Version": [ + "4.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "1b21cf46-fb25-4bcb-b246-f2fd7dfbb5db" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222157Z:1b21cf46-fb25-4bcb-b246-f2fd7dfbb5db" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:12:57 GMT" + "Wed, 03 Apr 2019 22:21:57 GMT" + ], + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODU4My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44c34218-de6b-43c7-8673-d14e07c9e257" + "ec3de40e-c501-47a9-b25c-73b876f642d3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps3397\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdoors/ps3397\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tag1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps3397.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps3397.azurefd.net\",\r\n \"friendlyName\": \"ps3397\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4172" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1d3cdce1-99a9-4fcb-b5b0-c44635f7be8f" + "e7602767-559b-4965-bf58-f66961bcf83f" ], "x-ms-client-request-id": [ - "44c34218-de6b-43c7-8673-d14e07c9e257" + "ec3de40e-c501-47a9-b25c-73b876f642d3" ], "OData-Version": [ "4.0" @@ -231,74 +239,74 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11994" ], "x-ms-correlation-request-id": [ - "49cd8c3f-7d09-427d-821d-331a016276ec" + "a34679be-8757-4f0a-90d5-cefbef171fa3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T191711Z:49cd8c3f-7d09-427d-821d-331a016276ec" + "WESTCENTRALUS:20190403T222226Z:a34679be-8757-4f0a-90d5-cefbef171fa3" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:17:11 GMT" + "Wed, 03 Apr 2019 22:22:26 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "4413" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps182\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdoors/ps182\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps182.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps182.azurefd.net\",\r\n \"friendlyName\": \"ps182\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODU4My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4aea304-f7ea-4c5f-8a37-d0737ea6f5ac" + "ff9eeb8c-ce06-4f01-836c-9d657ab8fa79" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps3397\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdoors/ps3397\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value4\",\r\n \"tag1\": \"value3\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps3397.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps3397.azurefd.net\",\r\n \"friendlyName\": \"ps3397\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4172" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "06302bf3-fa75-4c21-848d-55d38eec0897" + "45c01cd4-728b-42e8-b7fe-f981b2ac2049" ], "x-ms-client-request-id": [ - "c4aea304-f7ea-4c5f-8a37-d0737ea6f5ac" + "ff9eeb8c-ce06-4f01-836c-9d657ab8fa79" ], "OData-Version": [ "4.0" @@ -306,71 +314,71 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11991" ], "x-ms-correlation-request-id": [ - "42484f19-8354-48d3-a42d-cbb35325b96d" + "8a544f03-1522-48b5-b228-00fd081cbf27" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T192223Z:42484f19-8354-48d3-a42d-cbb35325b96d" + "WESTCENTRALUS:20190403T222239Z:8a544f03-1522-48b5-b228-00fd081cbf27" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:22:22 GMT" + "Wed, 03 Apr 2019 22:22:38 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "4413" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps182\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdoors/ps182\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value3\",\r\n \"tag2\": \"value4\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps182.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps182.azurefd.net\",\r\n \"friendlyName\": \"ps182\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczMzOTc/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODU4My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE4Mj9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"ps3397\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadbalancingsetting1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 30\r\n },\r\n \"name\": \"healthProbeSetting1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 1,\r\n \"weight\": 50\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/HealthProbeSettings/healthProbeSetting1\"\r\n }\r\n },\r\n \"name\": \"backendpool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"ps3397.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendendpoint1\"\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"ps182\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/BackendPools/backendPool1\"\r\n }\r\n }\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadbalancingsetting1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 30\r\n },\r\n \"name\": \"healthProbeSetting1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/HealthProbeSettings/healthProbeSetting1\"\r\n }\r\n },\r\n \"name\": \"backendpool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"ps182.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendendpoint1\"\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2621" - ], "x-ms-client-request-id": [ - "596e60b9-ab31-45bb-ae96-cb69aeea1d00" + "aab0c41b-60a8-4deb-badb-35cee1f7ccb6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps3397\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdoors/ps3397\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tag1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps3397.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps3397.azurefd.net\",\r\n \"friendlyName\": \"ps3397\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3933" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ], "Content-Type": [ - "application/json; odata.metadata=minimal" + "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "2922" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -379,13 +387,13 @@ "10" ], "x-ms-request-id": [ - "89f6a5e1-6024-4604-8355-b186f01298d4" + "67ffcaeb-ad84-4f03-8925-5934b6afe63c" ], "x-ms-client-request-id": [ - "596e60b9-ab31-45bb-ae96-cb69aeea1d00" + "aab0c41b-60a8-4deb-badb-35cee1f7ccb6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01" + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdooroperationresults/a6c98ced-923c-4907-82d7-85e45b6df5c8?api-version=2019-04-01" ], "OData-Version": [ "4.0" @@ -393,86 +401,89 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "fdc8f8ff-7698-4686-82a4-e81be0f0d9f4" + "7dc79b29-365d-4bc1-a891-09e5863251ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T191300Z:fdc8f8ff-7698-4686-82a4-e81be0f0d9f4" + "WESTCENTRALUS:20190403T222204Z:7dc79b29-365d-4bc1-a891-09e5863251ac" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:13:00 GMT" + "Wed, 03 Apr 2019 22:22:03 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "4158" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps182\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdoors/ps182\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps182.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Creating\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps182.azurefd.net\",\r\n \"friendlyName\": \"ps182\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczMzOTc/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODU4My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE4Mj9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"ps3397\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadbalancingsetting1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 30\r\n },\r\n \"name\": \"healthProbeSetting1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 1,\r\n \"weight\": 50\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/HealthProbeSettings/healthProbeSetting1\"\r\n }\r\n },\r\n \"name\": \"backendpool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"ps3397.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendendpoint1\"\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag2\": \"value4\",\r\n \"tag1\": \"value3\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"ps182\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/BackendPools/backendPool1\"\r\n }\r\n }\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadbalancingsetting1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 30\r\n },\r\n \"name\": \"healthProbeSetting1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/HealthProbeSettings/healthProbeSetting1\"\r\n }\r\n },\r\n \"name\": \"backendpool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"ps182.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendendpoint1\"\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"tag1\": \"value3\",\r\n \"tag2\": \"value4\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2621" - ], "x-ms-client-request-id": [ - "f59c4a87-278e-420d-8233-30351a26a1ca" + "a3d89776-a5d9-4c02-a9ba-002867769b62" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps3397\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdoors/ps3397\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value4\",\r\n \"tag1\": \"value3\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps3397.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps3397.azurefd.net\",\r\n \"friendlyName\": \"ps3397\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3928" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ], "Content-Type": [ - "application/json; odata.metadata=minimal" + "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "2922" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdooroperationresults/97504188-8ef0-4fc1-afca-eacc8e2b86a5/frontdoorresults/ps182?api-version=2019-04-01" + ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "e7b3cfc9-1913-4ee7-b514-773069a989eb" + "e44f118e-0e1a-4899-9b61-adfae3e7bfe8" ], "x-ms-client-request-id": [ - "f59c4a87-278e-420d-8233-30351a26a1ca" + "a3d89776-a5d9-4c02-a9ba-002867769b62" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01" + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdooroperationresults/97504188-8ef0-4fc1-afca-eacc8e2b86a5?api-version=2019-04-01" ], "OData-Version": [ "4.0" @@ -480,71 +491,68 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "aeed2b88-8461-4ab9-a935-077d64a8103d" + "2110e097-4b31-412c-8ad7-984683d340ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T191712Z:aeed2b88-8461-4ab9-a935-077d64a8103d" + "WESTCENTRALUS:20190403T222228Z:2110e097-4b31-412c-8ad7-984683d340ab" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:17:12 GMT" + "Wed, 03 Apr 2019 22:22:27 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c/frontdoorresults/ps3397?api-version=2018-08-01" - ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "4153" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps182\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdoors/ps182\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value3\",\r\n \"tag2\": \"value4\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps182.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps182.azurefd.net\",\r\n \"friendlyName\": \"ps182\"\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdooroperationresults/a6c98ced-923c-4907-82d7-85e45b6df5c8?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzODU4My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNmM5OGNlZC05MjNjLTQ5MDctODJkNy04NWU0NWI2ZGY1Yzg/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b178b06e-41d6-4f19-bb2c-45a5aeee8224" + "080f5fca-7f67-49ba-97dd-61c883e08e6a" ], "x-ms-client-request-id": [ - "78b13dee-745f-47aa-945e-02597ea80cca" + "d8c5352f-dd13-4a67-85fb-febbaa7da30e" ], "OData-Version": [ "4.0" @@ -552,68 +560,68 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "d49db422-9a35-414b-b1be-22eca817dd71" + "ce3d1ab9-2133-4f62-9b33-7468b5334f33" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T191311Z:d49db422-9a35-414b-b1be-22eca817dd71" + "WESTCENTRALUS:20190403T222215Z:ce3d1ab9-2133-4f62-9b33-7468b5334f33" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:13:10 GMT" + "Wed, 03 Apr 2019 22:22:14 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "50" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdooroperationresults/a6c98ced-923c-4907-82d7-85e45b6df5c8?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzODU4My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNmM5OGNlZC05MjNjLTQ5MDctODJkNy04NWU0NWI2ZGY1Yzg/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2f7a551c-4f6f-473c-8190-ef1a005d0fef" + "cc173edf-23cc-4ba3-84ee-977879318ff7" ], "x-ms-client-request-id": [ - "d4d3a92e-02d0-40fd-9199-bed104f37861" + "9f770806-3bfc-4116-94d5-5a0c2a751069" ], "OData-Version": [ "4.0" @@ -621,68 +629,68 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "8de4a84f-c25c-40ab-930c-7a18f29513f3" + "88ad69e7-5e15-474c-9ba0-847845eadb16" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T191321Z:8de4a84f-c25c-40ab-930c-7a18f29513f3" + "WESTCENTRALUS:20190403T222225Z:88ad69e7-5e15-474c-9ba0-847845eadb16" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:13:21 GMT" + "Wed, 03 Apr 2019 22:22:25 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "49" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODU4My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE4Mj9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f194718a-cce0-4f44-8417-bdcb10e0559c" + "e006ada5-32ad-4f4e-bfb5-352a756bee84" ], "x-ms-client-request-id": [ - "eccef8c4-773f-4fe5-8e15-b48ba0ea1304" + "e7814cb3-8059-4b55-86ea-e463f0a06239" ], "OData-Version": [ "4.0" @@ -690,68 +698,74 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "188894d6-56e2-4b25-ba9c-97de01f41ba3" + "5af1ef3f-12c0-4d0e-b34d-572be4bea36e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T191332Z:188894d6-56e2-4b25-ba9c-97de01f41ba3" + "WESTCENTRALUS:20190403T222225Z:5af1ef3f-12c0-4d0e-b34d-572be4bea36e" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:13:32 GMT" + "Wed, 03 Apr 2019 22:22:25 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "4153" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps182\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdoors/ps182\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps182.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps182.azurefd.net\",\r\n \"friendlyName\": \"ps182\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODU4My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE4Mj9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7701cf37-fbdd-4fae-8676-a754c049a494" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "46064991-25da-43b2-956b-f852e7ddb602" + "492ee69b-2028-4582-8609-a2662ebc6d64" ], "x-ms-client-request-id": [ - "d3c76b7f-2148-41ee-9f3b-c17043f123e3" + "7701cf37-fbdd-4fae-8676-a754c049a494" ], "OData-Version": [ "4.0" @@ -759,68 +773,68 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "68d38e10-422e-4aca-bdcd-ddd635ddd8df" + "9ca8bcd4-0ef2-417c-9000-8a1f85bc9044" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T191342Z:68d38e10-422e-4aca-bdcd-ddd635ddd8df" + "WESTCENTRALUS:20190403T222226Z:9ca8bcd4-0ef2-417c-9000-8a1f85bc9044" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:13:42 GMT" + "Wed, 03 Apr 2019 22:22:25 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "4153" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps182\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdoors/ps182\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps182.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps182.azurefd.net\",\r\n \"friendlyName\": \"ps182\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODU4My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE4Mj9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fbfd8f9c-b2d9-4496-85fe-9cd4114142c7" + "b4b15664-d840-4ced-ac0a-5bdf0ef27e6a" ], "x-ms-client-request-id": [ - "68f60bb0-f644-42be-b438-fad88f36ab41" + "77c42fed-a57f-4fc9-9625-fb750718c262" ], "OData-Version": [ "4.0" @@ -828,4973 +842,143 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-correlation-request-id": [ - "66a909b5-52f5-4518-83e0-69af05b924b4" + "471cd1aa-84f5-49b3-9d75-21ac335c469b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T191352Z:66a909b5-52f5-4518-83e0-69af05b924b4" + "WESTCENTRALUS:20190403T222238Z:471cd1aa-84f5-49b3-9d75-21ac335c469b" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:13:52 GMT" + "Wed, 03 Apr 2019 22:22:38 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "4153" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps182\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdoors/ps182\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value3\",\r\n \"tag2\": \"value4\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps182.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/Frontdoors/ps182/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps182.azurefd.net\",\r\n \"friendlyName\": \"ps182\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODU4My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE4Mj9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6fcf41fd-57fa-4b02-bfef-a3d13bf0de77" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6deee5e3-27ed-41ee-a4c7-1e73c78e4f49" + "fa503c06-0d96-4258-97c9-d81e3ebe5287" ], "x-ms-client-request-id": [ - "0b75c76a-1959-4fdd-8b2a-052f462f507e" - ], - "OData-Version": [ - "4.0" + "6fcf41fd-57fa-4b02-bfef-a3d13bf0de77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11988" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" ], "x-ms-correlation-request-id": [ - "eb4967e9-9601-45b0-9a2e-e538fc0ded52" + "940907de-4285-402e-97c3-782877b7e364" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T191404Z:eb4967e9-9601-45b0-9a2e-e538fc0ded52" + "WESTCENTRALUS:20190403T222251Z:940907de-4285-402e-97c3-782877b7e364" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:14:03 GMT" + "Wed, 03 Apr 2019 22:22:51 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "104" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; charset=utf-8" ], - "X-Powered-By": [ - "ASP.NET" + "Content-Language": [ + "en-US" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdooroperationresults/97504188-8ef0-4fc1-afca-eacc8e2b86a5?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzODU4My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85NzUwNDE4OC04ZWYwLTRmYzEtYWZjYS1lYWNjOGUyYjg2YTU/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "57c147b9-84f9-4af9-a1bf-87d8fcbdd0f1" - ], - "x-ms-client-request-id": [ - "23c4e1d0-17a8-4ccf-8f38-3f3935c4d2aa" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "8f2e3a14-5a42-41f2-ba66-1268a11c4f95" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191414Z:8f2e3a14-5a42-41f2-ba66-1268a11c4f95" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:14:13 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "65f70b38-d01e-480a-930a-aab7727d718b" - ], - "x-ms-client-request-id": [ - "55584c77-ae17-454a-adfa-9be0c1b86bf5" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "413a1c59-32d0-4204-97bc-e566a8e770b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191424Z:413a1c59-32d0-4204-97bc-e566a8e770b1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:14:23 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d4f74c64-4ed3-450b-b9cb-a1ed831ce4fa" - ], - "x-ms-client-request-id": [ - "cf545012-845c-422f-819d-cd0a23f4d227" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "d7c9d7d1-556b-4a61-b284-ca135bd9caf0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191434Z:d7c9d7d1-556b-4a61-b284-ca135bd9caf0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:14:34 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "638e5935-b3c3-49a0-8911-43a3e35a542a" - ], - "x-ms-client-request-id": [ - "502f802a-f4c1-453f-8a30-97c4553d9341" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "5bcd8522-5c0d-49d3-9f61-b10fad43ac98" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191445Z:5bcd8522-5c0d-49d3-9f61-b10fad43ac98" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:14:45 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "909b6cdc-82a3-453f-9252-01b99ef9fa4e" - ], - "x-ms-client-request-id": [ - "dc9f9ed7-7c81-4c1b-bd36-21d1226cdca7" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "710b7810-1811-470a-b2ad-3ea1bad42a65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191455Z:710b7810-1811-470a-b2ad-3ea1bad42a65" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:14:55 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b1cdabbc-ea0e-40bd-9f70-5e2105b2e095" - ], - "x-ms-client-request-id": [ - "63058f93-b8da-459d-aae5-2c0d7cfdf03e" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "07618226-cb73-481c-8d54-4e98608b85fb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191505Z:07618226-cb73-481c-8d54-4e98608b85fb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:15:05 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c6f6dbe6-40d8-4f30-9abe-01654e0e9b12" - ], - "x-ms-client-request-id": [ - "55282c35-88de-4e23-a814-25f4c4915654" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-correlation-request-id": [ - "0a8a9f18-521a-4e38-8e75-ef9c3f263e4f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191515Z:0a8a9f18-521a-4e38-8e75-ef9c3f263e4f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:15:15 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a9fe3da4-69d5-4c3b-a549-f135d68240a0" - ], - "x-ms-client-request-id": [ - "afccc701-f8dc-472f-ae20-c5ac8aa782bc" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-correlation-request-id": [ - "a74bf0a2-bbba-4e9a-b32b-21a7d0617bf6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191526Z:a74bf0a2-bbba-4e9a-b32b-21a7d0617bf6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:15:25 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "06b657ba-39b8-4868-94e9-fdf6db5c5f72" - ], - "x-ms-client-request-id": [ - "7d0a1f3d-74af-4509-a34d-42297352953f" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-correlation-request-id": [ - "8dbecce2-cbfd-475c-a5af-df65b50c8cb7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191536Z:8dbecce2-cbfd-475c-a5af-df65b50c8cb7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:15:36 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ee8a6026-d306-4e72-9823-fdc6d005944e" - ], - "x-ms-client-request-id": [ - "7ba39577-96eb-4c0f-89fc-b8331734ba07" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-correlation-request-id": [ - "ea49ff20-0335-4c6c-9ca2-97305f340905" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191547Z:ea49ff20-0335-4c6c-9ca2-97305f340905" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:15:46 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f34bba07-8d7f-485b-a82d-28086438c46d" - ], - "x-ms-client-request-id": [ - "37725707-edf4-4065-a118-4f823c2455a5" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-correlation-request-id": [ - "b953f41b-0ae3-4385-9ef8-929bf49b1133" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191557Z:b953f41b-0ae3-4385-9ef8-929bf49b1133" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:15:56 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8d2a2814-79cc-4cf1-9105-0f2597c9eaec" - ], - "x-ms-client-request-id": [ - "4e9a2b9d-0e0b-469e-8c8d-5c1c741a20c2" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-correlation-request-id": [ - "6c4bb6c2-37d8-4c35-aa59-1661e4c601a1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191607Z:6c4bb6c2-37d8-4c35-aa59-1661e4c601a1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:16:07 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5eb0a6fc-c96f-49e2-b6ec-632f83321613" - ], - "x-ms-client-request-id": [ - "3bfc51e0-a554-484a-a1d9-e747146da764" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-correlation-request-id": [ - "171f348e-bc1c-4594-97ed-2b7cbd08d8f2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191617Z:171f348e-bc1c-4594-97ed-2b7cbd08d8f2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:16:17 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "11f0573d-d724-4534-a693-b309bcfcdba3" - ], - "x-ms-client-request-id": [ - "cc61b656-17fc-4613-92ff-59c643939231" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-correlation-request-id": [ - "7bfc1f8e-c896-4e1d-b209-8a8531b0f6c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191628Z:7bfc1f8e-c896-4e1d-b209-8a8531b0f6c7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:16:27 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "305a7f34-cef5-41e1-9bdd-3aa10358a6af" - ], - "x-ms-client-request-id": [ - "6a48c014-86e0-4891-8fd0-ec4731e102ec" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-correlation-request-id": [ - "b1b22952-d459-45b9-8966-7dc7ae7b1e0f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191638Z:b1b22952-d459-45b9-8966-7dc7ae7b1e0f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:16:37 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "75a1ea5a-5852-4860-8c32-5525f28b9354" - ], - "x-ms-client-request-id": [ - "fd595c96-1dcf-4842-bbbd-8714fc07b169" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-correlation-request-id": [ - "383d35af-ad56-446b-a549-093bb63c4cb7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191648Z:383d35af-ad56-446b-a549-093bb63c4cb7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:16:48 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4424a48a-fd9f-4863-8a9d-814f14a735f7" - ], - "x-ms-client-request-id": [ - "c0ac8303-0dc2-4a88-bf13-c9c52920977f" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-correlation-request-id": [ - "88d8c669-7495-4de9-82a6-f02a6b4be9f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191659Z:88d8c669-7495-4de9-82a6-f02a6b4be9f4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:16:58 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/709ab551-3032-402e-9c3d-2cad54175e9f?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy83MDlhYjU1MS0zMDMyLTQwMmUtOWMzZC0yY2FkNTQxNzVlOWY/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "49" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "55013c49-5681-416e-95fb-0076abb3f7b1" - ], - "x-ms-client-request-id": [ - "ef636f24-b812-4e66-9c91-4bc6c6264b68" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-correlation-request-id": [ - "a6278d96-8feb-457d-8ed3-d4cd674f980a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191709Z:a6278d96-8feb-457d-8ed3-d4cd674f980a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:17:09 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczMzOTc/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps3397\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdoors/ps3397\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tag1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps3397.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps3397.azurefd.net\",\r\n \"friendlyName\": \"ps3397\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3928" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "161cd913-57e1-428c-82d8-4e7c0da41dcc" - ], - "x-ms-client-request-id": [ - "89b645dc-7d6c-4b38-bf79-e355cf9688c5" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-correlation-request-id": [ - "ce142360-ffa1-4e52-81dc-12fde76d9de0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191710Z:ce142360-ffa1-4e52-81dc-12fde76d9de0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:17:10 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczMzOTc/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cfa4e8cd-4fa0-48b0-9b59-3e9b30df1266" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps3397\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdoors/ps3397\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tag1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps3397.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps3397.azurefd.net\",\r\n \"friendlyName\": \"ps3397\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3928" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3c9c5398-610e-49b9-91ef-3fca7b3f33f2" - ], - "x-ms-client-request-id": [ - "cfa4e8cd-4fa0-48b0-9b59-3e9b30df1266" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-correlation-request-id": [ - "403b819e-d893-4a7f-af92-97da5a917d5a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191710Z:403b819e-d893-4a7f-af92-97da5a917d5a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:17:10 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczMzOTc/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps3397\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdoors/ps3397\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value4\",\r\n \"tag1\": \"value3\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps3397.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/Frontdoors/ps3397/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps3397.azurefd.net\",\r\n \"friendlyName\": \"ps3397\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3928" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "77e2e48b-3c30-414a-9adc-e85b616930c6" - ], - "x-ms-client-request-id": [ - "2a0d51e2-9fef-44c2-b0e4-5778692d9317" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-correlation-request-id": [ - "526e1581-fc34-4cda-a8dc-3c8cc81b306f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192223Z:526e1581-fc34-4cda-a8dc-3c8cc81b306f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:22:22 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczMzOTc/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1aa37795-3bbb-4b5f-8536-a4bc188c8308" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/frontdoors/ps3397' under resource group 'ps7687' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "145" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "7e975711-894c-4a67-bb52-b72acf0a486e" - ], - "x-ms-correlation-request-id": [ - "7e975711-894c-4a67-bb52-b72acf0a486e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192551Z:7e975711-894c-4a67-bb52-b72acf0a486e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:25:51 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8147d380-d1fd-4370-912a-d05b6a2bb797" - ], - "x-ms-client-request-id": [ - "684024db-b7ca-406a-9f1e-e8fad2cfc911" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-correlation-request-id": [ - "78f590c0-4525-439e-8a3a-e8bbd585db48" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191722Z:78f590c0-4525-439e-8a3a-e8bbd585db48" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:17:22 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "30f45efc-a15d-40d7-84a4-65f7aa181f40" - ], - "x-ms-client-request-id": [ - "b4f089ec-c5f4-42d3-9e01-57ead09d1977" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-correlation-request-id": [ - "75755996-f040-4e7f-a20c-dcde4199367b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191732Z:75755996-f040-4e7f-a20c-dcde4199367b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:17:32 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "19970e1a-675e-4654-8581-f48f7fc10cae" - ], - "x-ms-client-request-id": [ - "83d54a1d-aed8-4aa6-b981-f686a7044ddf" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-correlation-request-id": [ - "f8034efd-c913-498e-b92d-febf60bb4843" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191743Z:f8034efd-c913-498e-b92d-febf60bb4843" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:17:43 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "98de4f9e-7a0c-4bc6-ac64-775054e0157b" - ], - "x-ms-client-request-id": [ - "45ddc8b1-d4e1-41b7-b418-5e48f2f7f2f4" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-correlation-request-id": [ - "2c119d08-6267-4213-b3d9-20caf101c8c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191753Z:2c119d08-6267-4213-b3d9-20caf101c8c2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:17:53 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5ab13171-5546-4d8f-9ef5-0bfd27d161ad" - ], - "x-ms-client-request-id": [ - "7d6ec3c2-0bf6-41c0-aa34-74e862e0b20d" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-correlation-request-id": [ - "1d64bf8d-6a15-457a-8253-a63519274843" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191804Z:1d64bf8d-6a15-457a-8253-a63519274843" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:18:03 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "75acb922-50fe-4776-b57f-2581970d6c99" - ], - "x-ms-client-request-id": [ - "512fb186-b4b1-4271-b638-073ba830a217" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-correlation-request-id": [ - "a649c420-2b9e-47d6-979c-3a609e99f129" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191814Z:a649c420-2b9e-47d6-979c-3a609e99f129" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:18:13 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "09d0cc03-2c10-4cae-8872-d49e026fc7d8" - ], - "x-ms-client-request-id": [ - "8a4cf9ba-a39f-44cb-a888-068bc1b7ef18" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-correlation-request-id": [ - "9046ffbb-a4af-4b58-9f61-63b99d7ea20e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191824Z:9046ffbb-a4af-4b58-9f61-63b99d7ea20e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:18:23 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5337d5a1-2718-4228-95be-d8b3841b1475" - ], - "x-ms-client-request-id": [ - "f3920ac1-ed46-4481-b06f-05821d3aa6b8" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "0bc51f99-6efd-4143-a111-6210d3196db2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191835Z:0bc51f99-6efd-4143-a111-6210d3196db2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:18:35 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e945f8f0-4706-47ee-9c32-c314ba2537a1" - ], - "x-ms-client-request-id": [ - "196e9d62-a0dc-480c-8678-e12e386a473c" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "711107b8-5c33-4fd5-be19-064f5542c799" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191845Z:711107b8-5c33-4fd5-be19-064f5542c799" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:18:45 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "902efc49-dea1-4330-b71c-8e66e8233a43" - ], - "x-ms-client-request-id": [ - "3863f800-a829-416e-b4e3-5654f80eab7b" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "8208857b-6307-48e8-ad30-e2a8e2e4a471" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191855Z:8208857b-6307-48e8-ad30-e2a8e2e4a471" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:18:55 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5b3e198a-b5a5-4f63-9219-47409ba2eefa" - ], - "x-ms-client-request-id": [ - "0c979d84-4534-4b6b-b1a9-7b987d06951f" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "ec12c99c-a285-46f4-a7e1-123f14777d75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191906Z:ec12c99c-a285-46f4-a7e1-123f14777d75" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:19:05 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c9a7dd15-986b-48d9-be90-10d519d2c94e" - ], - "x-ms-client-request-id": [ - "8099ceab-f18e-4574-bc25-cd253dfb53e6" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "db9e317c-ee73-4d43-bf55-67552c6ef684" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191916Z:db9e317c-ee73-4d43-bf55-67552c6ef684" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:19:15 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "89f02c44-64a7-4ae4-969f-b2cb09e1c3f8" - ], - "x-ms-client-request-id": [ - "ec223d68-39e3-48cb-9989-c6146cb07581" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-correlation-request-id": [ - "4ef8e9ee-c002-4fac-9b47-ba4005fe462a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191926Z:4ef8e9ee-c002-4fac-9b47-ba4005fe462a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:19:25 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eb57110f-394b-43b2-91ff-47686c0e44fe" - ], - "x-ms-client-request-id": [ - "ae24878b-f539-4cdc-9f72-67f9b3d664d4" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-correlation-request-id": [ - "35f32150-f143-489a-baa6-ea021bdbd46f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191937Z:35f32150-f143-489a-baa6-ea021bdbd46f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:19:37 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "49caf40d-8597-4fe2-b640-e2d92968767b" - ], - "x-ms-client-request-id": [ - "49d793ae-94d0-4597-86d4-86e02533d6d0" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-correlation-request-id": [ - "ec82fff2-1263-4253-84eb-c1de37a4416e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191947Z:ec82fff2-1263-4253-84eb-c1de37a4416e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:19:47 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "90d5ccf2-2c7b-4371-a9aa-01429d9def42" - ], - "x-ms-client-request-id": [ - "6bb42862-be61-441f-beb9-3b22c1e25f8b" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-correlation-request-id": [ - "f58388a5-4999-434d-8225-543bcd6412f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T191957Z:f58388a5-4999-434d-8225-543bcd6412f0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:19:57 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7ec0b4cd-65cf-4164-ad20-afd0bf2f2171" - ], - "x-ms-client-request-id": [ - "02c3a216-806d-440f-8f35-865e1e70909b" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-correlation-request-id": [ - "3606dd7c-c8ee-4983-8d9e-3b9ac2a8361c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192008Z:3606dd7c-c8ee-4983-8d9e-3b9ac2a8361c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:20:07 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1ea73526-458e-4c83-bca2-36a23eb1e68b" - ], - "x-ms-client-request-id": [ - "54ce6230-ce68-49a3-b25b-b2e9c8b55f67" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-correlation-request-id": [ - "94f5b328-2f0f-46c3-ab9c-011cedeee174" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192018Z:94f5b328-2f0f-46c3-ab9c-011cedeee174" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:20:17 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e586ed84-eb18-4238-affd-3eaabb26d17c" - ], - "x-ms-client-request-id": [ - "044d0018-5240-46b3-82c2-5b81c5bff924" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-correlation-request-id": [ - "759cfdac-fbec-4370-b8ea-90f08185d024" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192028Z:759cfdac-fbec-4370-b8ea-90f08185d024" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:20:27 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "32ea0a32-d65e-4c25-93a7-1ec0f79625da" - ], - "x-ms-client-request-id": [ - "b2b97e07-8a6e-4b0d-920a-30deb202b3a1" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-correlation-request-id": [ - "f157e197-d49b-4381-9110-b56fb9a43c11" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192039Z:f157e197-d49b-4381-9110-b56fb9a43c11" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:20:39 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0d84c1e8-b040-4151-9aa5-18f4f64766bc" - ], - "x-ms-client-request-id": [ - "5ddac49e-252d-49b2-88d5-29208f19613d" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-correlation-request-id": [ - "c9a1c0cb-0623-40ae-87f3-10b0d4e18e13" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192049Z:c9a1c0cb-0623-40ae-87f3-10b0d4e18e13" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:20:49 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bdc21a74-e539-493c-ad15-9f7d3bfa067c" - ], - "x-ms-client-request-id": [ - "38db04cb-0b22-4967-8535-217cc48729d0" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-correlation-request-id": [ - "4f6379a4-e605-4b23-9d33-d4fd6e130ac0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192059Z:4f6379a4-e605-4b23-9d33-d4fd6e130ac0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:20:59 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cb704818-7f37-4f60-b6dd-992d3b7cd4bc" - ], - "x-ms-client-request-id": [ - "5c4123b5-8354-4f54-b4b2-fe66d0e1e224" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-correlation-request-id": [ - "103977b3-f6ed-4675-acbf-3243891192ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192109Z:103977b3-f6ed-4675-acbf-3243891192ed" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:21:09 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bfe1f024-685a-4be4-825b-3c6e153db2cd" - ], - "x-ms-client-request-id": [ - "d87bbc81-cbe0-468f-8ea0-5d457df08992" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-correlation-request-id": [ - "20371799-c6f0-408d-9b40-71f04d85756d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192120Z:20371799-c6f0-408d-9b40-71f04d85756d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:21:19 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d519ca03-f2ca-4d00-9e21-f83b936448c5" - ], - "x-ms-client-request-id": [ - "6074f47a-2aa5-49dc-a6c8-dd9e8f4c0c28" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-correlation-request-id": [ - "06b12861-a0f5-4c14-931f-4e1527b06724" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192130Z:06b12861-a0f5-4c14-931f-4e1527b06724" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:21:29 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4feccee4-e6ce-462c-9cb7-703faabcb02d" - ], - "x-ms-client-request-id": [ - "490e2c1f-4e38-4927-9552-6d38fd514659" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-correlation-request-id": [ - "0ee884e1-8745-4c41-ae63-693a376d2214" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192141Z:0ee884e1-8745-4c41-ae63-693a376d2214" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:21:40 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "65775ed0-0608-40e1-bdb7-f162ee78a2dc" - ], - "x-ms-client-request-id": [ - "db472744-b991-4e89-9383-777b62119cf1" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-correlation-request-id": [ - "49b3fa2e-e72f-4870-9b73-04d544a5e4ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192151Z:49b3fa2e-e72f-4870-9b73-04d544a5e4ca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:21:51 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f5b5fa3c-31e9-4e65-a892-73a5210aee05" - ], - "x-ms-client-request-id": [ - "048ff0b5-5a32-492f-b2ea-84eb6ac4f0e8" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-correlation-request-id": [ - "7717a638-db74-4989-9eb4-fe9850c3996b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192201Z:7717a638-db74-4989-9eb4-fe9850c3996b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:22:01 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e50bac09-8e61-428b-a035-3d9ed4023479" - ], - "x-ms-client-request-id": [ - "e52b5559-3197-41d2-9aec-48824a5f5722" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-correlation-request-id": [ - "3e4c9846-46bb-4f45-a8ac-9e93db3247ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192211Z:3e4c9846-46bb-4f45-a8ac-9e93db3247ef" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:22:11 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/532ab0b7-3740-4404-888f-a026b9ec2f5c?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy81MzJhYjBiNy0zNzQwLTQ0MDQtODg4Zi1hMDI2YjllYzJmNWM/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "49" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7d5b3199-3aeb-48be-800f-71dc83282c2b" - ], - "x-ms-client-request-id": [ - "4d2a1bdf-859a-41e9-847f-6ed7c69d578d" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-correlation-request-id": [ - "3ca74cc5-2a3a-4780-a270-3db1405b2a96" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192222Z:3ca74cc5-2a3a-4780-a270-3db1405b2a96" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:22:21 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps7687/providers/Microsoft.Network/frontDoors/ps3397?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczMzOTc/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "79c45ba7-1036-4af6-836e-e1172adca7f3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "63c8055b-3c74-4fc8-abbd-1a438b0d8621" - ], - "x-ms-client-request-id": [ - "79c45ba7-1036-4af6-836e-e1172adca7f3" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "bab619d3-4466-48fc-a526-b1fa486be11e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192224Z:bab619d3-4466-48fc-a526-b1fa486be11e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:22:23 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d/frontdoorresults/ps3397?api-version=2018-08-01" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7373bc02-25af-4c2e-94ff-7960edab4e3b" - ], - "x-ms-client-request-id": [ - "72431ec2-8396-4dc8-8389-3f3fa8fcb067" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-correlation-request-id": [ - "a9e6e6f7-3b80-4f2d-9135-a4b3c500dd2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192234Z:a9e6e6f7-3b80-4f2d-9135-a4b3c500dd2e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:22:33 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "76210772-96a7-4eeb-acec-b5df9f3d7123" - ], - "x-ms-client-request-id": [ - "07d8a223-d814-4b61-b973-57ee9ea91040" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-correlation-request-id": [ - "3128f4bc-a394-41c0-9e3d-4643d365d374" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192245Z:3128f4bc-a394-41c0-9e3d-4643d365d374" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:22:45 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e7ab804a-1f88-49ce-9b28-8f5495151897" - ], - "x-ms-client-request-id": [ - "952da4e6-80d8-487c-a27d-ec7bbe555057" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-correlation-request-id": [ - "cb62e3dd-5e56-422c-bf25-c6f2bb0731aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192255Z:cb62e3dd-5e56-422c-bf25-c6f2bb0731aa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:22:55 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b9ae4d15-c97d-4aae-9cbc-0d8e4e11b2b3" - ], - "x-ms-client-request-id": [ - "d4348e48-2b3d-40fa-a922-1fad95139140" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-correlation-request-id": [ - "a95f7de4-1c77-4dd6-94cf-47b5450d027e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192305Z:a95f7de4-1c77-4dd6-94cf-47b5450d027e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:23:05 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ad805b52-4fc4-4f79-826a-97d61a10d888" - ], - "x-ms-client-request-id": [ - "4c2d36cd-febe-47aa-a859-9f6620284d6c" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-correlation-request-id": [ - "aef7ace1-6177-4080-a465-310a79a19320" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192316Z:aef7ace1-6177-4080-a465-310a79a19320" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:23:15 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "65142590-8e63-4ab2-8148-621b37a1808f" - ], - "x-ms-client-request-id": [ - "637d9fb8-9a2a-4d44-8592-e5794f2b0a51" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-correlation-request-id": [ - "5066481e-4c30-43de-945b-5a771427ce40" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192326Z:5066481e-4c30-43de-945b-5a771427ce40" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:23:25 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e14f6c36-1702-4b9f-a5bd-b8590d1beb9e" - ], - "x-ms-client-request-id": [ - "a79ae397-afd6-48cb-87cd-d3c6d8be98ce" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-correlation-request-id": [ - "118a0aec-011d-4d8e-9ac1-9ed6dd7e49b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192336Z:118a0aec-011d-4d8e-9ac1-9ed6dd7e49b7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:23:36 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0db9c314-d57e-462c-8146-e99668a89732" - ], - "x-ms-client-request-id": [ - "f1c141a6-8169-497a-b105-f3bf53b27a11" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-correlation-request-id": [ - "8ac8e4ba-d9bc-4551-8a64-9bd65d98b89a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192347Z:8ac8e4ba-d9bc-4551-8a64-9bd65d98b89a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:23:46 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3009f2e2-fdd0-4cf4-8506-2022b54cdff4" - ], - "x-ms-client-request-id": [ - "b3ff400a-5147-4f18-b499-ff94b162337e" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-correlation-request-id": [ - "6cd48546-b422-42f0-81e7-4610941da34a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192357Z:6cd48546-b422-42f0-81e7-4610941da34a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:23:56 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7da5c74d-8f6d-495b-be23-2c66945605ab" - ], - "x-ms-client-request-id": [ - "d8e9cd47-d353-4864-9c21-2a5648fe5948" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-correlation-request-id": [ - "714c6b6a-fdbb-4617-8e4a-4ec6c6ecb48a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192407Z:714c6b6a-fdbb-4617-8e4a-4ec6c6ecb48a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:24:06 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b0b739de-3f87-4bf9-8012-4f5d40570110" - ], - "x-ms-client-request-id": [ - "ed95f664-bf00-4ec9-a9d1-725bbe8e72c2" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-correlation-request-id": [ - "992563b0-bcf4-4674-b01f-5716fe67eeb1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192417Z:992563b0-bcf4-4674-b01f-5716fe67eeb1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:24:17 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a183d56f-d4aa-4bb0-9082-20b5977bcf1d" - ], - "x-ms-client-request-id": [ - "a204b0bc-01fe-4f30-833e-5120eaa2044c" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-correlation-request-id": [ - "51e56598-9bb8-417c-8d09-2f14fec5a076" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192428Z:51e56598-9bb8-417c-8d09-2f14fec5a076" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:24:27 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "067777ce-4583-4770-b365-cac6c69e1afe" - ], - "x-ms-client-request-id": [ - "5e372806-dbe6-44e2-9cf2-559410b0b4a0" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-correlation-request-id": [ - "37cb74b2-47ff-480d-a0da-1a3381e29854" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192438Z:37cb74b2-47ff-480d-a0da-1a3381e29854" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:24:38 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "af1e44bc-f315-40eb-98c4-4b17e0f086cc" - ], - "x-ms-client-request-id": [ - "08d7f49c-edf8-426f-b248-ea9638d6f793" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-correlation-request-id": [ - "13b2dc6d-975a-4fbb-b588-e1591dc044d0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192449Z:13b2dc6d-975a-4fbb-b588-e1591dc044d0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:24:48 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "95dd5aae-5614-487f-b6cb-9f1ff7debff3" - ], - "x-ms-client-request-id": [ - "2351ad9e-b197-49df-8a21-9021c2fe28ee" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-correlation-request-id": [ - "6b04d29b-ce26-4dbb-ba8a-568d3807a107" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192459Z:6b04d29b-ce26-4dbb-ba8a-568d3807a107" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:24:58 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1648088d-61dc-4384-aa72-3249cc79dfd8" - ], - "x-ms-client-request-id": [ - "a5eb9174-f7a7-48d5-9edd-7ff667cb3415" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "82abd3b1-df83-43c1-9d0f-74effcd9be50" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192510Z:82abd3b1-df83-43c1-9d0f-74effcd9be50" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:25:10 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "af1fbb36-c78c-4358-a094-0e3fcd2be46a" - ], - "x-ms-client-request-id": [ - "635eac59-90b1-419b-9ded-54c8b4e1ce68" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "72bbf1f5-239a-4027-9bf1-bee1dfa6b9ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T192520Z:72bbf1f5-239a-4027-9bf1-bee1dfa6b9ce" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 19:25:20 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "dddf6c27-1e08-4958-b1ec-b9702b417642" + "d6f41f8e-3ad5-4a25-bdd4-d659da77f494" ], "x-ms-client-request-id": [ - "202a9560-b102-4d77-984c-42a4d9f77759" + "c2534484-c81f-4936-9109-6eae262ddf21" ], "OData-Version": [ "4.0" @@ -5802,137 +986,146 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "13920160-51ee-4fc1-8939-24b5285c67d7" + "39e49176-fd2f-4836-8ccc-01f440632677" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T192530Z:13920160-51ee-4fc1-8939-24b5285c67d7" + "WESTCENTRALUS:20190403T222238Z:39e49176-fd2f-4836-8ccc-01f440632677" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:25:30 GMT" + "Wed, 03 Apr 2019 22:22:37 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "49" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8583/providers/Microsoft.Network/frontDoors/ps182?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODU4My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE4Mj9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "769ca443-958e-4365-aeba-4be5c1a47fd2" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdooroperationresults/1728e83c-5757-460b-aa78-b550c67088da/frontdoorresults/ps182?api-version=2019-04-01" + ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "56de8965-609d-49d9-8122-a31d1be4120b" + "84f78753-8555-4bd8-89be-fc3fd695dbc0" ], "x-ms-client-request-id": [ - "a8eafd9b-48ae-4a7d-afc3-5900d59b8df5" + "769ca443-958e-4365-aeba-4be5c1a47fd2" ], - "OData-Version": [ - "4.0" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdooroperationresults/1728e83c-5757-460b-aa78-b550c67088da?api-version=2019-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "219afdcc-b357-4175-818b-f68a063762eb" + "66a19fa2-8a5f-4edb-8828-aafc2b9c028a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T192541Z:219afdcc-b357-4175-818b-f68a063762eb" + "WESTCENTRALUS:20190403T222240Z:66a19fa2-8a5f-4edb-8828-aafc2b9c028a" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:25:40 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" + "Wed, 03 Apr 2019 22:22:39 GMT" ], - "X-AspNet-Version": [ - "4.0.30319" + "Expires": [ + "-1" ], - "X-Powered-By": [ - "ASP.NET" + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdooroperationresults/1728e83c-5757-460b-aa78-b550c67088da?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzODU4My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8xNzI4ZTgzYy01NzU3LTQ2MGItYWE3OC1iNTUwYzY3MDg4ZGE/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "49" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0169b843-900b-4298-9fba-6c937f95536a" + "7a467f91-36a1-4ccb-bf5d-ba6557234262" ], "x-ms-client-request-id": [ - "dc4a9b31-3224-4c3b-9735-a5729ad948b4" + "e118fafd-bfdd-4772-aa96-757d08cdcfad" ], "OData-Version": [ "4.0" @@ -5940,126 +1133,132 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-correlation-request-id": [ - "e96a3460-cad2-4e73-90cb-3a3b18e7e769" + "19b14c27-4050-469f-bc0d-84460ac0d53f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T192551Z:e96a3460-cad2-4e73-90cb-3a3b18e7e769" + "WESTCENTRALUS:20190403T222250Z:19b14c27-4050-469f-bc0d-84460ac0d53f" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:25:51 GMT" + "Wed, 03 Apr 2019 22:22:50 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "49" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687/providers/Microsoft.Network/frontdooroperationresults/9e10e7d5-df40-4a8e-9d47-3c040faa4e1d/frontdoorresults/ps3397?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy85ZTEwZTdkNS1kZjQwLTRhOGUtOWQ0Ny0zYzA0MGZhYTRlMWQvZnJvbnRkb29ycmVzdWx0cy9wczMzOTc/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583/providers/Microsoft.Network/frontdooroperationresults/1728e83c-5757-460b-aa78-b550c67088da/frontdoorresults/ps182?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzODU4My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8xNzI4ZTgzYy01NzU3LTQ2MGItYWE3OC1iNTUwYzY3MDg4ZGEvZnJvbnRkb29ycmVzdWx0cy9wczE4Mj9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "42a9a38f-a5df-436e-9b93-2bca563d4513" + "80dafea6-9199-4e7c-b221-778687c05766" ], "x-ms-client-request-id": [ - "e4683eb6-2db0-4a42-a645-66bb774c3cb3" + "7954d81c-d6a4-43ea-a680-e5306186642d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-correlation-request-id": [ - "043ecb0d-eacb-4f3b-b884-c7ad7f6c0cc3" + "eec35e23-6d6c-4c66-be04-a07bce4e7eed" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T192551Z:043ecb0d-eacb-4f3b-b884-c7ad7f6c0cc3" + "WESTCENTRALUS:20190403T222250Z:eec35e23-6d6c-4c66-be04-a07bce4e7eed" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:25:51 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" + "Wed, 03 Apr 2019 22:22:50 GMT" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps7687?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNzY4Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8583?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzODU4Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a004bfb-1891-4975-b16c-28b1a99a70df" + "dd3b96e1-5675-4d5f-be3e-c574a8eb5d27" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1ODMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], @@ -6067,13 +1266,13 @@ "14999" ], "x-ms-request-id": [ - "8823ba64-783f-4b4b-93fb-a80d394cdc74" + "8b4fceea-ec12-4299-a77e-dad1f6d22f83" ], "x-ms-correlation-request-id": [ - "8823ba64-783f-4b4b-93fb-a80d394cdc74" + "8b4fceea-ec12-4299-a77e-dad1f6d22f83" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T192552Z:8823ba64-783f-4b4b-93fb-a80d394cdc74" + "WESTCENTRALUS:20190403T222252Z:8b4fceea-ec12-4299-a77e-dad1f6d22f83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6081,42 +1280,42 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:25:51 GMT" + "Wed, 03 Apr 2019 22:22:52 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2ODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2ODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1ODMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU9ETXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1ODMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], @@ -6124,13 +1323,13 @@ "11998" ], "x-ms-request-id": [ - "d46edd4d-34a8-4df0-a479-8f92e0d323e0" + "b2fe5701-9cf4-4b48-b8eb-a7fd9941e6a4" ], "x-ms-correlation-request-id": [ - "d46edd4d-34a8-4df0-a479-8f92e0d323e0" + "b2fe5701-9cf4-4b48-b8eb-a7fd9941e6a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T192607Z:d46edd4d-34a8-4df0-a479-8f92e0d323e0" + "WESTCENTRALUS:20190403T222307Z:b2fe5701-9cf4-4b48-b8eb-a7fd9941e6a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6138,42 +1337,42 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:26:07 GMT" + "Wed, 03 Apr 2019 22:23:06 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2ODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2ODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1ODMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU9ETXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1ODMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], "Retry-After": [ "15" ], @@ -6181,13 +1380,13 @@ "11997" ], "x-ms-request-id": [ - "4b338bce-e11a-404b-b383-ba60b2a003b7" + "5967063b-36bd-43e4-9db8-6b95b01d38c2" ], "x-ms-correlation-request-id": [ - "4b338bce-e11a-404b-b383-ba60b2a003b7" + "5967063b-36bd-43e4-9db8-6b95b01d38c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T192622Z:4b338bce-e11a-404b-b383-ba60b2a003b7" + "WESTCENTRALUS:20190403T222322Z:5967063b-36bd-43e4-9db8-6b95b01d38c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6195,38 +1394,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:26:22 GMT" + "Wed, 03 Apr 2019 22:23:22 GMT" ], - "Location": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2ODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2ODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1ODMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU9ETXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -6235,13 +1431,13 @@ "11996" ], "x-ms-request-id": [ - "a6c5caca-d647-424a-bf90-ac54c1e4fd7d" + "9b75aa86-ed5d-46e4-b9d3-91ab74143870" ], "x-ms-correlation-request-id": [ - "a6c5caca-d647-424a-bf90-ac54c1e4fd7d" + "9b75aa86-ed5d-46e4-b9d3-91ab74143870" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T192638Z:a6c5caca-d647-424a-bf90-ac54c1e4fd7d" + "WESTCENTRALUS:20190403T222337Z:9b75aa86-ed5d-46e4-b9d3-91ab74143870" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6249,35 +1445,35 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:26:38 GMT" + "Wed, 03 Apr 2019 22:23:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc2ODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjMk9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1ODMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU9ETXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -6286,13 +1482,13 @@ "11995" ], "x-ms-request-id": [ - "1c2896e2-3821-499e-9e14-4933a505fc7a" + "f2e22b78-fdac-4e30-b98f-bdfdd6d43d3f" ], "x-ms-correlation-request-id": [ - "1c2896e2-3821-499e-9e14-4933a505fc7a" + "f2e22b78-fdac-4e30-b98f-bdfdd6d43d3f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T192638Z:1c2896e2-3821-499e-9e14-4933a505fc7a" + "WESTCENTRALUS:20190403T222337Z:f2e22b78-fdac-4e30-b98f-bdfdd6d43d3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6300,20 +1496,24 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 19:26:38 GMT" + "Wed, 03 Apr 2019 22:23:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "Test-FrontDoorCrud": [ - "ps3397", - "ps7687" + "ps182", + "ps8583" ] }, "Variables": { diff --git a/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.FrontDoorTests/TestFrontDoorCrudRedirect.json b/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.FrontDoorTests/TestFrontDoorCrudRedirect.json new file mode 100644 index 000000000000..6484ecdcc9bf --- /dev/null +++ b/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.FrontDoorTests/TestFrontDoorCrudRedirect.json @@ -0,0 +1,1879 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Resources?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b6c35e0-ddf6-467a-8e4e-01619a511109" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "85efd8fe-2605-4ef7-b5bf-25d1ed5a5fe4" + ], + "x-ms-correlation-request-id": [ + "85efd8fe-2605-4ef7-b5bf-25d1ed5a5fe4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222339Z:85efd8fe-2605-4ef7-b5bf-25d1ed5a5fe4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:23:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7478" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzMjY2OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5637177-fbb9-4a0c-82b6-1d5349fdcc2b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "97147e73-1a60-4d76-8e05-0955b1f7332a" + ], + "x-ms-correlation-request-id": [ + "97147e73-1a60-4d76-8e05-0955b1f7332a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222340Z:97147e73-1a60-4d76-8e05-0955b1f7332a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:23:40 GMT" + ], + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669\",\r\n \"name\": \"ps2669\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2cfdc18-9dce-45e0-a826-68bb9b033ca1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a0acc50a-0d50-4fcf-a375-f939bf1bd399" + ], + "x-ms-client-request-id": [ + "e2cfdc18-9dce-45e0-a826-68bb9b033ca1" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "69af3b75-9807-4caa-be7b-4fa715c3dc8a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222342Z:69af3b75-9807-4caa-be7b-4fa715c3dc8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:23:41 GMT" + ], + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c5de456-313b-4bd9-a2a6-299607526278" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9b9cac99-4dda-4eaa-8bf9-f78a2c8ad016" + ], + "x-ms-client-request-id": [ + "7c5de456-313b-4bd9-a2a6-299607526278" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "31d5bc21-eaa1-49fd-8bfa-3b4879faa2a8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222406Z:31d5bc21-eaa1-49fd-8bfa-3b4879faa2a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:06 GMT" + ], + "Content-Length": [ + "4272" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps7261\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdoors/ps7261\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps7261.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration\",\r\n \"customFragment\": null,\r\n \"customHost\": \"contoso2\",\r\n \"customPath\": \"\",\r\n \"redirectProtocol\": \"MatchRequest\",\r\n \"customQueryString\": null,\r\n \"redirectType\": \"Moved\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps7261.azurefd.net\",\r\n \"friendlyName\": \"ps7261\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "007f3d42-0e05-4c57-844f-90639d60be7f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "980ae71f-c9bb-4c8c-b213-ac84839849c2" + ], + "x-ms-client-request-id": [ + "007f3d42-0e05-4c57-844f-90639d60be7f" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "385b9c91-95f5-4a1d-b7fa-01ad0e0e603e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222418Z:385b9c91-95f5-4a1d-b7fa-01ad0e0e603e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:18 GMT" + ], + "Content-Length": [ + "4277" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps7261\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdoors/ps7261\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps7261.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration\",\r\n \"customFragment\": null,\r\n \"customHost\": \"contoso2\",\r\n \"customPath\": \"/test\",\r\n \"redirectProtocol\": \"MatchRequest\",\r\n \"customQueryString\": null,\r\n \"redirectType\": \"Moved\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps7261.azurefd.net\",\r\n \"friendlyName\": \"ps7261\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ba9b2c8-5264-4d82-8a59-ea28cc8545be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "01378f52-e80a-45ee-9112-07741cd3adfb" + ], + "x-ms-client-request-id": [ + "9ba9b2c8-5264-4d82-8a59-ea28cc8545be" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "93f50b06-e144-42d8-80ee-556213812d91" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222430Z:93f50b06-e144-42d8-80ee-556213812d91" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:30 GMT" + ], + "Content-Length": [ + "4278" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps7261\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdoors/ps7261\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps7261.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration\",\r\n \"customFragment\": null,\r\n \"customHost\": \"contoso2\",\r\n \"customPath\": \"/test\",\r\n \"redirectProtocol\": \"MatchRequest\",\r\n \"customQueryString\": null,\r\n \"redirectType\": \"Moved\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Disabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps7261.azurefd.net\",\r\n \"friendlyName\": \"ps7261\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczcyNjE/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"ps7261\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration\",\r\n \"redirectType\": \"Moved\",\r\n \"redirectProtocol\": \"MatchRequest\",\r\n \"customHost\": \"contoso2\",\r\n \"customPath\": \"\"\r\n }\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadbalancingsetting1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 30\r\n },\r\n \"name\": \"healthProbeSetting1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/HealthProbeSettings/healthProbeSetting1\"\r\n }\r\n },\r\n \"name\": \"backendpool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"ps7261.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendendpoint1\"\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfd9379c-20a3-455c-b54c-7d32d7e27233" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2817" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "80103edf-15d3-4e84-8f97-19698d922fc3" + ], + "x-ms-client-request-id": [ + "dfd9379c-20a3-455c-b54c-7d32d7e27233" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdooroperationresults/b5fdf4fa-4194-42cf-be7f-5e355fc3c7ee?api-version=2019-04-01" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "1adf453e-397e-452c-b1c7-af62380e10d1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222344Z:1adf453e-397e-452c-b1c7-af62380e10d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:23:44 GMT" + ], + "Content-Length": [ + "4025" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7261\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdoors/ps7261\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps7261.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Creating\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration\",\r\n \"customFragment\": null,\r\n \"customHost\": \"contoso2\",\r\n \"customPath\": \"\",\r\n \"redirectProtocol\": \"MatchRequest\",\r\n \"customQueryString\": null,\r\n \"redirectType\": \"Moved\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps7261.azurefd.net\",\r\n \"friendlyName\": \"ps7261\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczcyNjE/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"ps7261\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration\",\r\n \"redirectType\": \"Moved\",\r\n \"redirectProtocol\": \"MatchRequest\",\r\n \"customHost\": \"contoso2\",\r\n \"customPath\": \"/test\"\r\n }\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadbalancingsetting1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 30\r\n },\r\n \"name\": \"healthProbeSetting1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/HealthProbeSettings/healthProbeSetting1\"\r\n }\r\n },\r\n \"name\": \"backendpool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"ps7261.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendendpoint1\"\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ea50e75-62cf-4cb8-914b-0cc892ead44f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2822" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdooroperationresults/235cfa21-7725-4f19-9a77-60985bf41d45/frontdoorresults/ps7261?api-version=2019-04-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f70b6235-4cc1-4eff-8ff3-287f79c054cc" + ], + "x-ms-client-request-id": [ + "2ea50e75-62cf-4cb8-914b-0cc892ead44f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdooroperationresults/235cfa21-7725-4f19-9a77-60985bf41d45?api-version=2019-04-01" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "ecf77378-b574-4a4e-85b5-3f37c4b42330" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222407Z:ecf77378-b574-4a4e-85b5-3f37c4b42330" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:06 GMT" + ], + "Content-Length": [ + "4025" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7261\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdoors/ps7261\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps7261.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration\",\r\n \"customFragment\": null,\r\n \"customHost\": \"contoso2\",\r\n \"customPath\": \"/test\",\r\n \"redirectProtocol\": \"MatchRequest\",\r\n \"customQueryString\": null,\r\n \"redirectType\": \"Moved\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps7261.azurefd.net\",\r\n \"friendlyName\": \"ps7261\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczcyNjE/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"ps7261\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration\",\r\n \"redirectType\": \"Moved\",\r\n \"redirectProtocol\": \"MatchRequest\",\r\n \"customHost\": \"contoso2\",\r\n \"customPath\": \"/test\"\r\n }\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadbalancingsetting1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 30\r\n },\r\n \"name\": \"healthProbeSetting1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/HealthProbeSettings/healthProbeSetting1\"\r\n }\r\n },\r\n \"name\": \"backendpool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"ps7261.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendendpoint1\"\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Disabled\"\r\n },\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53562dc8-a807-432b-8805-7f31ae8a4ee4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2823" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdooroperationresults/34e3012b-fd6f-4b5a-84ea-f18a1d730fa6/frontdoorresults/ps7261?api-version=2019-04-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4d395f69-1258-449b-9969-c5a56470c4d9" + ], + "x-ms-client-request-id": [ + "53562dc8-a807-432b-8805-7f31ae8a4ee4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdooroperationresults/34e3012b-fd6f-4b5a-84ea-f18a1d730fa6?api-version=2019-04-01" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "5df967ba-2742-4067-9d8a-88f895e9aacb" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222419Z:5df967ba-2742-4067-9d8a-88f895e9aacb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:18 GMT" + ], + "Content-Length": [ + "4026" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7261\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdoors/ps7261\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps7261.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration\",\r\n \"customFragment\": null,\r\n \"customHost\": \"contoso2\",\r\n \"customPath\": \"/test\",\r\n \"redirectProtocol\": \"MatchRequest\",\r\n \"customQueryString\": null,\r\n \"redirectType\": \"Moved\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Disabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps7261.azurefd.net\",\r\n \"friendlyName\": \"ps7261\"\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdooroperationresults/b5fdf4fa-4194-42cf-be7f-5e355fc3c7ee?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9iNWZkZjRmYS00MTk0LTQyY2YtYmU3Zi01ZTM1NWZjM2M3ZWU/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "522211b2-88be-4eaa-ae10-f19cdb090e64" + ], + "x-ms-client-request-id": [ + "96584f06-90e3-4c09-a840-04b7a331913b" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "1e0c126b-5c8d-464b-833a-8ee220aa01a9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222354Z:1e0c126b-5c8d-464b-833a-8ee220aa01a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:23:54 GMT" + ], + "Content-Length": [ + "50" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdooroperationresults/b5fdf4fa-4194-42cf-be7f-5e355fc3c7ee?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9iNWZkZjRmYS00MTk0LTQyY2YtYmU3Zi01ZTM1NWZjM2M3ZWU/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1645d7b8-7254-4bed-bb43-78ff02ca3981" + ], + "x-ms-client-request-id": [ + "3621e45c-a02e-44e7-8c8e-f4b1b9ee06be" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "f0fbe688-2e7d-4bee-8436-2e781a39e07b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222405Z:f0fbe688-2e7d-4bee-8436-2e781a39e07b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:05 GMT" + ], + "Content-Length": [ + "49" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczcyNjE/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a999c450-f4b9-461d-88db-4deea0950198" + ], + "x-ms-client-request-id": [ + "d2400fb1-60c8-4bd1-a24c-a54f7bbcd527" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "850aad7f-00f0-4d15-8207-45bd2007a0eb" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222405Z:850aad7f-00f0-4d15-8207-45bd2007a0eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:05 GMT" + ], + "Content-Length": [ + "4020" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7261\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdoors/ps7261\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps7261.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration\",\r\n \"customFragment\": null,\r\n \"customHost\": \"contoso2\",\r\n \"customPath\": \"\",\r\n \"redirectProtocol\": \"MatchRequest\",\r\n \"customQueryString\": null,\r\n \"redirectType\": \"Moved\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps7261.azurefd.net\",\r\n \"friendlyName\": \"ps7261\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczcyNjE/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de4617c2-4b73-42ff-8e07-8a0552b07fff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "30bad901-f033-4fff-906e-2934e50b4c1c" + ], + "x-ms-client-request-id": [ + "de4617c2-4b73-42ff-8e07-8a0552b07fff" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "d443cbcb-3b6e-4648-af99-3af3f5a56caa" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222406Z:d443cbcb-3b6e-4648-af99-3af3f5a56caa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:05 GMT" + ], + "Content-Length": [ + "4020" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7261\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdoors/ps7261\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps7261.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration\",\r\n \"customFragment\": null,\r\n \"customHost\": \"contoso2\",\r\n \"customPath\": \"\",\r\n \"redirectProtocol\": \"MatchRequest\",\r\n \"customQueryString\": null,\r\n \"redirectType\": \"Moved\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps7261.azurefd.net\",\r\n \"friendlyName\": \"ps7261\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczcyNjE/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "245ccc85-ed3a-465b-ab96-ff1e40e7a7de" + ], + "x-ms-client-request-id": [ + "8bf87254-8f24-4c89-bed9-11659d58edbc" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "f106d122-a328-4608-9365-fa29bb146a6e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222417Z:f106d122-a328-4608-9365-fa29bb146a6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:17 GMT" + ], + "Content-Length": [ + "4025" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7261\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdoors/ps7261\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps7261.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration\",\r\n \"customFragment\": null,\r\n \"customHost\": \"contoso2\",\r\n \"customPath\": \"/test\",\r\n \"redirectProtocol\": \"MatchRequest\",\r\n \"customQueryString\": null,\r\n \"redirectType\": \"Moved\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps7261.azurefd.net\",\r\n \"friendlyName\": \"ps7261\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczcyNjE/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "01dc827b-53a0-45b8-ae03-ee2a5acbb89f" + ], + "x-ms-client-request-id": [ + "3235267b-09df-465a-95e1-f9d157b15917" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "468fc0cc-8e87-429b-827f-df29c80ac8f2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222429Z:468fc0cc-8e87-429b-827f-df29c80ac8f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:29 GMT" + ], + "Content-Length": [ + "4026" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7261\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdoors/ps7261\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps7261.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/Frontdoors/ps7261/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorRedirectConfiguration\",\r\n \"customFragment\": null,\r\n \"customHost\": \"contoso2\",\r\n \"customPath\": \"/test\",\r\n \"redirectProtocol\": \"MatchRequest\",\r\n \"customQueryString\": null,\r\n \"redirectType\": \"Moved\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Disabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps7261.azurefd.net\",\r\n \"friendlyName\": \"ps7261\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczcyNjE/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6773f860-4948-443f-81c7-bde4eea7158d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "0888a9bd-6b46-4765-ba5f-ce2fa49c115a" + ], + "x-ms-correlation-request-id": [ + "0888a9bd-6b46-4765-ba5f-ce2fa49c115a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222452Z:0888a9bd-6b46-4765-ba5f-ce2fa49c115a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "145" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/frontdoors/ps7261' under resource group 'ps2669' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdooroperationresults/235cfa21-7725-4f19-9a77-60985bf41d45?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8yMzVjZmEyMS03NzI1LTRmMTktOWE3Ny02MDk4NWJmNDFkNDU/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "50cbf9e8-37a1-46b1-b5de-daa9deddd1df" + ], + "x-ms-client-request-id": [ + "9241786f-becd-4c1a-b26e-51e396961bef" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "f2b6b782-0c58-4e4a-a1f6-89175b9ee443" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222417Z:f2b6b782-0c58-4e4a-a1f6-89175b9ee443" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:17 GMT" + ], + "Content-Length": [ + "49" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdooroperationresults/34e3012b-fd6f-4b5a-84ea-f18a1d730fa6?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8zNGUzMDEyYi1mZDZmLTRiNWEtODRlYS1mMThhMWQ3MzBmYTY/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "af4760e5-c784-426c-b179-04c30d67ad6a" + ], + "x-ms-client-request-id": [ + "92f6f7dd-f4e7-4eba-bc2b-01bacfa8bf56" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "31cf3535-063c-48ca-a35f-41164040e0a6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222429Z:31cf3535-063c-48ca-a35f-41164040e0a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:29 GMT" + ], + "Content-Length": [ + "49" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2669/providers/Microsoft.Network/frontDoors/ps7261?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczcyNjE/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d33429d7-96b3-4482-a184-53902158f8a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdooroperationresults/b5f063d8-89d7-4641-b252-169aae9132da/frontdoorresults/ps7261?api-version=2019-04-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "10d148a6-ac54-48fe-8ee4-ca3e3072b561" + ], + "x-ms-client-request-id": [ + "d33429d7-96b3-4482-a184-53902158f8a7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdooroperationresults/b5f063d8-89d7-4641-b252-169aae9132da?api-version=2019-04-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "f17222c6-3321-47b2-aa00-961df721035f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222431Z:f17222c6-3321-47b2-aa00-961df721035f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdooroperationresults/b5f063d8-89d7-4641-b252-169aae9132da?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9iNWYwNjNkOC04OWQ3LTQ2NDEtYjI1Mi0xNjlhYWU5MTMyZGE/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "893224f8-a098-4f45-ab1d-d94e9510dc99" + ], + "x-ms-client-request-id": [ + "66f0140c-f18f-44a9-8ad2-05356b3200f7" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "94d5d456-5d84-4b93-a4c7-e52cdbc6dae6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222441Z:94d5d456-5d84-4b93-a4c7-e52cdbc6dae6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:40 GMT" + ], + "Content-Length": [ + "50" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdooroperationresults/b5f063d8-89d7-4641-b252-169aae9132da?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9iNWYwNjNkOC04OWQ3LTQ2NDEtYjI1Mi0xNjlhYWU5MTMyZGE/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "31af5390-1467-4b76-9b1f-415c58864add" + ], + "x-ms-client-request-id": [ + "dd33935f-23a4-4f02-99f4-2d396ca1fbb7" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "be65179a-0bae-48f1-a3ea-a89042ed6a64" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222451Z:be65179a-0bae-48f1-a3ea-a89042ed6a64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:51 GMT" + ], + "Content-Length": [ + "49" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669/providers/Microsoft.Network/frontdooroperationresults/b5f063d8-89d7-4641-b252-169aae9132da/frontdoorresults/ps7261?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzMjY2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9iNWYwNjNkOC04OWQ3LTQ2NDEtYjI1Mi0xNjlhYWU5MTMyZGEvZnJvbnRkb29ycmVzdWx0cy9wczcyNjE/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f0a4ad01-f953-463f-bcc5-3ecef0c36865" + ], + "x-ms-client-request-id": [ + "32fb6d57-b1b0-4f23-8ab3-c2d36e8a3e98" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "a896698e-adff-475a-b0cc-c1a2d10eb53a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222452Z:a896698e-adff-475a-b0cc-c1a2d10eb53a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:51 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2669?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzMjY2OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2b5d8fc-a82f-4170-8103-c89e176198f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NjktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "a71f2dba-3277-44ba-9270-4c7e3fdf38c4" + ], + "x-ms-correlation-request-id": [ + "a71f2dba-3277-44ba-9270-4c7e3fdf38c4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222453Z:a71f2dba-3277-44ba-9270-4c7e3fdf38c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:24:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NjktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5qa3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NjktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "db2e9a27-37b9-4a4a-80c7-11df686da1b3" + ], + "x-ms-correlation-request-id": [ + "db2e9a27-37b9-4a4a-80c7-11df686da1b3" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222508Z:db2e9a27-37b9-4a4a-80c7-11df686da1b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:25:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NjktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5qa3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NjktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "8d57f172-8e51-4023-bd37-f6d3fd2811ea" + ], + "x-ms-correlation-request-id": [ + "8d57f172-8e51-4023-bd37-f6d3fd2811ea" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222523Z:8d57f172-8e51-4023-bd37-f6d3fd2811ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:25:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NjktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5qa3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "6b686dd4-6e55-468f-ac4e-42a7e14dee71" + ], + "x-ms-correlation-request-id": [ + "6b686dd4-6e55-468f-ac4e-42a7e14dee71" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222538Z:6b686dd4-6e55-468f-ac4e-42a7e14dee71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:25:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NjktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5qa3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "f7fd2845-3712-45ad-ba0c-ed453a4d3310" + ], + "x-ms-correlation-request-id": [ + "f7fd2845-3712-45ad-ba0c-ed453a4d3310" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222538Z:f7fd2845-3712-45ad-ba0c-ed453a4d3310" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 03 Apr 2019 22:25:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-FrontDoorCrudRedirect": [ + "ps7261", + "ps2669" + ] + }, + "Variables": { + "SubscriptionId": "47f4bc68-6fe4-43a2-be8b-dfd0e290efa2" + } +} \ No newline at end of file diff --git a/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.FrontDoorTests/TestFrontDoorCrudWithPiping.json b/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.FrontDoorTests/TestFrontDoorCrudWithPiping.json index 7aa07fbbb5d5..5f0f7cd74e6e 100644 --- a/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.FrontDoorTests/TestFrontDoorCrudWithPiping.json +++ b/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.FrontDoorTests/TestFrontDoorCrudWithPiping.json @@ -1,49 +1,42 @@ { "Entries": [ { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Byb3ZpZGVycy8/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Resources?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8cc6587-b226-4d7a-866e-8eadbb5f2910" + "ce5088e9-dcc0-4a22-96e7-fe73555ffb67" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configurations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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\": \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/importImage\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/scheduleRun\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/listLogSasUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Korea South\",\r\n \"Korea 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 \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\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/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\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 \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\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 \"Korea South\",\r\n \"Korea 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 \"2018-03-31\",\r\n \"2017-08-31\",\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 \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-04-01\",\r\n \"2018-01-22\",\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 \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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 \"2018-04-01\",\r\n \"2018-01-22\",\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\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\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 \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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 \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n },\r\n {\r\n \"applicationId\": \"b503eb83-1222-4dcc-b116-b98ed5216e05\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\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 \"2018-05-01-preview\",\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\": \"components/query\",\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 \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\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 \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\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 \"2018-04-20\"\r\n ]\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 \"2018-05-01-preview\",\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\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"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 \"France Central\",\r\n \"West US\",\r\n \"Global\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\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 \"France Central\",\r\n \"West US\",\r\n \"Global\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\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 \"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 US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\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\": \"metricNamespaces\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"UK South 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"guestDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"guestDiagnosticSettingsAssociation\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North 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 \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"interfaceEndpoints\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\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 \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"publicIPPrefixes\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"locations/availableDelegations\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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 \"2018-04-01\",\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 \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"resourceType\": \"azureFirewalls\",\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 \"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 \"France Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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\": \"views\",\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-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\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 \"2018-06-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\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\": \"Compliances\",\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\": \"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\": \"discoveredSecuritySolutions\",\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/discoveredSecuritySolutions\",\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\": \"allowedConnections\",\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/allowedConnections\",\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\": \"topologies\",\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/topologies\",\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 \"North Europe\",\r\n \"West Europe\",\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 \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\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\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West 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/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West 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/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 \"resourceType\": \"InformationProtectionPolicies\",\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\": \"settings\",\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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/geoBackupPolicies\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/extendedAuditingSettings\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/interfaceEndpointProfiles\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/interfaceEndpointProfileOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/interfaceEndpointProfileAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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\": \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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/usages\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/instances\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"validate\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"sourceControls\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"availableStacks\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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/hostNameBindings\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"certificates\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-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\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"sites/metrics\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\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 \"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 \"South 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 \"France Central\"\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 \"2018-02-01\",\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 \"2018-02-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/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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/premieraddons\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\"\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 \"2018-02-01\",\r\n \"2017-08-01\",\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 \"2018-02-01\",\r\n \"2017-08-01\",\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 \"2018-02-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\": \"functions\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"deletedSites\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-07-01\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\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\": \"DomainServices/oucontainer\",\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 ]\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-03-01\",\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 \"2018-03-01\",\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 \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\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 \"2018-01-01\",\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 \"2018-01-01\",\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 \"2018-01-01\",\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 \"2018-01-01\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\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 \"2018-01-01-preview\",\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 \"2018-01-01-preview\",\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\": \"denyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-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 \"2018-05-01\",\r\n \"2018-03-01\",\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 \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\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 \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/checkNameAvailability\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\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 \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\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 \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"billingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingRoleDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingRoleAssignments\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingPermissions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listBillingAccountsWithCreateProjectPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/listProjectsWithCreateSubscriptionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/eligibleOffers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/paymentMethods\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoices\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/transactions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/transactions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-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 \"2018-03-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-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-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-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-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/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\": \"domainNames/serviceCertificates\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"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 \"France Central\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\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\": \"expressRouteCrossConnections/peerings\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\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\": \"storageAccounts/vmImages\",\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-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"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 \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\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 \"Central US EUAP\"\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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AggregatedCost\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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\": \"Charges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"credits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\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 \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"serviceAssociationLinks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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 \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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 \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateAddress\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\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 \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\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 US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\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 \"2018-06-01\",\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 \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getFeatureValue\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West Europe\"\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 \"West Europe\"\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/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DBforMariaDB\",\r\n \"namespace\": \"Microsoft.DBforMariaDB\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"managedByRoleDefinitionId\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"operationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"locations\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"locations/deleteVirtualNetworkOrSubnets\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-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 \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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\": \"clusters\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\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 \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\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\": \"namespaces/eventhubs/authorizationrules\",\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\": \"namespaces/eventhubs/consumergroups\",\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\": \"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 \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.HanaOnAzure\",\r\n \"namespace\": \"Microsoft.HanaOnAzure\",\r\n \"authorization\": {\r\n \"applicationId\": \"cc5476ec-3074-44d1-8461-711f5d9b0e39\",\r\n \"roleDefinitionId\": \"4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hanaInstances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\",\r\n \"2017-06-15-preview\",\r\n \"2016-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\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 \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\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 \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.IoTSpaces\",\r\n \"namespace\": \"Microsoft.IoTSpaces\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\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 \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/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 \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\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 \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\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, SystemAssignedResourceIdentity\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\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 \"2018-07-01-preview\",\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 \"2018-07-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\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\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US EUAP\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\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 \"Central US EUAP\"\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 \"Central US EUAP\"\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 \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\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 \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\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 \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\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\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\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\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\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\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\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\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/computes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/computeOperationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest 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 \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\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 \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"12fb057d-b751-47cd-857c-f2934bb677b4\",\r\n \"roleDefinitionId\": \"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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 ],\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 \"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 ],\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 \"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 ],\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 \"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 ],\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"asyncOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"remediations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyTrackedResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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-12-01-preview\",\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-12-01-preview\",\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 \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\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-12-01-preview\",\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 \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\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 \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\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 \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\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-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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\": \"namespaces/authorizationrules\",\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\": \"namespaces/queues\",\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\": \"namespaces/queues/authorizationrules\",\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\": \"namespaces/topics\",\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\": \"namespaces/topics/authorizationrules\",\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\": \"namespaces/topics/subscriptions\",\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\": \"namespaces/topics/subscriptions/rules\",\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\": \"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 \"resourceType\": \"namespaces/eventgridfilters\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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\": \"clusters/applications\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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/environments\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d10de03d-5ba3-497a-90e6-7ff8c9736059\",\r\n \"roleDefinitionId\": \"BC13595A-E262-4621-929E-56FF90E6BF18\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-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 \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/networkOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/volumeOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/gatewayOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/secretOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-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 \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"managedByAuthorization\": {\r\n \"managedByResourceRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitRequests\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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, SystemAssignedResourceIdentity\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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\": \"operations\",\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 },\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"componentsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstancesSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notificationSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2368d027-f996-4edb-bf48-928f98f2ab8c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "469320" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-request-id": [ - "6b836ca6-7275-42dc-ac99-92c97b6ae63d" + "b6ab02b3-e1c5-4b67-be3f-06b62d237b80" ], "x-ms-correlation-request-id": [ - "6b836ca6-7275-42dc-ac99-92c97b6ae63d" + "b6ab02b3-e1c5-4b67-be3f-06b62d237b80" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T183227Z:6b836ca6-7275-42dc-ac99-92c97b6ae63d" + "WESTCENTRALUS:20190403T222542Z:b6ab02b3-e1c5-4b67-be3f-06b62d237b80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,65 +44,65 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:32:27 GMT" + "Wed, 03 Apr 2019 22:25:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7478" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNTk2Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], "x-ms-client-request-id": [ - "f68ff6fb-d917-4c2f-ac3a-333b90b11402" + "d2d71352-aa6b-4e2c-84c7-2281ef7560fe" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000\",\r\n \"name\": \"ps4000\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "165" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "ac8a48de-9a93-4134-ace3-738ffee5fdd3" + "134fca9f-18fc-471e-9690-98fdc3a0cd1e" ], "x-ms-correlation-request-id": [ - "ac8a48de-9a93-4134-ace3-738ffee5fdd3" + "134fca9f-18fc-471e-9690-98fdc3a0cd1e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T183228Z:ac8a48de-9a93-4134-ace3-738ffee5fdd3" + "WESTCENTRALUS:20190403T222542Z:134fca9f-18fc-471e-9690-98fdc3a0cd1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,113 +110,128 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:32:28 GMT" + "Wed, 03 Apr 2019 22:25:41 GMT" + ], + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967\",\r\n \"name\": \"ps5967\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68336c1c-6802-45ca-bfec-5583ac36ccdb" + "ce87cd2f-70fc-4e09-b00f-ae6a4f0ac8ec" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], "x-ms-request-id": [ - "a69ef75b-3c49-4e14-b848-ed855b734f09" + "8d08ed56-4397-4b11-b589-c57cc7591a7d" ], - "x-ms-correlation-request-id": [ - "a69ef75b-3c49-4e14-b848-ed855b734f09" + "x-ms-client-request-id": [ + "ce87cd2f-70fc-4e09-b00f-ae6a4f0ac8ec" ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183228Z:a69ef75b-3c49-4e14-b848-ed855b734f09" + "OData-Version": [ + "4.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0cd5e7eb-aaad-4555-afe6-e1665919f3fb" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T222543Z:0cd5e7eb-aaad-4555-afe6-e1665919f3fb" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:32:28 GMT" + "Wed, 03 Apr 2019 22:25:42 GMT" + ], + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f94afd46-5cf6-48ab-963d-03ba93422e1c" + "ab9b63ec-247e-411d-b15b-5dec10380146" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps1882\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdoors/ps1882\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tag1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1882.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1882.azurefd.net\",\r\n \"friendlyName\": \"ps1882\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4172" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f0d43863-1109-4ae4-aff8-e9c03a57237d" + "55183d4a-27d9-42bc-9012-f21e0d2b6e09" ], "x-ms-client-request-id": [ - "f94afd46-5cf6-48ab-963d-03ba93422e1c" + "ab9b63ec-247e-411d-b15b-5dec10380146" ], "OData-Version": [ "4.0" @@ -231,74 +239,74 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11994" ], "x-ms-correlation-request-id": [ - "1a014052-f0fc-43b7-882a-8fc58fa3e526" + "f6bea10e-30da-4e0f-9d4f-778e24998bf4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T183854Z:1a014052-f0fc-43b7-882a-8fc58fa3e526" + "WESTCENTRALUS:20190403T222608Z:f6bea10e-30da-4e0f-9d4f-778e24998bf4" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:38:53 GMT" + "Wed, 03 Apr 2019 22:26:08 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "4427" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps1467\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdoors/ps1467\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1467.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1467.azurefd.net\",\r\n \"friendlyName\": \"ps1467\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a970fa8-ddc6-466d-8597-c51832e5e187" + "c5f78ff1-f909-4627-a8d5-3b0332d43c02" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps1882\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdoors/ps1882\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value4\",\r\n \"tag1\": \"value3\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1882.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1882.azurefd.net\",\r\n \"friendlyName\": \"ps1882\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4172" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "86f97656-e648-4dca-a676-e2e661f7eca5" + "a706a0aa-e64e-40f1-a198-4302aa0a7caf" ], "x-ms-client-request-id": [ - "7a970fa8-ddc6-466d-8597-c51832e5e187" + "c5f78ff1-f909-4627-a8d5-3b0332d43c02" ], "OData-Version": [ "4.0" @@ -306,71 +314,71 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11990" ], "x-ms-correlation-request-id": [ - "ed79f871-2ceb-494f-8e8d-2154d301373d" + "8ce9485e-e592-4083-b69d-f6b69de8b973" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T184428Z:ed79f871-2ceb-494f-8e8d-2154d301373d" + "WESTCENTRALUS:20190403T222621Z:8ce9485e-e592-4083-b69d-f6b69de8b973" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:44:27 GMT" + "Wed, 03 Apr 2019 22:26:20 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "4427" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps1467\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdoors/ps1467\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value3\",\r\n \"tag2\": \"value4\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1467.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1467.azurefd.net\",\r\n \"friendlyName\": \"ps1467\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE4ODI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE0Njc/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"ps1882\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadbalancingsetting1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 30\r\n },\r\n \"name\": \"healthProbeSetting1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 1,\r\n \"weight\": 50\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/HealthProbeSettings/healthProbeSetting1\"\r\n }\r\n },\r\n \"name\": \"backendpool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"ps1882.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendendpoint1\"\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"ps1467\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/BackendPools/backendPool1\"\r\n }\r\n }\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadbalancingsetting1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 30\r\n },\r\n \"name\": \"healthProbeSetting1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/HealthProbeSettings/healthProbeSetting1\"\r\n }\r\n },\r\n \"name\": \"backendpool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"ps1467.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendendpoint1\"\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2621" - ], "x-ms-client-request-id": [ - "86d6157b-5846-48e3-8c53-06df6fa3a777" + "3ecc1555-4b7f-4edc-8a6c-70480a6f4b15" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps1882\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdoors/ps1882\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tag1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1882.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1882.azurefd.net\",\r\n \"friendlyName\": \"ps1882\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3933" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ], "Content-Type": [ - "application/json; odata.metadata=minimal" + "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "2928" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -379,13 +387,13 @@ "10" ], "x-ms-request-id": [ - "bde476d6-8a9d-4331-96d6-0bedaa754578" + "3dedc6ce-e022-47e9-9de8-4633b20833d5" ], "x-ms-client-request-id": [ - "86d6157b-5846-48e3-8c53-06df6fa3a777" + "3ecc1555-4b7f-4edc-8a6c-70480a6f4b15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01" + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdooroperationresults/b377e9b9-6f9c-40c5-9a71-3529370b4759?api-version=2019-04-01" ], "OData-Version": [ "4.0" @@ -393,86 +401,89 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "1e010002-3ab3-4358-8005-1485803ee707" + "1699c53b-4526-4d5a-80e1-14e27c622629" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T183231Z:1e010002-3ab3-4358-8005-1485803ee707" + "WESTCENTRALUS:20190403T222546Z:1699c53b-4526-4d5a-80e1-14e27c622629" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:32:30 GMT" + "Wed, 03 Apr 2019 22:25:46 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "4172" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps1467\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdoors/ps1467\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1467.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Creating\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1467.azurefd.net\",\r\n \"friendlyName\": \"ps1467\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE4ODI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE0Njc/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"ps1882\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadbalancingsetting1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 30\r\n },\r\n \"name\": \"healthProbeSetting1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 1,\r\n \"weight\": 50\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/HealthProbeSettings/healthProbeSetting1\"\r\n }\r\n },\r\n \"name\": \"backendpool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"ps1882.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendendpoint1\"\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag2\": \"value4\",\r\n \"tag1\": \"value3\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"ps1467\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/BackendPools/backendPool1\"\r\n }\r\n }\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadbalancingsetting1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 30\r\n },\r\n \"name\": \"healthProbeSetting1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/HealthProbeSettings/healthProbeSetting1\"\r\n }\r\n },\r\n \"name\": \"backendpool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"ps1467.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendendpoint1\"\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"tag1\": \"value3\",\r\n \"tag2\": \"value4\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2621" - ], "x-ms-client-request-id": [ - "e6320eda-c4e2-452f-931a-22186d61645b" + "078b40f6-2500-4f80-a5e9-6d999bc5e389" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps1882\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdoors/ps1882\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value4\",\r\n \"tag1\": \"value3\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1882.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1882.azurefd.net\",\r\n \"friendlyName\": \"ps1882\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3928" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ], "Content-Type": [ - "application/json; odata.metadata=minimal" + "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "2928" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdooroperationresults/23826d42-7c60-4e7f-8860-e1f421f74c28/frontdoorresults/ps1467?api-version=2019-04-01" + ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "b61c068d-a467-4041-b9c7-8c5e6ac1cbe5" + "52a8db81-993b-46af-b750-bb2ae98be1c5" ], "x-ms-client-request-id": [ - "e6320eda-c4e2-452f-931a-22186d61645b" + "078b40f6-2500-4f80-a5e9-6d999bc5e389" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01" + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdooroperationresults/23826d42-7c60-4e7f-8860-e1f421f74c28?api-version=2019-04-01" ], "OData-Version": [ "4.0" @@ -480,71 +491,68 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "6a8d6cf9-b1f4-4755-9053-78aced16685d" + "e5879eb6-20f8-4a5f-8ea6-e4b8835b3e0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T183855Z:6a8d6cf9-b1f4-4755-9053-78aced16685d" + "WESTCENTRALUS:20190403T222609Z:e5879eb6-20f8-4a5f-8ea6-e4b8835b3e0c" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:38:54 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b/frontdoorresults/ps1882?api-version=2018-08-01" + "Wed, 03 Apr 2019 22:26:09 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "4167" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps1467\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdoors/ps1467\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value3\",\r\n \"tag2\": \"value4\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1467.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1467.azurefd.net\",\r\n \"friendlyName\": \"ps1467\"\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdooroperationresults/b377e9b9-6f9c-40c5-9a71-3529370b4759?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9iMzc3ZTliOS02ZjljLTQwYzUtOWE3MS0zNTI5MzcwYjQ3NTk/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fb56d487-0f5c-487c-a3e9-0c0fcd1f26d1" + "d4cb19be-5b16-4e65-a20f-b05432a04f9a" ], "x-ms-client-request-id": [ - "34f9bfee-9cbc-42e6-86da-cab73023bfd7" + "9690c3bf-966b-43cb-999d-92b1ca5d9a70" ], "OData-Version": [ "4.0" @@ -552,68 +560,68 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "82f3038b-1b0d-403a-bd4a-fbc34bfd4d22" + "a92ffe6e-2ecc-4660-bf8c-9eab5d82e0ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T183242Z:82f3038b-1b0d-403a-bd4a-fbc34bfd4d22" + "WESTCENTRALUS:20190403T222557Z:a92ffe6e-2ecc-4660-bf8c-9eab5d82e0ab" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:32:41 GMT" + "Wed, 03 Apr 2019 22:25:56 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "50" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdooroperationresults/b377e9b9-6f9c-40c5-9a71-3529370b4759?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9iMzc3ZTliOS02ZjljLTQwYzUtOWE3MS0zNTI5MzcwYjQ3NTk/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5d83d3d5-33af-4c2b-9f26-52d7eb240b97" + "58bd6672-127e-45ea-9541-6b866d3d4307" ], "x-ms-client-request-id": [ - "ef9205f0-113a-46a6-82eb-f51990cf0ddd" + "3292b1b1-199d-44da-b45f-6e63ac0cb026" ], "OData-Version": [ "4.0" @@ -621,68 +629,68 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-correlation-request-id": [ - "a685b236-3e7f-4dc3-b8bb-9e53896cbf96" + "63f2963d-345a-4792-8261-903d9daf44b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T183252Z:a685b236-3e7f-4dc3-b8bb-9e53896cbf96" + "WESTCENTRALUS:20190403T222607Z:63f2963d-345a-4792-8261-903d9daf44b0" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:32:51 GMT" + "Wed, 03 Apr 2019 22:26:07 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "49" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE0Njc/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c9ffbfb3-53cb-4990-a020-8294eed51578" + "061d04c2-1583-43cd-a852-329fc6b33438" ], "x-ms-client-request-id": [ - "efc44ae6-c558-4f9c-b7e0-1fd0132d6f43" + "6d801882-3890-4bfa-a7ca-a5944145a4ee" ], "OData-Version": [ "4.0" @@ -690,68 +698,74 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-correlation-request-id": [ - "f6ef9b74-c0ee-4099-9d09-377a20eadfbd" + "fc5db68a-9c28-4a10-97a9-7827f1cf78e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T183302Z:f6ef9b74-c0ee-4099-9d09-377a20eadfbd" + "WESTCENTRALUS:20190403T222608Z:fc5db68a-9c28-4a10-97a9-7827f1cf78e0" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:33:01 GMT" + "Wed, 03 Apr 2019 22:26:07 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "4167" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps1467\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdoors/ps1467\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1467.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1467.azurefd.net\",\r\n \"friendlyName\": \"ps1467\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE0Njc/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4908b682-b2ff-4e68-8e4c-12219cb5fd2f" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "510a9de3-d2c5-40cc-b987-6debf3b87962" + "9d0cfcc3-bb89-48c1-9a0e-fa35c2a6c28f" ], "x-ms-client-request-id": [ - "dfea97bb-bb1e-48a7-b10c-e38b3534aaf8" + "4908b682-b2ff-4e68-8e4c-12219cb5fd2f" ], "OData-Version": [ "4.0" @@ -759,68 +773,68 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" ], "x-ms-correlation-request-id": [ - "39bb282e-7931-43f0-8971-bbb9d789e5cc" + "3691d41a-89d4-4227-b2e4-eb690ae0c6f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T183312Z:39bb282e-7931-43f0-8971-bbb9d789e5cc" + "WESTCENTRALUS:20190403T222608Z:3691d41a-89d4-4227-b2e4-eb690ae0c6f7" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:33:11 GMT" + "Wed, 03 Apr 2019 22:26:08 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "4167" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps1467\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdoors/ps1467\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1467.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1467.azurefd.net\",\r\n \"friendlyName\": \"ps1467\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE0Njc/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "337e84c7-0f29-4d62-8357-66e5506bc472" + "a225fb03-576d-4df1-9de8-c36f1b694d7e" ], "x-ms-client-request-id": [ - "60dfb30e-988c-4339-ab54-3cada9c78c28" + "5dbb1a88-5867-4216-bc6c-3f35708fbc7c" ], "OData-Version": [ "4.0" @@ -828,68 +842,74 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "f21f2c77-bdad-4a9f-8c94-9113d688ad98" + "669763ec-a79b-488b-bfd2-cd00ac09de99" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T183323Z:f21f2c77-bdad-4a9f-8c94-9113d688ad98" + "WESTCENTRALUS:20190403T222620Z:669763ec-a79b-488b-bfd2-cd00ac09de99" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:33:23 GMT" + "Wed, 03 Apr 2019 22:26:20 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "4167" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps1467\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdoors/ps1467\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value3\",\r\n \"tag2\": \"value4\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1467.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1467.azurefd.net\",\r\n \"friendlyName\": \"ps1467\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE0Njc/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "daf9a3b1-70ae-4d5d-90e0-f46a0ba0dc46" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ab9b0638-3eeb-4ffc-9bc9-d594e5390c7d" + "673db34c-8a7a-4ce4-8fe9-a44080f11332" ], "x-ms-client-request-id": [ - "5c0a819b-60b1-4d21-bfee-7891ea095392" + "daf9a3b1-70ae-4d5d-90e0-f46a0ba0dc46" ], "OData-Version": [ "4.0" @@ -897,6497 +917,143 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "fa3d2038-b94d-43d2-a7e7-bd31d9252f64" + "29567a9d-620b-454f-8837-dd95b04ccef7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T183333Z:fa3d2038-b94d-43d2-a7e7-bd31d9252f64" + "WESTCENTRALUS:20190403T222621Z:29567a9d-620b-454f-8837-dd95b04ccef7" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:33:33 GMT" + "Wed, 03 Apr 2019 22:26:20 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "4167" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps1467\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdoors/ps1467\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value3\",\r\n \"tag2\": \"value4\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1467.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/Frontdoors/ps1467/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1467.azurefd.net\",\r\n \"friendlyName\": \"ps1467\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE0Njc/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "449d4e59-85c3-4c73-b952-40cd68d49dea" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e9ffff72-2da4-4637-8029-bc873f1681d8" + "9333a76c-f0d9-4ac0-941e-e9d821a63c50" ], "x-ms-client-request-id": [ - "86456468-394e-4a12-b6c9-aab2d2104e57" - ], - "OData-Version": [ - "4.0" + "449d4e59-85c3-4c73-b952-40cd68d49dea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11987" ], "x-ms-correlation-request-id": [ - "555c2b76-1d08-4306-9862-313e7da65d35" + "3ed2f1d7-49dd-48e6-a81a-953c8dd5f4bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T183343Z:555c2b76-1d08-4306-9862-313e7da65d35" + "WESTCENTRALUS:20190403T222633Z:3ed2f1d7-49dd-48e6-a81a-953c8dd5f4bc" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:33:43 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7bf6d83f-5d64-4f93-93ec-d10491e42b58" - ], - "x-ms-client-request-id": [ - "8788da73-6037-43e4-b433-ae1829ccee5f" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-correlation-request-id": [ - "3450b2dd-cf1a-4ec5-a0bf-0d150bad38c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183353Z:3450b2dd-cf1a-4ec5-a0bf-0d150bad38c3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:33:53 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6964bf5f-4acb-44d6-88f2-835c2fdda6f9" - ], - "x-ms-client-request-id": [ - "2d91516a-5995-49d6-b699-ea0231890d6c" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-correlation-request-id": [ - "b1e2c2e5-9465-4d4d-8087-a857d287035a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183404Z:b1e2c2e5-9465-4d4d-8087-a857d287035a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:34:03 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a9cd3d15-7086-4a85-afe0-49238037775f" - ], - "x-ms-client-request-id": [ - "f43571f1-9f88-473a-ab9e-0c6b479a4fdf" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-correlation-request-id": [ - "e246f972-50a2-4a13-bf73-3eec96430fb7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183414Z:e246f972-50a2-4a13-bf73-3eec96430fb7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:34:13 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4b2f03de-772a-42d5-ba92-8a8441cb54d6" - ], - "x-ms-client-request-id": [ - "e3e6764f-c6fe-4062-8f51-2cf441b083eb" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "5175f699-a2f1-41bd-a5c7-2168336f41af" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183425Z:5175f699-a2f1-41bd-a5c7-2168336f41af" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:34:24 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8bdc1de1-a332-42e7-8752-81a84e419bbd" - ], - "x-ms-client-request-id": [ - "ba2d51d9-9c82-4168-9682-1992e50e2f11" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "914d5c4a-6068-4f14-80bc-710c968b62a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183435Z:914d5c4a-6068-4f14-80bc-710c968b62a6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:34:35 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "462b2b6e-2b3e-4fb2-a69e-dabbaab373a7" - ], - "x-ms-client-request-id": [ - "0a9148a1-895d-4593-948b-415506d21d2e" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "a76247d6-5102-47cb-ba6f-19ae4dd5761c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183446Z:a76247d6-5102-47cb-ba6f-19ae4dd5761c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:34:45 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bba03513-28f6-40c3-a76c-ddb36b021a06" - ], - "x-ms-client-request-id": [ - "5c05516b-30a0-4fb4-b576-68fe534b39d5" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "d27b0a04-2cd3-4693-aae8-b076359dedeb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183456Z:d27b0a04-2cd3-4693-aae8-b076359dedeb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:34:55 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "25ba53b2-c108-4ce7-b5bc-c771a43e0d55" - ], - "x-ms-client-request-id": [ - "dda2b073-d36e-47fc-a6a8-8df97bc8495c" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "f45e2d31-da89-4a23-82f8-42af4cf9f4c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183506Z:f45e2d31-da89-4a23-82f8-42af4cf9f4c7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:35:06 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8b54c362-2721-4005-a952-08290724789e" - ], - "x-ms-client-request-id": [ - "81354b27-9af8-4b6a-9d51-89c7a0b5c191" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "1e6d03a9-3f6e-4540-aacf-881a04dfd946" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183516Z:1e6d03a9-3f6e-4540-aacf-881a04dfd946" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:35:16 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cb1dee85-91ea-47b4-8573-a34ca0cbd25d" - ], - "x-ms-client-request-id": [ - "5803eb85-ddb9-4aa9-85cc-e371dd2cbf6d" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "36c2fdfe-2913-4f48-a64f-cd4caf63ec1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183526Z:36c2fdfe-2913-4f48-a64f-cd4caf63ec1c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:35:26 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c2d84eb6-68ba-4af1-9348-5478df43de51" - ], - "x-ms-client-request-id": [ - "92d088ff-8a20-477a-a12f-dc495c11b00e" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-correlation-request-id": [ - "71dc12ea-a7cf-435b-865c-1fe586e34358" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183537Z:71dc12ea-a7cf-435b-865c-1fe586e34358" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:35:36 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "46c5b10c-17d9-4fba-b938-0c1174d16eea" - ], - "x-ms-client-request-id": [ - "9be0a6c6-c8f7-414a-bdd9-2a5720bd88ca" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-correlation-request-id": [ - "ba0989ec-a3e8-4da8-a536-69c4658c5209" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183547Z:ba0989ec-a3e8-4da8-a536-69c4658c5209" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:35:47 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9c5f1fcf-9a6e-43e7-91d5-39893acb2780" - ], - "x-ms-client-request-id": [ - "760eed56-f7bd-4bc6-9b7e-7f2f71ed8cd1" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-correlation-request-id": [ - "561e414e-c925-47bd-a13b-c8be6d3d708e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183557Z:561e414e-c925-47bd-a13b-c8be6d3d708e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:35:57 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f96a0c26-9142-473a-a287-ac0bf3dea2b0" - ], - "x-ms-client-request-id": [ - "affdc87b-34bd-4b9c-8e71-07ae625d9828" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-correlation-request-id": [ - "30bde333-8cb4-4e88-a9d6-4282b6c48e76" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183608Z:30bde333-8cb4-4e88-a9d6-4282b6c48e76" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:36:07 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eb274422-50c4-4e04-91d5-1445f20738ec" - ], - "x-ms-client-request-id": [ - "5276b6e9-35db-456e-9298-1f0b01a516da" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-correlation-request-id": [ - "28bffe05-d91c-4512-abdb-c3f33603573b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183618Z:28bffe05-d91c-4512-abdb-c3f33603573b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:36:17 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f76efe16-0f88-4192-a654-86c459aa5e03" - ], - "x-ms-client-request-id": [ - "23d7403e-f7f1-4e6b-924d-a4c53540f5b9" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-correlation-request-id": [ - "433bbfd1-b52a-4ffa-8a4f-9db0bed10ea0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183628Z:433bbfd1-b52a-4ffa-8a4f-9db0bed10ea0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:36:27 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7b29916a-4dca-4efe-9547-e009ef1828b7" - ], - "x-ms-client-request-id": [ - "4994d856-35bf-47c0-bc75-81cf666dc6c9" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-correlation-request-id": [ - "2b736794-16ff-4d0d-a982-1b4d05998993" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183638Z:2b736794-16ff-4d0d-a982-1b4d05998993" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:36:38 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5cf89db4-f8b8-4d6d-85a4-fda86550316c" - ], - "x-ms-client-request-id": [ - "999ae5ed-a01a-408f-a240-067f748432db" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-correlation-request-id": [ - "0e9395d5-437a-43ad-91ac-5157e47cb60f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183649Z:0e9395d5-437a-43ad-91ac-5157e47cb60f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:36:48 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "75f09705-fd72-40a1-b313-e106a49a9e24" - ], - "x-ms-client-request-id": [ - "9186911e-2b9f-4419-abe7-5c8748f43382" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-correlation-request-id": [ - "dbf655ea-9e5f-4e9f-af86-8c357587f6a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183659Z:dbf655ea-9e5f-4e9f-af86-8c357587f6a3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:36:58 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "abfa094b-3d5c-4665-ae67-1b2b98da3d89" - ], - "x-ms-client-request-id": [ - "02ff4d4c-a123-48a4-bd34-5548b20f695e" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-correlation-request-id": [ - "467848b3-ee50-45f9-9ffc-e9fecb60ebb9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183709Z:467848b3-ee50-45f9-9ffc-e9fecb60ebb9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:37:09 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "74eccfec-2d62-4ebf-bb92-212f1b0e8022" - ], - "x-ms-client-request-id": [ - "1c9d1aa7-23bb-4a17-acab-885a79c9d4d7" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-correlation-request-id": [ - "1360ecd6-2703-4a63-b2c4-7f5d35ccf3bf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183720Z:1360ecd6-2703-4a63-b2c4-7f5d35ccf3bf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:37:19 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ad5c8f03-667d-4a6b-a23b-5e43aa8cdac9" - ], - "x-ms-client-request-id": [ - "da8bbf05-a168-4fb3-8746-98c1753c9c83" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-correlation-request-id": [ - "870c48eb-8e77-443d-8069-1b4da963f7e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183730Z:870c48eb-8e77-443d-8069-1b4da963f7e0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:37:29 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "819ad1c0-176b-49da-a1ff-ff589821006b" - ], - "x-ms-client-request-id": [ - "f17239b0-f184-4b9a-baaf-71e659508c07" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-correlation-request-id": [ - "c543fcd3-3f4a-4ab0-967f-5bf90eb5e393" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183740Z:c543fcd3-3f4a-4ab0-967f-5bf90eb5e393" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:37:40 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "476a577c-dbee-4fd4-bd20-4c7094eb548f" - ], - "x-ms-client-request-id": [ - "42c9604e-4c55-4229-b6fd-20135fe1bd87" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-correlation-request-id": [ - "7fdc6d12-7529-4e4a-af88-775e40c5118d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183750Z:7fdc6d12-7529-4e4a-af88-775e40c5118d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:37:50 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e81cfe64-ad7f-44a9-a04e-eba066d020aa" - ], - "x-ms-client-request-id": [ - "c6f89567-7184-4298-a59a-a7136ce5a676" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-correlation-request-id": [ - "95c11544-d2b8-4891-81b8-69b66d9c2a57" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183801Z:95c11544-d2b8-4891-81b8-69b66d9c2a57" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:38:00 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "16134e5c-7fdb-43f6-b5e4-a17a72ed0d38" - ], - "x-ms-client-request-id": [ - "ba245bbd-1103-418b-8d4c-849408ff4e5f" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-correlation-request-id": [ - "4a890626-76fb-4f19-a06a-be6f0a30f05c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183811Z:4a890626-76fb-4f19-a06a-be6f0a30f05c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:38:10 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b553ee2c-9efc-46c7-98a2-528233713eb5" - ], - "x-ms-client-request-id": [ - "5ca94c18-58b8-465a-b83c-0d262d4f0759" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-correlation-request-id": [ - "5a6acc76-da2c-49d8-9fe4-71efb252d8e4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183821Z:5a6acc76-da2c-49d8-9fe4-71efb252d8e4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:38:20 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "97d12d74-71a5-46c0-a5fe-e4f22cf61676" - ], - "x-ms-client-request-id": [ - "0f587621-62f6-4ad3-8393-0ced271d3608" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-correlation-request-id": [ - "b4ed8a8f-345d-4929-924b-d6cac30b4bc1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183832Z:b4ed8a8f-345d-4929-924b-d6cac30b4bc1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:38:32 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1d4f645b-c0d5-46cf-a2d9-64ce56924ab0" - ], - "x-ms-client-request-id": [ - "0eb9dd35-cf58-4033-83df-951b1ff8c04b" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-correlation-request-id": [ - "a48b175c-c756-4f3d-80b8-6a3c4c38fb9c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183842Z:a48b175c-c756-4f3d-80b8-6a3c4c38fb9c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:38:42 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/0f7f19f2-5c94-43b3-b52e-dbed615547e0?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8wZjdmMTlmMi01Yzk0LTQzYjMtYjUyZS1kYmVkNjE1NTQ3ZTA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "49" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "218be06a-1a33-4ea0-8ce5-458c63a270fc" - ], - "x-ms-client-request-id": [ - "93091d3a-93e8-41ff-9658-2a2aa7afaf66" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-correlation-request-id": [ - "4cb8374c-0519-4a3f-aa95-ed0fa74de0ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183852Z:4cb8374c-0519-4a3f-aa95-ed0fa74de0ef" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:38:52 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE4ODI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps1882\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdoors/ps1882\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tag1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1882.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1882.azurefd.net\",\r\n \"friendlyName\": \"ps1882\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3928" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3137c2ed-d238-42cc-83d0-316f0407941a" - ], - "x-ms-client-request-id": [ - "cf99bb77-08b1-4017-91a4-52c64b8a0529" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-correlation-request-id": [ - "dae5c5a7-b250-4fc4-a4b1-a2f134ac037a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183853Z:dae5c5a7-b250-4fc4-a4b1-a2f134ac037a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:38:53 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE4ODI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "44e795c1-202c-4581-bfc7-e2d9d6bc9e78" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps1882\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdoors/ps1882\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tag1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1882.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1882.azurefd.net\",\r\n \"friendlyName\": \"ps1882\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3928" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b55664b0-3ac5-446b-97c8-8b8f71212bdc" - ], - "x-ms-client-request-id": [ - "44e795c1-202c-4581-bfc7-e2d9d6bc9e78" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-correlation-request-id": [ - "4d44b080-46c7-4540-83ae-bc07fe638ca7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183854Z:4d44b080-46c7-4540-83ae-bc07fe638ca7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:38:53 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE4ODI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps1882\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdoors/ps1882\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value4\",\r\n \"tag1\": \"value3\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1882.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1882.azurefd.net\",\r\n \"friendlyName\": \"ps1882\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3928" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a21c3d94-34ad-48bc-a298-3ed1e14944c1" - ], - "x-ms-client-request-id": [ - "8beefafe-709d-4717-8153-76e38a6636b9" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-correlation-request-id": [ - "42d9b1a5-70cf-4810-a405-0795e8803f0e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184427Z:42d9b1a5-70cf-4810-a405-0795e8803f0e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:44:26 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE4ODI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4ff05c21-c0ab-4496-9328-80455ca80eb3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps1882\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdoors/ps1882\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value4\",\r\n \"tag1\": \"value3\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": null,\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"ps1882.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/Frontdoors/ps1882/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"ps1882.azurefd.net\",\r\n \"friendlyName\": \"ps1882\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3928" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "037f9d76-41e0-4be6-aa45-de7eee571557" - ], - "x-ms-client-request-id": [ - "4ff05c21-c0ab-4496-9328-80455ca80eb3" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-correlation-request-id": [ - "93baa4d2-626c-4f9c-ade3-194ed84f97e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184428Z:93baa4d2-626c-4f9c-ade3-194ed84f97e0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:44:27 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE4ODI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2c291b14-4f37-437d-a909-5de842d3487a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/frontdoors/ps1882' under resource group 'ps4000' was not found.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "145" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "0f8e17d5-10a3-4c31-8b48-51971167ae3d" - ], - "x-ms-correlation-request-id": [ - "0f8e17d5-10a3-4c31-8b48-51971167ae3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184929Z:0f8e17d5-10a3-4c31-8b48-51971167ae3d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:49:29 GMT" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d4ba46ab-cdd4-4456-9f7b-e01b60848c67" - ], - "x-ms-client-request-id": [ - "4c888411-ba02-404e-bba4-0643a90ce98d" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-correlation-request-id": [ - "6804f484-67d2-4209-a62d-7c22916ff5de" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183905Z:6804f484-67d2-4209-a62d-7c22916ff5de" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:39:04 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "96011ad6-f986-403f-ad51-38a89ca8b6f2" - ], - "x-ms-client-request-id": [ - "46ed8d3c-ac13-4bce-ba11-051eac42b072" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-correlation-request-id": [ - "6c29948c-41b4-45f3-a442-e5ce6b989f73" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183916Z:6c29948c-41b4-45f3-a442-e5ce6b989f73" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:39:15 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "214a4bdd-ef42-4ace-b5cd-1f71a105e8fe" - ], - "x-ms-client-request-id": [ - "8997924f-5c49-4430-9815-80f7aeb88c36" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-correlation-request-id": [ - "be276662-94d1-46eb-8e07-80782d8309d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183926Z:be276662-94d1-46eb-8e07-80782d8309d1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:39:26 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a919936d-265a-4690-8447-41639793057e" - ], - "x-ms-client-request-id": [ - "d7af16c3-7742-4ddf-b1ad-7432d282ed27" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-correlation-request-id": [ - "7f17a0c1-c9fa-4add-ae67-a6d0655c32b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183936Z:7f17a0c1-c9fa-4add-ae67-a6d0655c32b4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:39:36 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "763a9f96-b7cd-4a4d-9331-83a2a334b3bd" - ], - "x-ms-client-request-id": [ - "4e5a61cf-1df4-4d88-96ea-8fbc7d550f4d" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-correlation-request-id": [ - "92c9d459-d502-48d5-a423-ad57432f0fb8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183946Z:92c9d459-d502-48d5-a423-ad57432f0fb8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:39:46 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2eceb0eb-b56f-42b1-a080-d135ef7dd4c6" - ], - "x-ms-client-request-id": [ - "4fcecd83-6a0f-4f04-ba1b-42f7db644207" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-correlation-request-id": [ - "5577ae9c-8f18-4943-b608-475344e2cbc2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T183957Z:5577ae9c-8f18-4943-b608-475344e2cbc2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:39:56 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2a689172-f199-4bdd-a87f-f84a5356fd84" - ], - "x-ms-client-request-id": [ - "b85b9e58-00ca-4cd8-a983-3aa758c3da92" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-correlation-request-id": [ - "310f693e-6509-41b2-a7c0-756b7aa97b63" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184007Z:310f693e-6509-41b2-a7c0-756b7aa97b63" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:40:07 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "22613820-3427-40eb-b494-66a348519088" - ], - "x-ms-client-request-id": [ - "79d5e045-551b-4a07-9ac9-79617264bc91" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-correlation-request-id": [ - "456e7469-3f74-46a9-b1a0-866a7fc8fe08" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184018Z:456e7469-3f74-46a9-b1a0-866a7fc8fe08" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:40:17 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cc3c30e5-2ca8-4786-a071-00de0d33b8ec" - ], - "x-ms-client-request-id": [ - "0cc0a117-6734-44b1-9fcd-2a7e33a2affe" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-correlation-request-id": [ - "200b468a-6ef7-4d16-8762-65cf339d404a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184028Z:200b468a-6ef7-4d16-8762-65cf339d404a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:40:27 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0d080de6-b82b-42cc-a2de-7214716f61ab" - ], - "x-ms-client-request-id": [ - "60be003b-bdec-454b-a061-9d83415ac7c3" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-correlation-request-id": [ - "436447a7-8692-47b5-9bcf-b4aaeaee2817" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184038Z:436447a7-8692-47b5-9bcf-b4aaeaee2817" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:40:38 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f092a75b-6ef8-4907-9902-f0713833d244" - ], - "x-ms-client-request-id": [ - "930e2fb3-c76d-4b1d-832f-9529479a7969" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-correlation-request-id": [ - "81d03911-b944-49d6-9918-14e320ef285c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184048Z:81d03911-b944-49d6-9918-14e320ef285c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:40:48 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e40e39fd-6082-4530-b7fd-c42fe59f074b" - ], - "x-ms-client-request-id": [ - "6ec009c3-8440-4d75-ab0f-aab58a75dca5" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-correlation-request-id": [ - "2292d4be-a407-441f-aebe-97ae37497d35" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184059Z:2292d4be-a407-441f-aebe-97ae37497d35" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:40:58 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9766fc71-6a2c-41e8-9798-1024b6962f19" - ], - "x-ms-client-request-id": [ - "dcc1167a-fc2f-45da-8882-d6fd61ec74f7" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-correlation-request-id": [ - "c2c19fa4-42ce-4358-9bb5-b6cc7f3983fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184109Z:c2c19fa4-42ce-4358-9bb5-b6cc7f3983fa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:41:09 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "38e53088-e4e2-4831-98d2-0740cf7115ae" - ], - "x-ms-client-request-id": [ - "e61dceec-f0c8-4e97-8f3e-2f25c696911c" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], - "x-ms-correlation-request-id": [ - "07d514e5-7895-49b5-a37a-7e2b47cc1a1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184120Z:07d514e5-7895-49b5-a37a-7e2b47cc1a1b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:41:19 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b0225be5-e3d0-401a-a889-479cf7ea5be4" - ], - "x-ms-client-request-id": [ - "cdf3c294-6fc8-40aa-a8cd-3f7c390065b2" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-correlation-request-id": [ - "4e667804-fc25-49db-9e32-33590548b362" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184130Z:4e667804-fc25-49db-9e32-33590548b362" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:41:29 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6c51b5e0-8e5b-45cf-8294-96e39e98ed63" - ], - "x-ms-client-request-id": [ - "29ffb3c7-b073-4930-be4b-5bb0d0a6b7c4" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "x-ms-correlation-request-id": [ - "fb2c0420-b954-45b0-a838-02666bae94e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184140Z:fb2c0420-b954-45b0-a838-02666bae94e8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:41:40 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "dae3a775-6121-4948-b4ea-75f997d5e8ac" - ], - "x-ms-client-request-id": [ - "b84b1c42-4a80-47b4-87bb-7244a7d3cd0e" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-correlation-request-id": [ - "3919ec84-c14b-4f96-a7e1-787d25d81755" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184150Z:3919ec84-c14b-4f96-a7e1-787d25d81755" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:41:50 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "58407e80-0c3e-44d4-817e-4a367a6a57cb" - ], - "x-ms-client-request-id": [ - "d091e3a0-f5dc-4c1b-88fd-314af842a999" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" - ], - "x-ms-correlation-request-id": [ - "2e2cad37-9047-40d0-a5af-aaca9ad56551" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184201Z:2e2cad37-9047-40d0-a5af-aaca9ad56551" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:42:00 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d5ad3e1e-f2c8-4ec5-b91f-967a4520d4af" - ], - "x-ms-client-request-id": [ - "75e58667-e7ba-4550-a433-c06d4e155c88" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" - ], - "x-ms-correlation-request-id": [ - "05dc008e-9192-4957-b3e9-04ed3dc1cafc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184211Z:05dc008e-9192-4957-b3e9-04ed3dc1cafc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:42:10 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "db5845b9-a370-46e6-bde7-c04cf50e8424" - ], - "x-ms-client-request-id": [ - "fd251792-16cd-4515-8afc-7ee56a9cd6be" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" - ], - "x-ms-correlation-request-id": [ - "60c85c09-3bd1-4955-95ab-d0d7ff413afc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184221Z:60c85c09-3bd1-4955-95ab-d0d7ff413afc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:42:21 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8f5b5348-1c7f-4271-9f96-2ab8e7101f97" - ], - "x-ms-client-request-id": [ - "b81a7231-f7eb-4f83-aadd-a06a80f958da" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-correlation-request-id": [ - "8145563c-905d-46f2-a54c-6ceb86386b02" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184232Z:8145563c-905d-46f2-a54c-6ceb86386b02" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:42:31 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6b1ac72b-005f-4d0a-a0b8-dfebf6c88a56" - ], - "x-ms-client-request-id": [ - "83663c53-a893-404c-8d01-b52ee3b253fd" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" - ], - "x-ms-correlation-request-id": [ - "fcfa814d-cc2e-4e5b-a5b8-3d12aa7e71ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184242Z:fcfa814d-cc2e-4e5b-a5b8-3d12aa7e71ec" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:42:42 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "84e2863e-767b-4466-97c9-52236d887582" - ], - "x-ms-client-request-id": [ - "e24498f1-9e3a-4081-8604-9e57ea343136" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "8f869cf6-8fbc-41ad-ad28-5b551ece5b03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184253Z:8f869cf6-8fbc-41ad-ad28-5b551ece5b03" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:42:53 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7baf9c31-6c1e-425f-add2-b5d4d2c98326" - ], - "x-ms-client-request-id": [ - "ef28bdc5-2628-4bec-8ca8-cea9f94137e7" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "2de60e7b-b738-4ed2-9017-bebdcfc62567" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184304Z:2de60e7b-b738-4ed2-9017-bebdcfc62567" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:43:03 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0c9a9c83-aa85-4895-91b2-ee8b86d643a7" - ], - "x-ms-client-request-id": [ - "0bfdb9cb-fb76-4f8b-a9d1-672cf0de70a7" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "2b77f54d-974f-4cda-8905-6e1d6c5badac" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184314Z:2b77f54d-974f-4cda-8905-6e1d6c5badac" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:43:13 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8714308e-d93f-4637-bef7-7a0608367c9b" - ], - "x-ms-client-request-id": [ - "036e64bd-c6e0-479f-adea-526da2362bb6" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "cbfd250a-c21e-4156-b1e4-67d19c738f41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184324Z:cbfd250a-c21e-4156-b1e4-67d19c738f41" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:43:23 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "454fb2e0-484b-4d45-9417-3d6a40261747" - ], - "x-ms-client-request-id": [ - "236387a6-7be2-49d5-a09e-656da023f32d" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "ff868264-c7e7-4cab-b5cf-13213246ba8c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184334Z:ff868264-c7e7-4cab-b5cf-13213246ba8c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:43:34 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e4879e0b-570a-4b29-a6eb-972940513e87" - ], - "x-ms-client-request-id": [ - "29786867-b90a-41dc-94ab-35267488be23" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "33a1acb3-f8e1-4072-a15a-fd7721c6f035" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184345Z:33a1acb3-f8e1-4072-a15a-fd7721c6f035" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:43:44 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1e78de3a-f480-4985-a284-1901b038fe7a" - ], - "x-ms-client-request-id": [ - "79add028-1c5d-4416-ab06-74b0db7f4307" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-correlation-request-id": [ - "6c978269-e356-4b08-a501-9fb7ab5bfa1a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184355Z:6c978269-e356-4b08-a501-9fb7ab5bfa1a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:43:55 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "22fbed5f-6ac4-4d5c-97b0-331a8886aeed" - ], - "x-ms-client-request-id": [ - "95ecd14c-8b4f-4e2b-9d17-fe8e96bc92e8" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-correlation-request-id": [ - "d7c48937-8364-448c-9258-70215bf51d37" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184406Z:d7c48937-8364-448c-9258-70215bf51d37" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:44:05 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "86370247-46b4-45a5-b2c1-4e3c6f434f78" - ], - "x-ms-client-request-id": [ - "86d593bf-cec0-49ca-9b76-2f857e836950" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-correlation-request-id": [ - "330da3c6-14ef-4ca9-90c7-b616bc2401ae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184416Z:330da3c6-14ef-4ca9-90c7-b616bc2401ae" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:44:15 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/cac8798c-42df-4427-87e9-d88dc8bcf18b?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9jYWM4Nzk4Yy00MmRmLTQ0MjctODdlOS1kODhkYzhiY2YxOGI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "49" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "15428b6c-79d2-4822-af59-60e652a0e24e" - ], - "x-ms-client-request-id": [ - "640bc0f3-eceb-4a5c-9598-17ded24ed82c" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-correlation-request-id": [ - "ee928b91-c700-482c-9958-4c1facb4f446" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184426Z:ee928b91-c700-482c-9958-4c1facb4f446" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:44:25 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4000/providers/Microsoft.Network/frontDoors/ps1882?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE4ODI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "978cfc8e-93d1-4e4c-9a56-a62efbd1daeb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "2b804665-59fe-4b50-8103-a2d772e5ddd9" - ], - "x-ms-client-request-id": [ - "978cfc8e-93d1-4e4c-9a56-a62efbd1daeb" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "9a1438e2-fd83-460c-b5b1-7c2f69ace4b7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184429Z:9a1438e2-fd83-460c-b5b1-7c2f69ace4b7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:44:28 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130/frontdoorresults/ps1882?api-version=2018-08-01" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "93fd8a94-0929-4130-a8a1-e412eca59d30" - ], - "x-ms-client-request-id": [ - "23c89614-c786-4b7a-8e50-ad77c2f52584" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-correlation-request-id": [ - "52720eb5-c18f-4538-a42b-c27a3ab6f932" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184439Z:52720eb5-c18f-4538-a42b-c27a3ab6f932" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:44:38 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "47f56140-66e8-4276-9491-65fa458a384f" - ], - "x-ms-client-request-id": [ - "8ffeebcb-7c35-4560-8af4-3268550d1379" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "b73d13c5-a78a-4946-aa0f-2e7e3301c151" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184450Z:b73d13c5-a78a-4946-aa0f-2e7e3301c151" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:44:49 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "db41fc47-08a9-4a9d-a65e-39349886163c" - ], - "x-ms-client-request-id": [ - "abdec64e-03a4-4e6d-95d3-f5416d78f783" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "f47fcf4f-23d0-4d24-b86f-0e1de21c7b74" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184500Z:f47fcf4f-23d0-4d24-b86f-0e1de21c7b74" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:45:00 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "66e33784-274e-46be-9f97-aaa1bdd1eb98" - ], - "x-ms-client-request-id": [ - "ec7ec86c-d3d0-4ce2-b670-9af4045bc56b" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "5ea34777-43a2-4ca3-ad7e-0995d28c9f38" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184510Z:5ea34777-43a2-4ca3-ad7e-0995d28c9f38" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:45:10 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "49c08f11-34e9-4158-a739-89c45ba22765" - ], - "x-ms-client-request-id": [ - "d0d9cf7a-ba34-42c0-98ef-853d20602a93" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "a7f42e97-66fa-4ad1-80ba-eef7e5b63f12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184521Z:a7f42e97-66fa-4ad1-80ba-eef7e5b63f12" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:45:20 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4ab7cf87-b494-4aa8-8023-be48921a4ed4" - ], - "x-ms-client-request-id": [ - "29cac55e-2ada-4cf0-8674-1fce008eeaa7" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "34dc8ed0-c58a-4070-8649-d90c6e23b92d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184532Z:34dc8ed0-c58a-4070-8649-d90c6e23b92d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:45:31 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a7c49c1a-f515-40eb-9808-4a6a83376dad" - ], - "x-ms-client-request-id": [ - "bd65ed22-c108-4c11-9d4a-e14b78bfc332" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "5f442896-eefa-4df8-bddc-3b5cf2d63923" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184542Z:5f442896-eefa-4df8-bddc-3b5cf2d63923" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:45:41 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ce6f626a-4905-4b97-ac33-7f6f0d3fcfc2" - ], - "x-ms-client-request-id": [ - "033e4bee-9a97-4c67-a359-54b39e6c9870" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "2e8a70fa-402f-4fc9-90bd-b72d7e8d1c93" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184553Z:2e8a70fa-402f-4fc9-90bd-b72d7e8d1c93" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:45:52 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8e2d4122-ac79-4a9f-9d23-fb2c8fb97535" - ], - "x-ms-client-request-id": [ - "9e5f8b4b-8b40-4002-bb8e-e01afdd8cbee" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "afd397c1-cded-42da-819d-19a51af36814" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184603Z:afd397c1-cded-42da-819d-19a51af36814" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:46:03 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0de591b3-0fd9-42bf-a60b-dd117e8fd3eb" - ], - "x-ms-client-request-id": [ - "98d72173-942f-4312-848f-24205b4dabd4" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "50c3405e-4b79-46d9-b9cf-ca1ff93e8212" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184613Z:50c3405e-4b79-46d9-b9cf-ca1ff93e8212" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:46:13 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "285ce7d3-8a8a-4b9b-bda7-361c87d887a2" - ], - "x-ms-client-request-id": [ - "404bf11a-9b33-478e-b3ca-7014ddea8550" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "dd8a3f8c-124f-4c5f-9a06-d10d182cbdc8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184623Z:dd8a3f8c-124f-4c5f-9a06-d10d182cbdc8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:46:23 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d9464bd1-dc88-4c32-92a8-7453de1678aa" - ], - "x-ms-client-request-id": [ - "766476b4-f5ac-4d22-a4b7-19d3e1316735" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "0d2e5f79-6aa9-403e-bf40-90c23318f3ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184634Z:0d2e5f79-6aa9-403e-bf40-90c23318f3ec" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:46:34 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "13f7b74b-1148-4d24-8c8c-c1c723df64a3" - ], - "x-ms-client-request-id": [ - "5e770810-f5bd-40fa-b63b-ccab0d9f6000" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "64a3ea34-4ffd-448c-ae76-ef36d5c29e34" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184644Z:64a3ea34-4ffd-448c-ae76-ef36d5c29e34" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:46:44 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bbc0738e-4497-453a-9ea6-08d259be8f12" - ], - "x-ms-client-request-id": [ - "579fbe49-ac2e-4a5f-9c9a-755d7535a09e" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "b1289957-99db-41f6-99ae-361867898897" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184654Z:b1289957-99db-41f6-99ae-361867898897" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:46:54 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "32b20c9a-c0c1-456b-a86e-11ad3ffd30ba" - ], - "x-ms-client-request-id": [ - "94dcd4e7-0b22-44a4-ac02-a53fad501ae2" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-correlation-request-id": [ - "2872d8d5-5bdd-4035-93b4-06ff0f21ca9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184705Z:2872d8d5-5bdd-4035-93b4-06ff0f21ca9f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:47:04 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9d31df56-d337-4b31-8a91-1c0a26e80da3" - ], - "x-ms-client-request-id": [ - "5a33e382-d43b-4755-b4db-85e568e9921a" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-correlation-request-id": [ - "bb4e626c-6bab-4884-a7e5-61737958dfbd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184715Z:bb4e626c-6bab-4884-a7e5-61737958dfbd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:47:14 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "afe5bedf-db03-4a32-89c3-1d4292c80786" - ], - "x-ms-client-request-id": [ - "95295ffc-e5f1-4728-809a-25570bd6253e" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-correlation-request-id": [ - "38362d31-f74c-4e65-9526-d8ce48354645" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184725Z:38362d31-f74c-4e65-9526-d8ce48354645" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:47:24 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5f1a1e77-b877-48d1-ad87-1fc7e0aa590b" - ], - "x-ms-client-request-id": [ - "9345a2da-d4de-4e09-9f14-1e89afd2ef81" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-correlation-request-id": [ - "29c324bc-ca76-4ff5-88a3-a9e39bfa1b99" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184735Z:29c324bc-ca76-4ff5-88a3-a9e39bfa1b99" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:47:35 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "424f4a11-617d-4659-b62e-418834a9f3e2" - ], - "x-ms-client-request-id": [ - "4188f6d8-edc2-4813-b8ea-a649a7e0db97" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-correlation-request-id": [ - "bba99f14-5328-4ffb-bbe7-e16ca881a1df" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184746Z:bba99f14-5328-4ffb-bbe7-e16ca881a1df" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:47:45 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5ce22fab-ed5a-42ac-802c-90b5a3bc75bf" - ], - "x-ms-client-request-id": [ - "99e0f4f1-e052-485c-aed9-d7cf13c621d9" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-correlation-request-id": [ - "23c6e907-9959-4021-8fc2-59c2c8cd82c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184756Z:23c6e907-9959-4021-8fc2-59c2c8cd82c2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:47:56 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "49591a40-0804-4d51-99bb-a787b9e76a30" - ], - "x-ms-client-request-id": [ - "c14ae857-d93c-4298-a9a7-73f2ee5b7d88" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-correlation-request-id": [ - "ea03104e-a4b7-43d4-b671-1a9b80b35278" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184807Z:ea03104e-a4b7-43d4-b671-1a9b80b35278" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:48:06 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6d0449cd-60dd-47a9-81aa-fce7a01bb61c" - ], - "x-ms-client-request-id": [ - "534de9c8-575f-4d30-bd37-45a87d6f01c2" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-correlation-request-id": [ - "6a8e406d-8876-43dc-a9df-00cf48fca460" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184817Z:6a8e406d-8876-43dc-a9df-00cf48fca460" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:48:16 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d54203f1-94b3-42de-8e81-b58037bcb40f" - ], - "x-ms-client-request-id": [ - "d7ea6822-68cf-4f38-8b0b-699cb44195f7" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-correlation-request-id": [ - "36e753fa-196a-4e45-9888-c810be926f0c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184827Z:36e753fa-196a-4e45-9888-c810be926f0c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:48:27 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "99b0166a-d474-423c-b4e8-9120cdc93f54" - ], - "x-ms-client-request-id": [ - "a0ce8937-87f0-4dda-aa6c-38ae5e3d7023" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-correlation-request-id": [ - "860f4cdd-57c1-4428-98a6-e9b2bc05a65c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184837Z:860f4cdd-57c1-4428-98a6-e9b2bc05a65c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:48:37 GMT" + "Wed, 03 Apr 2019 22:26:33 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "104" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; charset=utf-8" ], - "X-Powered-By": [ - "ASP.NET" + "Content-Language": [ + "en-US" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The requested resource was not found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdooroperationresults/23826d42-7c60-4e7f-8860-e1f421f74c28?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8yMzgyNmQ0Mi03YzYwLTRlN2YtODg2MC1lMWY0MjFmNzRjMjg/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0a630294-bcd3-4f07-8de3-79a6e4436ea9" + "01f3b2d3-d29d-4c53-8b3f-008f7032ab2a" ], "x-ms-client-request-id": [ - "1f566d78-16f5-4991-8b3c-80dce07b1b56" + "31aece7c-b392-40d1-af1c-4f23c84548e4" ], "OData-Version": [ "4.0" @@ -7395,24 +1061,6 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-correlation-request-id": [ - "04b7a2f9-05e6-42ae-a2c1-2ce93601028f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184847Z:04b7a2f9-05e6-42ae-a2c1-2ce93601028f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:48:47 GMT" - ], "Server": [ "Microsoft-IIS/8.5" ], @@ -7421,136 +1069,79 @@ ], "X-Powered-By": [ "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9d6d84bd-a80e-485b-9499-c27c048a0cbb" - ], - "x-ms-client-request-id": [ - "3fa89ab5-0430-4e0a-990b-3f7a034aebab" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11993" ], "x-ms-correlation-request-id": [ - "c252db0a-9fc2-460d-af0c-2dbcee35f53a" + "bc252ff6-0b22-49e6-be19-f51011dc28c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T184858Z:c252db0a-9fc2-460d-af0c-2dbcee35f53a" + "WESTCENTRALUS:20190403T222620Z:bc252ff6-0b22-49e6-be19-f51011dc28c5" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:48:57 GMT" + "Wed, 03 Apr 2019 22:26:19 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "49" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps5967/providers/Microsoft.Network/frontDoors/ps1467?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy9wczE0Njc/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8948831f-8f1f-4a11-8a89-78de493268e2" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdooroperationresults/d02ab96b-43e7-48df-878e-7dd16c72982a/frontdoorresults/ps1467?api-version=2019-04-01" + ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "030ba032-6aff-40a1-9167-2c942bfbd144" + "4b825bed-82e2-458a-993e-f3492efcf6fb" ], "x-ms-client-request-id": [ - "cba7b963-3751-4101-a927-04354afa7cf9" + "8948831f-8f1f-4a11-8a89-78de493268e2" ], - "OData-Version": [ - "4.0" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdooroperationresults/d02ab96b-43e7-48df-878e-7dd16c72982a?api-version=2019-04-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-correlation-request-id": [ - "826d6257-71ba-439d-946f-8b68c6cb8786" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180920T184908Z:826d6257-71ba-439d-946f-8b68c6cb8786" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 20 Sep 2018 18:49:08 GMT" - ], "Server": [ "Microsoft-IIS/8.5" ], @@ -7559,111 +1150,57 @@ ], "X-Powered-By": [ "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {}\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "50" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" ], - "x-ms-request-id": [ - "43fdbdd0-e9ba-4a6a-b529-4b4155d7ca1e" - ], - "x-ms-client-request-id": [ - "439a472c-dc69-4537-958b-cffd114f7878" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "b6bf384f-698e-46b1-ba9e-f87dd03d9e36" + "ca30b2de-9b7d-40fe-8613-52842c59c1ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T184919Z:b6bf384f-698e-46b1-ba9e-f87dd03d9e36" + "WESTCENTRALUS:20190403T222622Z:ca30b2de-9b7d-40fe-8613-52842c59c1ef" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:49:19 GMT" + "Wed, 03 Apr 2019 22:26:21 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" + "Expires": [ + "-1" ], - "X-Powered-By": [ - "ASP.NET" + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzA/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdooroperationresults/d02ab96b-43e7-48df-878e-7dd16c72982a?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9kMDJhYjk2Yi00M2U3LTQ4ZGYtODc4ZS03ZGQxNmM3Mjk4MmE/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", "ResponseHeaders": { - "Content-Length": [ - "49" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f3dc0524-d259-4466-823b-77d6aff030ee" + "d1c6b9f8-a129-46a0-89be-d552b4d47dce" ], "x-ms-client-request-id": [ - "9bd16846-7b38-48f4-bbde-62faea3009f0" + "3cdd4003-1bd2-4df3-a794-0d453c18a01d" ], "OData-Version": [ "4.0" @@ -7671,101 +1208,108 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11989" ], "x-ms-correlation-request-id": [ - "f1bff168-469d-40d0-9c14-893717ea5038" + "ba00a516-94bf-4f5d-bc6a-f1e268e6230e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T184929Z:f1bff168-469d-40d0-9c14-893717ea5038" + "WESTCENTRALUS:20190403T222632Z:ba00a516-94bf-4f5d-bc6a-f1e268e6230e" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:49:29 GMT" + "Wed, 03 Apr 2019 22:26:32 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "49" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4000/providers/Microsoft.Network/frontdooroperationresults/a5fcc885-0042-4636-8903-a8286f347130/frontdoorresults/ps1882?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDAwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9hNWZjYzg4NS0wMDQyLTQ2MzYtODkwMy1hODI4NmYzNDcxMzAvZnJvbnRkb29ycmVzdWx0cy9wczE4ODI/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps5967/providers/Microsoft.Network/frontdooroperationresults/d02ab96b-43e7-48df-878e-7dd16c72982a/frontdoorresults/ps1467?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNTk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy9kMDJhYjk2Yi00M2U3LTQ4ZGYtODc4ZS03ZGQxNmM3Mjk4MmEvZnJvbnRkb29ycmVzdWx0cy9wczE0Njc/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27317.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f749b72a-ae87-49ea-b92a-df89c782b607" + "f726c310-959c-4c5a-83cc-f9dffd339217" ], "x-ms-client-request-id": [ - "09047211-37f1-495b-8edf-dd816c19504f" + "0afa89df-0554-400a-b58a-b2ab5da03aeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11988" ], "x-ms-correlation-request-id": [ - "43f960f4-e6a0-4506-921d-e4d5970d7ec2" + "0fc85ad1-b3db-4fde-9546-14cbae8e513a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T184929Z:43f960f4-e6a0-4506-921d-e4d5970d7ec2" + "WESTCENTRALUS:20190403T222633Z:0fc85ad1-b3db-4fde-9546-14cbae8e513a" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 18:49:29 GMT" - ], - "Server": [ - "Microsoft-IIS/8.5" + "Wed, 03 Apr 2019 22:26:32 GMT" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 204 } ], "Names": { "Test-FrontDoorCrudWithPiping": [ - "ps1882", - "ps4000" + "ps1467", + "ps5967" ] }, "Variables": { diff --git a/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.FrontDoorTests/TestFrontDoorEndpointCustomDomainHTTPSFrontDoor.json b/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.FrontDoorTests/TestFrontDoorEndpointCustomDomainHTTPSFrontDoor.json index a18004e79df7..145d4b62abf1 100644 --- a/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.FrontDoorTests/TestFrontDoorEndpointCustomDomainHTTPSFrontDoor.json +++ b/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.FrontDoorTests/TestFrontDoorEndpointCustomDomainHTTPSFrontDoor.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ca8f886-69d3-425b-80e2-e21e2ff32cc7" + "2bc072ab-5ea1-4553-a5ee-7d822bbf62fa" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.16" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "4a62fd61-cde7-476b-9429-61b573c89f76" + "2cf2df0b-840f-438e-8fb3-c6983f1321a6" ], "x-ms-correlation-request-id": [ - "4a62fd61-cde7-476b-9429-61b573c89f76" + "2cf2df0b-840f-438e-8fb3-c6983f1321a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190314T215331Z:4a62fd61-cde7-476b-9429-61b573c89f76" + "WESTCENTRALUS:20190403T223045Z:2cf2df0b-840f-438e-8fb3-c6983f1321a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 21:53:30 GMT" + "Wed, 03 Apr 2019 22:30:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61,13 +61,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNjI1NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzMzc2Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9af4319e-5ad2-4931-aa27-bd243ac0184b" + "043ed449-44e1-40ce-a924-f196667a7f02" ], "Accept-Language": [ "en-US" @@ -76,7 +76,7 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.16" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "00f4b00e-7b50-40a4-b0e9-96c52515ffb9" + "7df13fe5-bb65-4ec3-8be8-1556297c671f" ], "x-ms-correlation-request-id": [ - "00f4b00e-7b50-40a4-b0e9-96c52515ffb9" + "7df13fe5-bb65-4ec3-8be8-1556297c671f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190314T215332Z:00f4b00e-7b50-40a4-b0e9-96c52515ffb9" + "WESTCENTRALUS:20190403T223047Z:7df13fe5-bb65-4ec3-8be8-1556297c671f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 21:53:31 GMT" + "Wed, 03 Apr 2019 22:30:46 GMT" ], "Content-Length": [ "165" @@ -123,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255\",\r\n \"name\": \"ps6255\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767\",\r\n \"name\": \"ps3767\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMzc2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "970bd6c9-8b92-4bf4-b633-0a6a29ef05bb" + "e60eaa1d-6dce-4edd-bb54-41e5fcfd1d76" ], "Accept-Language": [ "en-US" @@ -142,7 +142,7 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -152,48 +152,63 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], "x-ms-request-id": [ - "b5c010d4-c7e5-4aac-9d08-3f25eacf133c" + "766406ac-2c0c-4822-9644-e21f477ca4b3" ], - "x-ms-correlation-request-id": [ - "b5c010d4-c7e5-4aac-9d08-3f25eacf133c" + "x-ms-client-request-id": [ + "e60eaa1d-6dce-4edd-bb54-41e5fcfd1d76" ], - "x-ms-routing-request-id": [ - "WESTUS2:20190314T215332Z:b5c010d4-c7e5-4aac-9d08-3f25eacf133c" + "OData-Version": [ + "4.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "b0a79ef7-f25e-4729-a8db-d1fb4264613f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20190403T223048Z:b0a79ef7-f25e-4729-a8db-d1fb4264613f" + ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 21:53:32 GMT" + "Wed, 03 Apr 2019 22:30:48 GMT" + ], + "Content-Length": [ + "28" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata.metadata=minimal; odata.streaming=true" ], "Expires": [ "-1" - ], - "Content-Length": [ - "12" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMzc2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"test-powershell-030620190342\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadbalancingsetting1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 30\r\n },\r\n \"name\": \"healthProbeSetting1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/HealthProbeSettings/healthProbeSetting1\"\r\n }\r\n },\r\n \"name\": \"backendpool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"test-powershell-030620190342.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendendpoint1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostName\": \"test720b828449.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendendpoint2\"\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"friendlyName\": \"test-powershell-030620190342\",\r\n \"routingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/BackendPools/backendPool1\"\r\n }\r\n }\r\n },\r\n \"name\": \"routingrule1\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"properties\": {\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"additionalLatencyMilliseconds\": 0\r\n },\r\n \"name\": \"loadbalancingsetting1\"\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"properties\": {\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"intervalInSeconds\": 30\r\n },\r\n \"name\": \"healthProbeSetting1\"\r\n }\r\n ],\r\n \"backendPools\": [\r\n {\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\"\r\n }\r\n ],\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/HealthProbeSettings/healthProbeSetting1\"\r\n }\r\n },\r\n \"name\": \"backendpool1\"\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"properties\": {\r\n \"hostName\": \"test-powershell-030620190342.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendendpoint1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostName\": \"test2d6635a8a3.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0\r\n },\r\n \"name\": \"frontendendpoint2\"\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\"\r\n },\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "35fbfe67-977c-4648-b3d2-4e463f1dea16" + "8b3f645c-2f3a-4ae2-9130-7266efe207b5" ], "Accept-Language": [ "en-US" @@ -202,13 +217,13 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3080" + "3321" ] }, "ResponseHeaders": { @@ -222,13 +237,13 @@ "10" ], "x-ms-request-id": [ - "d7eea2d7-7d85-4602-b5b5-6a56f060b250" + "ebcf392a-606f-49a6-92c9-1a59dbdc69ca" ], "x-ms-client-request-id": [ - "35fbfe67-977c-4648-b3d2-4e463f1dea16" + "8b3f645c-2f3a-4ae2-9130-7266efe207b5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdooroperationresults/8d05ee51-b0a8-4aef-905e-414c523020dd?api-version=2018-08-01" + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdooroperationresults/3e1856c0-1e1c-4610-8bd8-0129149cf9b6?api-version=2019-04-01" ], "OData-Version": [ "4.0" @@ -249,19 +264,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "a36bdc8b-1174-4607-825e-7fdb95cb9186" + "a4a5ba55-c363-4137-a90e-3eb500e91b8b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190314T215340Z:a36bdc8b-1174-4607-825e-7fdb95cb9186" + "WESTCENTRALUS:20190403T223050Z:a4a5ba55-c363-4137-a90e-3eb500e91b8b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 21:53:40 GMT" + "Wed, 03 Apr 2019 22:30:50 GMT" ], "Content-Length": [ - "4894" + "5109" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -270,12 +285,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"test-powershell-030620190342\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdoors/test-powershell-030620190342\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tag1\": \"value1\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test-powershell-030620190342.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Creating\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/FrontendEndpoints/frontendendpoint2\",\r\n \"name\": \"frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test720b828449.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"test-powershell-030620190342.azurefd.net\",\r\n \"friendlyName\": \"test-powershell-030620190342\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"test-powershell-030620190342\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdoors/test-powershell-030620190342\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test-powershell-030620190342.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Creating\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/FrontendEndpoints/frontendendpoint2\",\r\n \"name\": \"frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test2d6635a8a3.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Creating\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Creating\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"test-powershell-030620190342.azurefd.net\",\r\n \"friendlyName\": \"test-powershell-030620190342\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdooroperationresults/8d05ee51-b0a8-4aef-905e-414c523020dd?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy84ZDA1ZWU1MS1iMGE4LTRhZWYtOTA1ZS00MTRjNTIzMDIwZGQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdooroperationresults/3e1856c0-1e1c-4610-8bd8-0129149cf9b6?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzMzc2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8zZTE4NTZjMC0xZTFjLTQ2MTAtOGJkOC0wMTI5MTQ5Y2Y5YjY/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -283,7 +298,7 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -294,10 +309,10 @@ "no-cache" ], "x-ms-request-id": [ - "5c3a6895-dbaf-4c4e-90ce-4cecdbc6f54b" + "cce7a849-376a-421f-a55a-9ba1d235d5e9" ], "x-ms-client-request-id": [ - "999e4633-996d-4120-8dab-a3a333b8efda" + "9dbf0d45-d720-4639-8c9a-55e8205ef054" ], "OData-Version": [ "4.0" @@ -315,19 +330,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "795ea1fc-3492-42c1-969f-0a97909a46d3" + "7f391a50-9d02-426b-a10e-ea90e16656e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190314T215351Z:795ea1fc-3492-42c1-969f-0a97909a46d3" + "WESTCENTRALUS:20190403T223101Z:7f391a50-9d02-426b-a10e-ea90e16656e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 21:53:50 GMT" + "Wed, 03 Apr 2019 22:31:01 GMT" ], "Content-Length": [ "50" @@ -343,8 +358,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdooroperationresults/8d05ee51-b0a8-4aef-905e-414c523020dd?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy84ZDA1ZWU1MS1iMGE4LTRhZWYtOTA1ZS00MTRjNTIzMDIwZGQ/YXBpLXZlcnNpb249MjAxOC0wOC0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdooroperationresults/3e1856c0-1e1c-4610-8bd8-0129149cf9b6?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzMzc2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnRkb29yb3BlcmF0aW9ucmVzdWx0cy8zZTE4NTZjMC0xZTFjLTQ2MTAtOGJkOC0wMTI5MTQ5Y2Y5YjY/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -352,7 +367,7 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -363,10 +378,10 @@ "no-cache" ], "x-ms-request-id": [ - "75c57289-23e6-4964-9970-ca13e65b6404" + "b55da7db-1724-4a5f-93ac-43239c415476" ], "x-ms-client-request-id": [ - "68386ee3-7bd7-428a-bf6f-e07cf3aab1f1" + "4f18c31d-cd14-4b94-9160-0dba044ba4f7" ], "OData-Version": [ "4.0" @@ -384,19 +399,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "aa203668-74fc-4f3f-a9e5-ec9b852c865f" + "29349100-822d-4831-96e1-1ee91ef7e0dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190314T215401Z:aa203668-74fc-4f3f-a9e5-ec9b852c865f" + "WESTCENTRALUS:20190403T223111Z:29349100-822d-4831-96e1-1ee91ef7e0dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 21:54:00 GMT" + "Wed, 03 Apr 2019 22:31:10 GMT" ], "Content-Length": [ "49" @@ -412,8 +427,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMzc2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -421,7 +436,7 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -432,10 +447,10 @@ "no-cache" ], "x-ms-request-id": [ - "122ae076-e1f9-4aa7-ac2b-de7573c7afe1" + "031643f4-02d3-4d3a-8d76-564a35cf3d20" ], "x-ms-client-request-id": [ - "02aea794-8b61-4ba3-8853-d7b5917b2cff" + "e784f60e-c4d3-4953-8938-4cbcda4287f0" ], "OData-Version": [ "4.0" @@ -453,22 +468,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "885a3323-48ca-45df-8841-00f8814a6c91" + "2a2cff49-492c-4d76-ad12-abbd59ca5a48" ], "x-ms-routing-request-id": [ - "WESTUS2:20190314T215401Z:885a3323-48ca-45df-8841-00f8814a6c91" + "WESTCENTRALUS:20190403T223112Z:2a2cff49-492c-4d76-ad12-abbd59ca5a48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 21:54:01 GMT" + "Wed, 03 Apr 2019 22:31:11 GMT" ], "Content-Length": [ - "4888" + "5103" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -477,17 +492,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"test-powershell-030620190342\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdoors/test-powershell-030620190342\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tag1\": \"value1\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test-powershell-030620190342.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/FrontendEndpoints/frontendendpoint2\",\r\n \"name\": \"frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test720b828449.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"test-powershell-030620190342.azurefd.net\",\r\n \"friendlyName\": \"test-powershell-030620190342\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"test-powershell-030620190342\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdoors/test-powershell-030620190342\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test-powershell-030620190342.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/FrontendEndpoints/frontendendpoint2\",\r\n \"name\": \"frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test2d6635a8a3.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"test-powershell-030620190342.azurefd.net\",\r\n \"friendlyName\": \"test-powershell-030620190342\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMzc2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8d026ef-53fe-42fa-b3ce-eb15033551c5" + "2b444bf2-16ad-46bf-becc-bb5c7f9896a6" ], "Accept-Language": [ "en-US" @@ -496,7 +511,7 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -507,10 +522,10 @@ "no-cache" ], "x-ms-request-id": [ - "ad54f7f7-e3f5-4297-9762-6c79d12ba221" + "c9cdfa00-a482-47e1-932f-9506da309cfb" ], "x-ms-client-request-id": [ - "f8d026ef-53fe-42fa-b3ce-eb15033551c5" + "2b444bf2-16ad-46bf-becc-bb5c7f9896a6" ], "OData-Version": [ "4.0" @@ -528,22 +543,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "8ff6de39-9afb-474f-805e-c8864b558138" + "459a6936-8aed-44e8-99b5-188bbb93310d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190314T215402Z:8ff6de39-9afb-474f-805e-c8864b558138" + "WESTCENTRALUS:20190403T223112Z:459a6936-8aed-44e8-99b5-188bbb93310d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 21:54:01 GMT" + "Wed, 03 Apr 2019 22:31:11 GMT" ], "Content-Length": [ - "4888" + "5103" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -552,17 +567,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"test-powershell-030620190342\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdoors/test-powershell-030620190342\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tag1\": \"value1\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test-powershell-030620190342.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/FrontendEndpoints/frontendendpoint2\",\r\n \"name\": \"frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test720b828449.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/BackendPools/backendPool1\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"test-powershell-030620190342.azurefd.net\",\r\n \"friendlyName\": \"test-powershell-030620190342\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"test-powershell-030620190342\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdoors/test-powershell-030620190342\",\r\n \"type\": \"Microsoft.Network/frontdoors\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Enabled\",\r\n \"backendPools\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/BackendPools/backendpool1\",\r\n \"name\": \"backendpool1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/BackendPools\",\r\n \"properties\": {\r\n \"backends\": [\r\n {\r\n \"address\": \"contoso1.azurewebsites.net\",\r\n \"httpPort\": 80,\r\n \"httpsPort\": 443,\r\n \"priority\": 1,\r\n \"weight\": 50,\r\n \"backendHostHeader\": \"contoso1.azurewebsites.net\",\r\n \"enabledState\": \"Enabled\"\r\n }\r\n ],\r\n \"healthProbeSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/HealthProbeSettings/healthProbeSetting1\"\r\n },\r\n \"loadBalancingSettings\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/LoadBalancingSettings/loadBalancingSetting1\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"healthProbeSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/HealthProbeSettings/healthProbeSetting1\",\r\n \"name\": \"healthProbeSetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/HealthProbeSettings\",\r\n \"properties\": {\r\n \"intervalInSeconds\": 30,\r\n \"path\": \"/\",\r\n \"protocol\": \"Http\",\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/FrontendEndpoints/frontendendpoint1\",\r\n \"name\": \"frontendendpoint1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test-powershell-030620190342.azurefd.net\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/FrontendEndpoints/frontendendpoint2\",\r\n \"name\": \"frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/Frontdoors/FrontendEndpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test2d6635a8a3.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": null,\r\n \"customHttpsProvisioningSubstate\": null,\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingSettings\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/LoadBalancingSettings/loadbalancingsetting1\",\r\n \"name\": \"loadbalancingsetting1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/LoadBalancingSettings\",\r\n \"properties\": {\r\n \"additionalLatencyMilliseconds\": 0,\r\n \"sampleSize\": 4,\r\n \"successfulSamplesRequired\": 2,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n }\r\n ],\r\n \"routingRules\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/Frontdoors/test-powershell-030620190342/RoutingRules/routingrule1\",\r\n \"name\": \"routingrule1\",\r\n \"type\": \"Microsoft.Network/Frontdoors/RoutingRules\",\r\n \"properties\": {\r\n \"frontendEndpoints\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/FrontendEndpoints/frontendEndpoint1\"\r\n }\r\n ],\r\n \"acceptedProtocols\": [\r\n \"Http\",\r\n \"Https\"\r\n ],\r\n \"patternsToMatch\": [\r\n \"/*\"\r\n ],\r\n \"enabledState\": \"Enabled\",\r\n \"resourceState\": \"Enabled\",\r\n \"routeConfiguration\": {\r\n \"@odata.type\": \"#Microsoft.Azure.FrontDoor.Models.FrontdoorForwardingConfiguration\",\r\n \"customForwardingPath\": null,\r\n \"forwardingProtocol\": \"MatchRequest\",\r\n \"cacheConfiguration\": null,\r\n \"backendPool\": {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/BackendPools/backendPool1\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendPoolsSettings\": {\r\n \"enforceCertificateNameCheck\": \"Enabled\"\r\n },\r\n \"enabledState\": \"Enabled\",\r\n \"cName\": \"test-powershell-030620190342.azurefd.net\",\r\n \"friendlyName\": \"test-powershell-030620190342\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2/enableHttps?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyL2VuYWJsZUh0dHBzP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2/enableHttps?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMzc2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyL2VuYWJsZUh0dHBzP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"certificateSource\": \"FrontDoor\",\r\n \"protocolType\": \"ServerNameIndication\",\r\n \"frontDoorCertificateSourceParameters\": {\r\n \"certificateType\": \"Shared\"\r\n }\r\n}", + "RequestBody": "{\r\n \"certificateSource\": \"FrontDoor\",\r\n \"protocolType\": \"ServerNameIndication\",\r\n \"frontDoorCertificateSourceParameters\": {\r\n \"certificateType\": \"Dedicated\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "55fbfba5-91c6-43c3-876a-1395949917f9" + "489bf29d-8fcd-4c39-965b-6b31ee805f10" ], "Accept-Language": [ "en-US" @@ -571,13 +586,13 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "167" + "170" ] }, "ResponseHeaders": { @@ -588,19 +603,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdooroperationresults/d3e072fb-79b1-4ba4-89ea-e178e6c80158/frontdoorresults/test-powershell-030620190342?api-version=2018-08-01" + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdooroperationresults/6d3ac7a3-ff81-4c00-bb0a-7d37e2de9e69/frontdoorresults/test-powershell-030620190342?api-version=2019-04-01" ], "Retry-After": [ "120" ], "x-ms-request-id": [ - "928636ef-a117-463e-9491-45fe66b53aa0" + "4c75f963-29f2-43bf-a468-653284384b30" ], "x-ms-client-request-id": [ - "55fbfba5-91c6-43c3-876a-1395949917f9" + "489bf29d-8fcd-4c39-965b-6b31ee805f10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdooroperationresults/d3e072fb-79b1-4ba4-89ea-e178e6c80158?api-version=2018-08-01" + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdooroperationresults/6d3ac7a3-ff81-4c00-bb0a-7d37e2de9e69?api-version=2019-04-01" ], "OData-Version": [ "4.0" @@ -621,19 +636,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "4016a8a8-c954-4c42-b92f-7a3308a0700a" + "6cc8273d-46ac-4db7-9c35-097b44675f98" ], "x-ms-routing-request-id": [ - "WESTUS2:20190314T215404Z:4016a8a8-c954-4c42-b92f-7a3308a0700a" + "WESTCENTRALUS:20190403T223113Z:6cc8273d-46ac-4db7-9c35-097b44675f98" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 21:54:03 GMT" + "Wed, 03 Apr 2019 22:31:12 GMT" ], "Content-Length": [ - "556" + "559" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -642,17 +657,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"hostName\": \"test720b828449.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Enabling\",\r\n \"customHttpsProvisioningSubstate\": \"SubmittingDomainControlValidationRequest\",\r\n \"customHttpsConfiguration\": {\r\n \"protocolType\": \"ServerNameIndication\",\r\n \"frontdoorCertificateSourceParameters\": {\r\n \"certificateType\": \"Shared\"\r\n },\r\n \"keyvaultCertificateSourceParameters\": null,\r\n \"certificateSource\": \"FrontDoor\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n}", + "ResponseBody": "{\r\n \"hostName\": \"test2d6635a8a3.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Enabling\",\r\n \"customHttpsProvisioningSubstate\": \"SubmittingDomainControlValidationRequest\",\r\n \"customHttpsConfiguration\": {\r\n \"protocolType\": \"ServerNameIndication\",\r\n \"frontdoorCertificateSourceParameters\": {\r\n \"certificateType\": \"Dedicated\"\r\n },\r\n \"keyvaultCertificateSourceParameters\": null,\r\n \"certificateSource\": \"FrontDoor\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMzc2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba3db8f0-7b0c-4415-92cc-876890c62c72" + "50dbf392-189f-4745-9b05-f857b2dc7c0a" ], "Accept-Language": [ "en-US" @@ -661,7 +676,7 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -672,10 +687,10 @@ "no-cache" ], "x-ms-request-id": [ - "9300d21c-a55c-4e5b-b2c0-2c17b6d7d5b1" + "ca1ecccf-4076-46ee-9ed0-66a3939e3526" ], "x-ms-client-request-id": [ - "ba3db8f0-7b0c-4415-92cc-876890c62c72" + "50dbf392-189f-4745-9b05-f857b2dc7c0a" ], "OData-Version": [ "4.0" @@ -693,22 +708,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "37ef5c2a-1e51-407e-9030-f511f7e4d3e1" + "42cd74ad-108c-485c-9901-55b1d2c1d85d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190314T215404Z:37ef5c2a-1e51-407e-9030-f511f7e4d3e1" + "WESTCENTRALUS:20190403T223113Z:42cd74ad-108c-485c-9901-55b1d2c1d85d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 21:54:03 GMT" + "Wed, 03 Apr 2019 22:31:12 GMT" ], "Content-Length": [ - "857" + "860" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -717,17 +732,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"frontendendpoint2\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdoors/test-powershell-030620190342/frontendendpoints/frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/frontdoors/frontendendpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test720b828449.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Enabling\",\r\n \"customHttpsProvisioningSubstate\": \"SubmittingDomainControlValidationRequest\",\r\n \"customHttpsConfiguration\": {\r\n \"protocolType\": \"ServerNameIndication\",\r\n \"frontdoorCertificateSourceParameters\": {\r\n \"certificateType\": \"Shared\"\r\n },\r\n \"keyvaultCertificateSourceParameters\": null,\r\n \"certificateSource\": \"FrontDoor\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"frontendendpoint2\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdoors/test-powershell-030620190342/frontendendpoints/frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/frontdoors/frontendendpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test2d6635a8a3.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Enabling\",\r\n \"customHttpsProvisioningSubstate\": \"SubmittingDomainControlValidationRequest\",\r\n \"customHttpsConfiguration\": {\r\n \"protocolType\": \"ServerNameIndication\",\r\n \"frontdoorCertificateSourceParameters\": {\r\n \"certificateType\": \"Dedicated\"\r\n },\r\n \"keyvaultCertificateSourceParameters\": null,\r\n \"certificateSource\": \"FrontDoor\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMzc2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f54e84d-bed9-4da0-a82f-bbab3855784e" + "ae4b645f-d505-4c62-b046-a12bcc1aaa47" ], "Accept-Language": [ "en-US" @@ -736,7 +751,7 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -747,10 +762,10 @@ "no-cache" ], "x-ms-request-id": [ - "22ca21d8-9c68-40f0-8b69-7d31dd2f2970" + "45e7e4e7-f054-46d0-ade6-5be376994da3" ], "x-ms-client-request-id": [ - "2f54e84d-bed9-4da0-a82f-bbab3855784e" + "ae4b645f-d505-4c62-b046-a12bcc1aaa47" ], "OData-Version": [ "4.0" @@ -771,19 +786,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "34b72003-bbc1-4810-abbd-5cbc858aced3" + "084877a3-c310-4427-9889-09681f938dd7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190314T220405Z:34b72003-bbc1-4810-abbd-5cbc858aced3" + "WESTCENTRALUS:20190403T224114Z:084877a3-c310-4427-9889-09681f938dd7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 22:04:05 GMT" + "Wed, 03 Apr 2019 22:41:14 GMT" ], "Content-Length": [ - "862" + "838" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -792,17 +807,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"frontendendpoint2\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdoors/test-powershell-030620190342/frontendendpoints/frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/frontdoors/frontendendpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test720b828449.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Enabling\",\r\n \"customHttpsProvisioningSubstate\": \"PendingDomainControlValidationRequestApproval\",\r\n \"customHttpsConfiguration\": {\r\n \"protocolType\": \"ServerNameIndication\",\r\n \"frontdoorCertificateSourceParameters\": {\r\n \"certificateType\": \"Shared\"\r\n },\r\n \"keyvaultCertificateSourceParameters\": null,\r\n \"certificateSource\": \"FrontDoor\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"frontendendpoint2\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdoors/test-powershell-030620190342/frontendendpoints/frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/frontdoors/frontendendpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test2d6635a8a3.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Enabled\",\r\n \"customHttpsProvisioningSubstate\": \"CertificateDeployed\",\r\n \"customHttpsConfiguration\": {\r\n \"protocolType\": \"ServerNameIndication\",\r\n \"frontdoorCertificateSourceParameters\": {\r\n \"certificateType\": \"Dedicated\"\r\n },\r\n \"keyvaultCertificateSourceParameters\": null,\r\n \"certificateSource\": \"FrontDoor\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMzc2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d84266d6-42be-4c10-8188-e622f51669e8" + "29957102-6d54-4b50-92bc-a78ed2c95612" ], "Accept-Language": [ "en-US" @@ -811,7 +826,7 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -822,10 +837,10 @@ "no-cache" ], "x-ms-request-id": [ - "0f62da60-42ac-4888-8002-819422a238ce" + "1f6b0c30-f85c-4729-bd22-05607f85f2c1" ], "x-ms-client-request-id": [ - "d84266d6-42be-4c10-8188-e622f51669e8" + "29957102-6d54-4b50-92bc-a78ed2c95612" ], "OData-Version": [ "4.0" @@ -843,22 +858,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "5b12fef6-11c1-4f8b-acc0-a6802411c866" + "d48113ab-ddd1-4488-9960-b61324a91f1c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190314T221407Z:5b12fef6-11c1-4f8b-acc0-a6802411c866" + "WESTCENTRALUS:20190403T224115Z:d48113ab-ddd1-4488-9960-b61324a91f1c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 22:14:07 GMT" + "Wed, 03 Apr 2019 22:41:14 GMT" ], "Content-Length": [ - "835" + "838" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -867,17 +882,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"frontendendpoint2\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdoors/test-powershell-030620190342/frontendendpoints/frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/frontdoors/frontendendpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test720b828449.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Enabled\",\r\n \"customHttpsProvisioningSubstate\": \"CertificateDeployed\",\r\n \"customHttpsConfiguration\": {\r\n \"protocolType\": \"ServerNameIndication\",\r\n \"frontdoorCertificateSourceParameters\": {\r\n \"certificateType\": \"Shared\"\r\n },\r\n \"keyvaultCertificateSourceParameters\": null,\r\n \"certificateSource\": \"FrontDoor\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"frontendendpoint2\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdoors/test-powershell-030620190342/frontendendpoints/frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/frontdoors/frontendendpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test2d6635a8a3.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Enabled\",\r\n \"customHttpsProvisioningSubstate\": \"CertificateDeployed\",\r\n \"customHttpsConfiguration\": {\r\n \"protocolType\": \"ServerNameIndication\",\r\n \"frontdoorCertificateSourceParameters\": {\r\n \"certificateType\": \"Dedicated\"\r\n },\r\n \"keyvaultCertificateSourceParameters\": null,\r\n \"certificateSource\": \"FrontDoor\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMzc2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec255279-276a-4029-9b0b-b57ca9b748de" + "82cb8479-85bd-4fe7-a2cc-d1754e0c57dc" ], "Accept-Language": [ "en-US" @@ -886,7 +901,7 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -897,10 +912,10 @@ "no-cache" ], "x-ms-request-id": [ - "8d817c4b-5da2-4b97-ba14-5bee7ef41eea" + "09bad11b-d194-466b-9b9d-87aac84ccbf9" ], "x-ms-client-request-id": [ - "ec255279-276a-4029-9b0b-b57ca9b748de" + "82cb8479-85bd-4fe7-a2cc-d1754e0c57dc" ], "OData-Version": [ "4.0" @@ -918,22 +933,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "5e9405ce-9d5d-4954-a411-73ca68b8e3ca" + "5acc816e-89f7-481a-b051-d8bd277a6511" ], "x-ms-routing-request-id": [ - "WESTUS2:20190314T221408Z:5e9405ce-9d5d-4954-a411-73ca68b8e3ca" + "WESTCENTRALUS:20190403T224116Z:5acc816e-89f7-481a-b051-d8bd277a6511" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 22:14:07 GMT" + "Wed, 03 Apr 2019 22:41:15 GMT" ], "Content-Length": [ - "835" + "840" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -942,17 +957,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"frontendendpoint2\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdoors/test-powershell-030620190342/frontendendpoints/frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/frontdoors/frontendendpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test720b828449.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Enabled\",\r\n \"customHttpsProvisioningSubstate\": \"CertificateDeployed\",\r\n \"customHttpsConfiguration\": {\r\n \"protocolType\": \"ServerNameIndication\",\r\n \"frontdoorCertificateSourceParameters\": {\r\n \"certificateType\": \"Shared\"\r\n },\r\n \"keyvaultCertificateSourceParameters\": null,\r\n \"certificateSource\": \"FrontDoor\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"frontendendpoint2\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdoors/test-powershell-030620190342/frontendendpoints/frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/frontdoors/frontendendpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test2d6635a8a3.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Disabling\",\r\n \"customHttpsProvisioningSubstate\": \"DeletingCertificate\",\r\n \"customHttpsConfiguration\": {\r\n \"protocolType\": \"ServerNameIndication\",\r\n \"frontdoorCertificateSourceParameters\": {\r\n \"certificateType\": \"Dedicated\"\r\n },\r\n \"keyvaultCertificateSourceParameters\": null,\r\n \"certificateSource\": \"FrontDoor\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMzc2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5e05c85-a35b-4f37-87f1-323862dac61b" + "f8310bb0-6163-4752-8991-6dbc8b1eb5c1" ], "Accept-Language": [ "en-US" @@ -961,7 +976,7 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -972,10 +987,10 @@ "no-cache" ], "x-ms-request-id": [ - "d187cd3a-95e8-45e0-9cdc-dc78b54e8441" + "72e8d6b8-b5c0-472e-89e2-20a9944fbe6b" ], "x-ms-client-request-id": [ - "a5e05c85-a35b-4f37-87f1-323862dac61b" + "f8310bb0-6163-4752-8991-6dbc8b1eb5c1" ], "OData-Version": [ "4.0" @@ -992,95 +1007,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "5211caad-3b4b-4246-a0bc-455c518aff4d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190314T221412Z:5211caad-3b4b-4246-a0bc-455c518aff4d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 14 Mar 2019 22:14:11 GMT" - ], - "Content-Length": [ - "837" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"frontendendpoint2\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdoors/test-powershell-030620190342/frontendendpoints/frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/frontdoors/frontendendpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test720b828449.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Disabling\",\r\n \"customHttpsProvisioningSubstate\": \"DeletingCertificate\",\r\n \"customHttpsConfiguration\": {\r\n \"protocolType\": \"ServerNameIndication\",\r\n \"frontdoorCertificateSourceParameters\": {\r\n \"certificateType\": \"Shared\"\r\n },\r\n \"keyvaultCertificateSourceParameters\": null,\r\n \"certificateSource\": \"FrontDoor\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "587a7800-65ea-4bb9-b261-886cc621e4ce" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27317.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fbe3e862-f073-4cd8-8083-2a0847e50811" - ], - "x-ms-client-request-id": [ - "587a7800-65ea-4bb9-b261-886cc621e4ce" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], "x-ms-correlation-request-id": [ - "15b0d650-b63f-4704-8918-f38f6cea0122" + "5b005fd4-4502-4845-bae3-18531f2b4b3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190314T222413Z:15b0d650-b63f-4704-8918-f38f6cea0122" + "WESTCENTRALUS:20190403T225117Z:5b005fd4-4502-4845-bae3-18531f2b4b3b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 22:24:12 GMT" + "Wed, 03 Apr 2019 22:51:16 GMT" ], "Content-Length": [ "611" @@ -1092,17 +1032,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"frontendendpoint2\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdoors/test-powershell-030620190342/frontendendpoints/frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/frontdoors/frontendendpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test720b828449.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\",\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"frontendendpoint2\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdoors/test-powershell-030620190342/frontendendpoints/frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/frontdoors/frontendendpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test2d6635a8a3.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\",\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMzc2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4b8b2cc-dfd3-4104-94e0-6ac4dbe730ce" + "ba309466-d2c1-45d0-be34-8bbf02c14bc5" ], "Accept-Language": [ "en-US" @@ -1111,7 +1051,7 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -1122,10 +1062,10 @@ "no-cache" ], "x-ms-request-id": [ - "424122d7-2f35-42ec-9914-0716b3926252" + "ad90a3a9-1a58-470e-871f-f34330de7105" ], "x-ms-client-request-id": [ - "b4b8b2cc-dfd3-4104-94e0-6ac4dbe730ce" + "ba309466-d2c1-45d0-be34-8bbf02c14bc5" ], "OData-Version": [ "4.0" @@ -1146,16 +1086,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "a4df91cb-d82c-48d0-a9cb-0628ddce296b" + "22befdf1-6d51-45b2-96e2-9f1fca40585c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190314T222414Z:a4df91cb-d82c-48d0-a9cb-0628ddce296b" + "WESTCENTRALUS:20190403T225117Z:22befdf1-6d51-45b2-96e2-9f1fca40585c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 22:24:13 GMT" + "Wed, 03 Apr 2019 22:51:16 GMT" ], "Content-Length": [ "611" @@ -1167,17 +1107,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"frontendendpoint2\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdoors/test-powershell-030620190342/frontendendpoints/frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/frontdoors/frontendendpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test720b828449.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\",\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"frontendendpoint2\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdoors/test-powershell-030620190342/frontendendpoints/frontendendpoint2\",\r\n \"type\": \"Microsoft.Network/frontdoors/frontendendpoints\",\r\n \"properties\": {\r\n \"hostName\": \"test2d6635a8a3.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Disabled\",\r\n \"customHttpsProvisioningSubstate\": \"None\",\r\n \"customHttpsConfiguration\": null,\r\n \"resourceState\": \"Enabled\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6255/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2/disableHttps?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjI1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyL2Rpc2FibGVIdHRwcz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps3767/providers/Microsoft.Network/frontDoors/test-powershell-030620190342/frontendEndpoints/frontendendpoint2/disableHttps?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMzc2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZnJvbnREb29ycy90ZXN0LXBvd2Vyc2hlbGwtMDMwNjIwMTkwMzQyL2Zyb250ZW5kRW5kcG9pbnRzL2Zyb250ZW5kZW5kcG9pbnQyL2Rpc2FibGVIdHRwcz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9bef8b30-3d3a-4283-8baa-da7ca5674169" + "6153365f-da8f-40a3-90d1-ff472cf7a077" ], "Accept-Language": [ "en-US" @@ -1186,7 +1126,7 @@ "FxVersion/4.6.27317.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -1197,19 +1137,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdooroperationresults/25359799-8a66-4c54-b249-a7f32433a818/frontdoorresults/test-powershell-030620190342?api-version=2018-08-01" + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdooroperationresults/275e40c4-a4df-45ad-80a7-faa1c89be2c7/frontdoorresults/test-powershell-030620190342?api-version=2019-04-01" ], "Retry-After": [ "120" ], "x-ms-request-id": [ - "921c6776-9e3c-44fe-baed-25195bd2e522" + "68f924a4-9f25-4dca-98a3-ac4829268b88" ], "x-ms-client-request-id": [ - "9bef8b30-3d3a-4283-8baa-da7ca5674169" + "6153365f-da8f-40a3-90d1-ff472cf7a077" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6255/providers/Microsoft.Network/frontdooroperationresults/25359799-8a66-4c54-b249-a7f32433a818?api-version=2018-08-01" + "https://management.azure.com/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps3767/providers/Microsoft.Network/frontdooroperationresults/275e40c4-a4df-45ad-80a7-faa1c89be2c7?api-version=2019-04-01" ], "OData-Version": [ "4.0" @@ -1230,19 +1170,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "353adb01-c26b-4735-8d90-2c6cb0076017" + "5f15dcf9-c8e8-4f4d-b063-44062093315a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190314T221412Z:353adb01-c26b-4735-8d90-2c6cb0076017" + "WESTCENTRALUS:20190403T224116Z:5f15dcf9-c8e8-4f4d-b063-44062093315a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Mar 2019 22:14:11 GMT" + "Wed, 03 Apr 2019 22:41:15 GMT" ], "Content-Length": [ - "536" + "539" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1251,13 +1191,13 @@ "-1" ] }, - "ResponseBody": "{\r\n \"hostName\": \"test720b828449.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Disabling\",\r\n \"customHttpsProvisioningSubstate\": \"DeletingCertificate\",\r\n \"customHttpsConfiguration\": {\r\n \"protocolType\": \"ServerNameIndication\",\r\n \"frontdoorCertificateSourceParameters\": {\r\n \"certificateType\": \"Shared\"\r\n },\r\n \"keyvaultCertificateSourceParameters\": null,\r\n \"certificateSource\": \"FrontDoor\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n}", + "ResponseBody": "{\r\n \"hostName\": \"test2d6635a8a3.powershell-custom.azfdtest.xyz\",\r\n \"sessionAffinityEnabledState\": \"Disabled\",\r\n \"sessionAffinityTtlSeconds\": 0,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"customHttpsProvisioningState\": \"Disabling\",\r\n \"customHttpsProvisioningSubstate\": \"DeletingCertificate\",\r\n \"customHttpsConfiguration\": {\r\n \"protocolType\": \"ServerNameIndication\",\r\n \"frontdoorCertificateSourceParameters\": {\r\n \"certificateType\": \"Dedicated\"\r\n },\r\n \"keyvaultCertificateSourceParameters\": null,\r\n \"certificateSource\": \"FrontDoor\"\r\n },\r\n \"resourceState\": \"Enabled\"\r\n}", "StatusCode": 202 } ], "Names": { "Test-FrontDoorEndpointCustomDomainHTTPS-FrontDoor": [ - "ps6255" + "ps3767" ] }, "Variables": { diff --git a/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.WebApplicationFireWallPolicyTests/TestPolicyCrud.json b/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.WebApplicationFireWallPolicyTests/TestPolicyCrud.json index 2f1def3ed77d..2613bef72780 100644 --- a/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.WebApplicationFireWallPolicyTests/TestPolicyCrud.json +++ b/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.WebApplicationFireWallPolicyTests/TestPolicyCrud.json @@ -1,34 +1,27 @@ { "Entries": [ { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Byb3ZpZGVycy8/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Resources?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "edb2ef95-6eaf-4e2b-a766-16ae85552ec8" + "91f66e49-0ecd-485c-ae1a-b73b239c2b62" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configurations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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\": \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/importImage\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/scheduleRun\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/listLogSasUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Korea South\",\r\n \"Korea 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 \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\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/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\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 \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\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 \"Korea South\",\r\n \"Korea 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 \"2018-03-31\",\r\n \"2017-08-31\",\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 \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-04-01\",\r\n \"2018-01-22\",\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 \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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 \"2018-04-01\",\r\n \"2018-01-22\",\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\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\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 \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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 \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n },\r\n {\r\n \"applicationId\": \"b503eb83-1222-4dcc-b116-b98ed5216e05\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\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 \"2018-05-01-preview\",\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\": \"components/query\",\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 \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\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 \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\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 \"2018-04-20\"\r\n ]\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 \"2018-05-01-preview\",\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\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"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 \"France Central\",\r\n \"West US\",\r\n \"Global\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\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 \"France Central\",\r\n \"West US\",\r\n \"Global\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\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 \"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 US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\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\": \"metricNamespaces\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"UK South 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"guestDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"guestDiagnosticSettingsAssociation\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North 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 \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"interfaceEndpoints\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\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 \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"publicIPPrefixes\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"locations/availableDelegations\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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 \"2018-04-01\",\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 \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"resourceType\": \"azureFirewalls\",\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 \"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 \"France Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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\": \"views\",\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-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\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 \"2018-06-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\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\": \"Compliances\",\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\": \"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\": \"discoveredSecuritySolutions\",\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/discoveredSecuritySolutions\",\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\": \"allowedConnections\",\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/allowedConnections\",\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\": \"topologies\",\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/topologies\",\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 \"North Europe\",\r\n \"West Europe\",\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 \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\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\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West 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/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West 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/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 \"resourceType\": \"InformationProtectionPolicies\",\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\": \"settings\",\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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/geoBackupPolicies\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/extendedAuditingSettings\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/interfaceEndpointProfiles\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/interfaceEndpointProfileOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/interfaceEndpointProfileAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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\": \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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/usages\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/instances\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"validate\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"sourceControls\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"availableStacks\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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/hostNameBindings\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"certificates\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-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\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"sites/metrics\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\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 \"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 \"South 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 \"France Central\"\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 \"2018-02-01\",\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 \"2018-02-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/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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/premieraddons\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\"\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 \"2018-02-01\",\r\n \"2017-08-01\",\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 \"2018-02-01\",\r\n \"2017-08-01\",\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 \"2018-02-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\": \"functions\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"deletedSites\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-07-01\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\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\": \"DomainServices/oucontainer\",\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 ]\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-03-01\",\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 \"2018-03-01\",\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 \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\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 \"2018-01-01\",\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 \"2018-01-01\",\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 \"2018-01-01\",\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 \"2018-01-01\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\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 \"2018-01-01-preview\",\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 \"2018-01-01-preview\",\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\": \"denyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-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 \"2018-05-01\",\r\n \"2018-03-01\",\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 \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\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 \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/checkNameAvailability\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\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 \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\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 \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"billingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingRoleDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingRoleAssignments\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingPermissions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listBillingAccountsWithCreateProjectPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/listProjectsWithCreateSubscriptionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/eligibleOffers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/paymentMethods\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoices\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/transactions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/transactions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-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 \"2018-03-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-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-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-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-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/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\": \"domainNames/serviceCertificates\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"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 \"France Central\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\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\": \"expressRouteCrossConnections/peerings\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\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\": \"storageAccounts/vmImages\",\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-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"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 \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\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 \"Central US EUAP\"\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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AggregatedCost\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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\": \"Charges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"credits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\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 \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"serviceAssociationLinks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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 \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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 \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateAddress\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\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 \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\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 US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\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 \"2018-06-01\",\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 \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getFeatureValue\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West Europe\"\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 \"West Europe\"\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/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DBforMariaDB\",\r\n \"namespace\": \"Microsoft.DBforMariaDB\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"managedByRoleDefinitionId\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"operationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"locations\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"locations/deleteVirtualNetworkOrSubnets\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-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 \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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\": \"clusters\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\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 \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\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\": \"namespaces/eventhubs/authorizationrules\",\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\": \"namespaces/eventhubs/consumergroups\",\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\": \"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 \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.HanaOnAzure\",\r\n \"namespace\": \"Microsoft.HanaOnAzure\",\r\n \"authorization\": {\r\n \"applicationId\": \"cc5476ec-3074-44d1-8461-711f5d9b0e39\",\r\n \"roleDefinitionId\": \"4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hanaInstances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\",\r\n \"2017-06-15-preview\",\r\n \"2016-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\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 \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\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 \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.IoTSpaces\",\r\n \"namespace\": \"Microsoft.IoTSpaces\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\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 \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/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 \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\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 \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\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, SystemAssignedResourceIdentity\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\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 \"2018-07-01-preview\",\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 \"2018-07-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\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\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US EUAP\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\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 \"Central US EUAP\"\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 \"Central US EUAP\"\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 \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\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 \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\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 \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\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\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\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\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\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\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\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\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/computes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/computeOperationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest 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 \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\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 \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"12fb057d-b751-47cd-857c-f2934bb677b4\",\r\n \"roleDefinitionId\": \"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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 ],\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 \"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 ],\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 \"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 ],\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 \"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 ],\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"asyncOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"remediations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyTrackedResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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-12-01-preview\",\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-12-01-preview\",\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 \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\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-12-01-preview\",\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 \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\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 \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\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 \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\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-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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\": \"namespaces/authorizationrules\",\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\": \"namespaces/queues\",\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\": \"namespaces/queues/authorizationrules\",\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\": \"namespaces/topics\",\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\": \"namespaces/topics/authorizationrules\",\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\": \"namespaces/topics/subscriptions\",\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\": \"namespaces/topics/subscriptions/rules\",\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\": \"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 \"resourceType\": \"namespaces/eventgridfilters\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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\": \"clusters/applications\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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/environments\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d10de03d-5ba3-497a-90e6-7ff8c9736059\",\r\n \"roleDefinitionId\": \"BC13595A-E262-4621-929E-56FF90E6BF18\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-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 \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/networkOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/volumeOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/gatewayOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/secretOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-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 \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"managedByAuthorization\": {\r\n \"managedByResourceRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitRequests\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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, SystemAssignedResourceIdentity\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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\": \"operations\",\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 },\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"componentsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstancesSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notificationSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2368d027-f996-4edb-bf48-928f98f2ab8c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "469320" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -37,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "1607e7a3-ee00-4b12-bf3a-69803b43db64" + "dec681d7-9772-47c3-a0b2-e17bd8e99c64" ], "x-ms-correlation-request-id": [ - "1607e7a3-ee00-4b12-bf3a-69803b43db64" + "dec681d7-9772-47c3-a0b2-e17bd8e99c64" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201633Z:1607e7a3-ee00-4b12-bf3a-69803b43db64" + "WESTUS2:20190327T002005Z:dec681d7-9772-47c3-a0b2-e17bd8e99c64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,50 +44,50 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:33 GMT" + "Wed, 27 Mar 2019 00:20:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7478" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2632?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzMjYzMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6540?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNjU0MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], "x-ms-client-request-id": [ - "ac7233f6-90af-4126-8b67-42e5c4837f69" + "89ea9440-12f5-4a6c-9def-de706291c684" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2632\",\r\n \"name\": \"ps2632\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "165" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -103,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "29751ce5-cc8f-49de-aa82-39cc2b47db84" + "e8cf8f4f-22e4-45d9-880d-fe9b63473f8b" ], "x-ms-correlation-request-id": [ - "29751ce5-cc8f-49de-aa82-39cc2b47db84" + "e8cf8f4f-22e4-45d9-880d-fe9b63473f8b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201633Z:29751ce5-cc8f-49de-aa82-39cc2b47db84" + "WESTUS2:20190327T002005Z:e8cf8f4f-22e4-45d9-880d-fe9b63473f8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,53 +110,53 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:33 GMT" + "Wed, 27 Mar 2019 00:20:05 GMT" + ], + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6540\",\r\n \"name\": \"ps6540\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2632/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjYzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6540/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjU0MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a7e4e54-0a18-4148-b220-24fb58151d15" + "3e64c894-3351-47f0-9b0e-e4ecb22f49bd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "28" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "51d47cd9-f82b-4206-b71f-1f419237149e" + "152ca14d-5628-42e0-8420-124baa655811" ], "x-ms-client-request-id": [ - "4a7e4e54-0a18-4148-b220-24fb58151d15" + "3e64c894-3351-47f0-9b0e-e4ecb22f49bd" ], "OData-Version": [ "4.0" @@ -171,74 +164,74 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "1c901e4a-20ef-4e25-942d-c7106bf7643f" + "ca0d4c4f-1764-4eba-9b9f-b9057456a14e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201634Z:1c901e4a-20ef-4e25-942d-c7106bf7643f" + "WESTUS2:20190327T002006Z:ca0d4c4f-1764-4eba-9b9f-b9057456a14e" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:34 GMT" + "Wed, 27 Mar 2019 00:20:06 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "28" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2632/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjYzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6540/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjU0MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "857a880d-cef2-4142-9098-43a236508c1e" + "27dbdb91-d610-4b8a-81e5-54bb793b2203" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps4155\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2632/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps4155\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\",\r\n \"transforms\": []\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"ruleSets\": [\r\n {\r\n \"priority\": 1,\r\n \"version\": 0,\r\n \"ruleSetType\": \"AzureManagedRuleSet\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupOverride\": \"SqlInjection\",\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1367" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5eba140d-6b3a-467c-ad0b-f1fe7d9a9599" + "7e4c87b1-aaf4-4c3e-8c42-f9ddd6c62463" ], "x-ms-client-request-id": [ - "857a880d-cef2-4142-9098-43a236508c1e" + "27dbdb91-d610-4b8a-81e5-54bb793b2203" ], "OData-Version": [ "4.0" @@ -246,74 +239,74 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "ab1d5a7b-63ea-4fc5-846a-acd66edd6fe5" + "911a6af4-5746-4f98-98c8-9368e41c0343" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201637Z:ab1d5a7b-63ea-4fc5-846a-acd66edd6fe5" + "WESTUS2:20190327T002010Z:911a6af4-5746-4f98-98c8-9368e41c0343" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:36 GMT" + "Wed, 27 Mar 2019 00:20:10 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "1668" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps1021\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6540/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps1021\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"redirectUrl\": null,\r\n \"customBlockResponseStatusCode\": null,\r\n \"customBlockResponseBody\": null\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"enabledState\": null,\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"enabledState\": \"Enabled\",\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"frontendEndpointLinks\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2632/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjYzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6540/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjU0MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f8ad28c-d6d6-4140-a780-32cf90adf1ea" + "d496ff50-44d6-4563-b391-13f3ed7c60e5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps4155\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2632/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps4155\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule2\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Log\",\r\n \"transforms\": []\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"ruleSets\": [\r\n {\r\n \"priority\": 1,\r\n \"version\": 0,\r\n \"ruleSetType\": \"AzureManagedRuleSet\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupOverride\": \"SqlInjection\",\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1365" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9c12f6d9-9d48-4193-9bf4-eaac5ee63e8b" + "7d7f2361-7ff7-4f1d-9280-b89427fac832" ], "x-ms-client-request-id": [ - "9f8ad28c-d6d6-4140-a780-32cf90adf1ea" + "d496ff50-44d6-4563-b391-13f3ed7c60e5" ], "OData-Version": [ "4.0" @@ -321,80 +314,80 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "ddf4abaa-da9a-4951-96d8-fa49e68596f1" + "a1be365f-32a7-4863-b24b-465f089eadc1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201637Z:ddf4abaa-da9a-4951-96d8-fa49e68596f1" + "WESTUS2:20190327T002011Z:a1be365f-32a7-4863-b24b-465f089eadc1" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:37 GMT" + "Wed, 27 Mar 2019 00:20:11 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "1666" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps1021\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6540/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps1021\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"redirectUrl\": null,\r\n \"customBlockResponseStatusCode\": null,\r\n \"customBlockResponseBody\": null\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule2\",\r\n \"enabledState\": null,\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"enabledState\": \"Enabled\",\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"frontendEndpointLinks\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2632/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps4155?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjYzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzNDE1NT9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6540/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps1021?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjU0MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzMTAyMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"ruleSets\": [\r\n {\r\n \"ruleSetType\": \"AzureManagedRuleSet\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupOverride\": \"SqlInjection\",\r\n \"action\": \"Block\"\r\n }\r\n ],\r\n \"priority\": 1\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"WestUs\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"enabledState\": \"Enabled\",\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1030" - ], "x-ms-client-request-id": [ - "ac5f9659-4687-454d-8e4f-7b1f96cb9788" + "407de1ce-0ac8-4b49-8feb-46ca7c0dc8ca" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps4155\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2632/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps4155\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\",\r\n \"transforms\": []\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"ruleSets\": [\r\n {\r\n \"priority\": 1,\r\n \"version\": 0,\r\n \"ruleSetType\": \"AzureManagedRuleSet\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupOverride\": \"SqlInjection\",\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1211" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ], "Content-Type": [ - "application/json; odata.metadata=minimal" + "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "1206" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "91137645-00f3-44e5-b827-93b07880aafb" + "a0fd158b-894d-48c6-82ec-845c02d8b43b" ], "x-ms-client-request-id": [ - "ac5f9659-4687-454d-8e4f-7b1f96cb9788" + "407de1ce-0ac8-4b49-8feb-46ca7c0dc8ca" ], "OData-Version": [ "4.0" @@ -402,80 +395,80 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "e5cd6a5c-51cc-4711-8aea-94d16adb9567" + "271b6461-e0be-4af0-8b20-ea75bb213461" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201636Z:e5cd6a5c-51cc-4711-8aea-94d16adb9567" + "WESTUS2:20190327T002009Z:271b6461-e0be-4af0-8b20-ea75bb213461" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:36 GMT" + "Wed, 27 Mar 2019 00:20:09 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "1488" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps1021\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6540/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps1021\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"redirectUrl\": null,\r\n \"customBlockResponseStatusCode\": null,\r\n \"customBlockResponseBody\": null\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"enabledState\": null,\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"enabledState\": \"Enabled\",\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"frontendEndpointLinks\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2632/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps4155?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjYzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzNDE1NT9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6540/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps1021?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjU0MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzMTAyMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule2\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"ruleSets\": [\r\n {\r\n \"ruleSetType\": \"AzureManagedRuleSet\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupOverride\": \"SqlInjection\",\r\n \"action\": \"Block\"\r\n }\r\n ],\r\n \"priority\": 1,\r\n \"version\": 0\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"WestUs\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule2\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"enabledState\": \"Enabled\",\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"Global\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1068" - ], "x-ms-client-request-id": [ - "283cef69-0015-4dd0-a86d-1957c008f53b" + "ccd2bec9-4ae6-4d76-a70b-fe92f9a79840" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps4155\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2632/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps4155\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule2\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Log\",\r\n \"transforms\": []\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"ruleSets\": [\r\n {\r\n \"priority\": 1,\r\n \"version\": 0,\r\n \"ruleSetType\": \"AzureManagedRuleSet\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupOverride\": \"SqlInjection\",\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1209" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ], "Content-Type": [ - "application/json; odata.metadata=minimal" + "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "1219" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "861aa56c-cf8d-41e2-8192-6ad6944270f3" + "28d1d50b-3a94-4bd5-8d0b-7aac12262fa0" ], "x-ms-client-request-id": [ - "283cef69-0015-4dd0-a86d-1957c008f53b" + "ccd2bec9-4ae6-4d76-a70b-fe92f9a79840" ], "OData-Version": [ "4.0" @@ -483,74 +476,74 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "b24b82a1-d8a0-41fc-96e4-46acf2c4f989" + "27ad7615-7e3c-41c1-9ed1-dded09f768d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201637Z:b24b82a1-d8a0-41fc-96e4-46acf2c4f989" + "WESTUS2:20190327T002011Z:27ad7615-7e3c-41c1-9ed1-dded09f768d1" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:37 GMT" + "Wed, 27 Mar 2019 00:20:11 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "1486" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps1021\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6540/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps1021\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"redirectUrl\": null,\r\n \"customBlockResponseStatusCode\": null,\r\n \"customBlockResponseBody\": null\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule2\",\r\n \"enabledState\": null,\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"enabledState\": \"Enabled\",\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"frontendEndpointLinks\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2632/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps4155?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjYzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzNDE1NT9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6540/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps1021?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjU0MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzMTAyMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e467799-cbeb-4d2c-9b8a-3417d2f1a7e3" + "828f6ccc-7294-45dc-8962-f2ae3af3e9c2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4155\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps2632/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps4155\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\",\r\n \"transforms\": []\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"ruleSets\": [\r\n {\r\n \"priority\": 1,\r\n \"version\": 0,\r\n \"ruleSetType\": \"AzureManagedRuleSet\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupOverride\": \"SqlInjection\",\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1211" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7dc97be4-047f-4f17-87b2-d7686c60758f" + "5e8e71a9-a0bc-4451-819d-e7441a9a8716" ], "x-ms-client-request-id": [ - "6e467799-cbeb-4d2c-9b8a-3417d2f1a7e3" + "828f6ccc-7294-45dc-8962-f2ae3af3e9c2" ], "OData-Version": [ "4.0" @@ -558,65 +551,65 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "40c910df-3011-430d-bb53-288efd61c79b" + "2a60bdd5-6fc4-4bde-b3d8-a4d69fb236fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201636Z:40c910df-3011-430d-bb53-288efd61c79b" + "WESTUS2:20190327T002010Z:2a60bdd5-6fc4-4bde-b3d8-a4d69fb236fc" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:36 GMT" + "Wed, 27 Mar 2019 00:20:09 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "1488" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps1021\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps6540/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps1021\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"redirectUrl\": null,\r\n \"customBlockResponseStatusCode\": null,\r\n \"customBlockResponseBody\": null\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"enabledState\": null,\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"enabledState\": \"Enabled\",\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"frontendEndpointLinks\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2632/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps4155?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjYzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzNDE1NT9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6540/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps1021?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjU0MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzMTAyMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f579754-a6cc-4af4-afb6-c7986a767098" + "a665a580-5c48-4eab-b7a0-b0ddfeb70d8c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/frontdoorWebApplicationFirewallPolicies/ps4155' under resource group 'ps2632' was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "174" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -625,13 +618,13 @@ "gateway" ], "x-ms-request-id": [ - "1b994fe6-c01c-4229-9b40-5397776a281a" + "838c4385-bda1-4428-9c07-b9fe71fefe76" ], "x-ms-correlation-request-id": [ - "1b994fe6-c01c-4229-9b40-5397776a281a" + "838c4385-bda1-4428-9c07-b9fe71fefe76" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201638Z:1b994fe6-c01c-4229-9b40-5397776a281a" + "WESTUS2:20190327T002013Z:838c4385-bda1-4428-9c07-b9fe71fefe76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -639,86 +632,93 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:38 GMT" + "Wed, 27 Mar 2019 00:20:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "174" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/frontdoorWebApplicationFirewallPolicies/ps1021' under resource group 'ps6540' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps2632/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps4155?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzMjYzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzNDE1NT9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps6540/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps1021?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNjU0MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzMTAyMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adea7d11-1181-467d-9691-a747087c58e8" + "0a5159d0-ecb3-4beb-bbb7-955057337977" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ee04295c-e752-4f1c-ba52-4da32d025dca" + "1d7d72fc-3539-4245-a018-f575cc71b2e1" ], "x-ms-client-request-id": [ - "adea7d11-1181-467d-9691-a747087c58e8" + "0a5159d0-ecb3-4beb-bbb7-955057337977" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "807ca16d-79e1-4e73-85d4-147c93b19f6f" + "8c41860e-155a-457b-868e-6202be0e587b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201638Z:807ca16d-79e1-4e73-85d4-147c93b19f6f" + "WESTUS2:20190327T002013Z:8c41860e-155a-457b-868e-6202be0e587b" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:38 GMT" + "Wed, 27 Mar 2019 00:20:13 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 204 } ], "Names": { "Test-PolicyCrud": [ - "ps4155", - "ps2632" + "ps1021", + "ps6540" ] }, "Variables": { diff --git a/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.WebApplicationFireWallPolicyTests/TestPolicyCrudWithPiping.json b/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.WebApplicationFireWallPolicyTests/TestPolicyCrudWithPiping.json index 8a9aac104dfa..ff34ee2c9b28 100644 --- a/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.WebApplicationFireWallPolicyTests/TestPolicyCrudWithPiping.json +++ b/src/FrontDoor/FrontDoor.Test/SessionRecords/Microsoft.Azure.Commands.FrontDoor.Test.ScenarioTests.ScenarioTest.WebApplicationFireWallPolicyTests/TestPolicyCrudWithPiping.json @@ -1,49 +1,42 @@ { "Entries": [ { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Byb3ZpZGVycy8/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Resources?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b7f8753-f19d-4c72-852f-eaf25685047e" + "1526d6da-a3ab-4120-8b3d-745af137c369" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configurations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"2018-03-01\",\r\n \"2017-10-01\",\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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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 \"2018-04-02\",\r\n \"2017-10-12\",\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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\": \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/importImage\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/scheduleRun\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/listLogSasUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\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 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Korea South\",\r\n \"Korea 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 \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\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/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\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 \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\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 \"Korea South\",\r\n \"Korea 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 \"2018-03-31\",\r\n \"2017-08-31\",\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 \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-04-01\",\r\n \"2018-01-22\",\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 \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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 \"2018-04-01\",\r\n \"2018-01-22\",\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\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\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 \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\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\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\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 \"Australia East\",\r\n \"Australia Southeast\",\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 \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n },\r\n {\r\n \"applicationId\": \"b503eb83-1222-4dcc-b116-b98ed5216e05\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\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 \"2018-05-01-preview\",\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\": \"components/query\",\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 \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\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 \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\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 \"2018-04-20\"\r\n ]\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 \"2018-05-01-preview\",\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\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\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 \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"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 \"France Central\",\r\n \"West US\",\r\n \"Global\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"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 \"France Central\",\r\n \"West US\",\r\n \"East US\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UK North\",\r\n \"UK South 2\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\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 \"France Central\",\r\n \"West US\",\r\n \"Global\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\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 \"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 US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\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\": \"metricNamespaces\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"UK South 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"guestDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"guestDiagnosticSettingsAssociation\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North 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 \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"interfaceEndpoints\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\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 \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"publicIPPrefixes\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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\": \"locations/availableDelegations\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\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 \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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 \"2018-04-01\",\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 \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\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 \"resourceType\": \"azureFirewalls\",\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 \"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 \"France Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\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 \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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\": \"views\",\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-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\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 \"2018-06-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\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\": \"Compliances\",\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\": \"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\": \"discoveredSecuritySolutions\",\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/discoveredSecuritySolutions\",\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\": \"allowedConnections\",\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/allowedConnections\",\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\": \"topologies\",\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/topologies\",\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 \"North Europe\",\r\n \"West Europe\",\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 \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\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\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West 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/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West 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/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 \"resourceType\": \"InformationProtectionPolicies\",\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\": \"settings\",\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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/geoBackupPolicies\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/extendedAuditingSettings\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/interfaceEndpointProfiles\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/interfaceEndpointProfileOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/interfaceEndpointProfileAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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\": \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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/usages\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\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 \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/instances\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"validate\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"sourceControls\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"availableStacks\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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/hostNameBindings\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"certificates\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-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\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"sites/metrics\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\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 \"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 \"South 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 \"France Central\"\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 \"2018-02-01\",\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 \"2018-02-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/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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/premieraddons\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\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 \"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 \"South 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 \"France Central\"\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 \"2018-02-01\",\r\n \"2017-08-01\",\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 \"2018-02-01\",\r\n \"2017-08-01\",\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 \"2018-02-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\": \"functions\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"deletedSites\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-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\": \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"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 \"South 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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-07-01\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\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\": \"DomainServices/oucontainer\",\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 ]\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-03-01\",\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 \"2018-03-01\",\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 \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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 \"Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\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 \"2018-01-01\",\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 \"2018-01-01\",\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 \"2018-01-01\",\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 \"2018-01-01\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\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 \"2018-01-01-preview\",\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 \"2018-01-01-preview\",\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\": \"denyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-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 \"2018-05-01\",\r\n \"2018-03-01\",\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 \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\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 \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\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 \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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 \"Korea Central\",\r\n \"West US 2\",\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/checkNameAvailability\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\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 \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\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 \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"billingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingRoleDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingRoleAssignments\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingPermissions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listBillingAccountsWithCreateProjectPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/projects\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/listProjectsWithCreateSubscriptionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/eligibleOffers\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/paymentMethods\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoices\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/transactions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/transactions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-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 \"2018-03-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-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-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-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-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/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\": \"domainNames/serviceCertificates\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"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 \"France Central\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\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\": \"expressRouteCrossConnections/peerings\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 },\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\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\": \"storageAccounts/vmImages\",\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-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"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 \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\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 \"Central US EUAP\"\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 \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AggregatedCost\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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 \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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\": \"Charges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"credits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\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 \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"serviceAssociationLinks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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 \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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 \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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 \"Central US\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateAddress\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\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 \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\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 US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\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 \"2018-06-01\",\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 \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getFeatureValue\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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 \"West Europe\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West Europe\"\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 \"West Europe\"\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/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DBforMariaDB\",\r\n \"namespace\": \"Microsoft.DBforMariaDB\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\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 \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\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 2\",\r\n \"East US\",\r\n \"France Central\",\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 \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"managedByRoleDefinitionId\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"operationResults\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"locations\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"locations/deleteVirtualNetworkOrSubnets\",\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 \"France Central\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-01\",\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 \"2018-02-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 \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"2018-05-01-preview\",\r\n \"2018-01-01\",\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 \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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\": \"clusters\",\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\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 \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\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\": \"namespaces/eventhubs/authorizationrules\",\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\": \"namespaces/eventhubs/consumergroups\",\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\": \"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 \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.HanaOnAzure\",\r\n \"namespace\": \"Microsoft.HanaOnAzure\",\r\n \"authorization\": {\r\n \"applicationId\": \"cc5476ec-3074-44d1-8461-711f5d9b0e39\",\r\n \"roleDefinitionId\": \"4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hanaInstances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\",\r\n \"2017-06-15-preview\",\r\n \"2016-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\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 \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\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 \"Australia East\",\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 \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\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 \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Intune\",\r\n \"namespace\": \"Microsoft.Intune\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.IoTSpaces\",\r\n \"namespace\": \"Microsoft.IoTSpaces\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\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 \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/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 \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\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 \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\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, SystemAssignedResourceIdentity\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\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 \"2018-07-01-preview\",\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 \"2018-07-01-preview\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\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\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Central US EUAP\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\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 \"Central US EUAP\"\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 \"Central US EUAP\"\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 \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\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 \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\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 \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\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\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\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\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\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\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\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\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/computes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/computeOperationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\"\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 \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest 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 \"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 \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\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 \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"12fb057d-b751-47cd-857c-f2934bb677b4\",\r\n \"roleDefinitionId\": \"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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 ],\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 \"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 ],\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 \"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 ],\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 \"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 ],\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"asyncOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"remediations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyTrackedResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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-12-01-preview\",\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-12-01-preview\",\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 \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\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-12-01-preview\",\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 \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\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 \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\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 \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\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-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\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\": \"namespaces/authorizationrules\",\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\": \"namespaces/queues\",\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\": \"namespaces/queues/authorizationrules\",\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\": \"namespaces/topics\",\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\": \"namespaces/topics/authorizationrules\",\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\": \"namespaces/topics/subscriptions\",\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\": \"namespaces/topics/subscriptions/rules\",\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\": \"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 \"resourceType\": \"namespaces/eventgridfilters\",\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 },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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\": \"clusters/applications\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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/environments\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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 \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d10de03d-5ba3-497a-90e6-7ff8c9736059\",\r\n \"roleDefinitionId\": \"BC13595A-E262-4621-929E-56FF90E6BF18\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-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 \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/networkOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/volumeOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/gatewayOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/secretOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-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 \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"managedByAuthorization\": {\r\n \"managedByResourceRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitRequests\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\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 \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\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 \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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, SystemAssignedResourceIdentity\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\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 \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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\": \"operations\",\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 },\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"componentsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstancesSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notificationSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2368d027-f996-4edb-bf48-928f98f2ab8c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "469320" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-request-id": [ - "fc6ed368-ff08-4cf4-986c-998c41f3bdcd" + "67eb954e-60fe-4f28-9003-170e2d26ed71" ], "x-ms-correlation-request-id": [ - "fc6ed368-ff08-4cf4-986c-998c41f3bdcd" + "67eb954e-60fe-4f28-9003-170e2d26ed71" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201603Z:fc6ed368-ff08-4cf4-986c-998c41f3bdcd" + "WESTUS2:20190327T002015Z:67eb954e-60fe-4f28-9003-170e2d26ed71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,65 +44,65 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:02 GMT" + "Wed, 27 Mar 2019 00:20:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7478" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/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 \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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 \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4861?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzNDg2MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8787?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlZ3JvdXBzL3BzODc4Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], "x-ms-client-request-id": [ - "4a3d93ed-bd0a-496b-88f8-41cdc4f14b44" + "e7b40734-55c0-4a24-acd8-f489b89b1004" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4861\",\r\n \"name\": \"ps4861\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "165" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.18" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "9f0fda11-c9fe-4a29-afe2-0229dfc7f62c" + "162eb969-6a3b-47f6-b380-82e9c698ffa4" ], "x-ms-correlation-request-id": [ - "9f0fda11-c9fe-4a29-afe2-0229dfc7f62c" + "162eb969-6a3b-47f6-b380-82e9c698ffa4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201603Z:9f0fda11-c9fe-4a29-afe2-0229dfc7f62c" + "WESTUS2:20190327T002015Z:162eb969-6a3b-47f6-b380-82e9c698ffa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,53 +110,53 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:03 GMT" + "Wed, 27 Mar 2019 00:20:15 GMT" + ], + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8787\",\r\n \"name\": \"ps8787\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4861/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8787/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODc4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2442262-01d8-4bc5-bfc1-24a1c2acc665" + "1465bcbf-995c-44e7-bb61-1e99dd2f1fa0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "28" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cf0c8fa3-a842-4016-a25b-37ab4bd22a3a" + "1e4fcecb-1f8f-4e30-a809-19f7e06b4dd1" ], "x-ms-client-request-id": [ - "d2442262-01d8-4bc5-bfc1-24a1c2acc665" + "1465bcbf-995c-44e7-bb61-1e99dd2f1fa0" ], "OData-Version": [ "4.0" @@ -174,71 +167,71 @@ "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-correlation-request-id": [ - "54696c59-5f49-4b58-a604-92df7591f8fb" + "89c3be96-7535-4f08-b825-14f83c9f2772" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201604Z:54696c59-5f49-4b58-a604-92df7591f8fb" + "WESTUS2:20190327T002016Z:89c3be96-7535-4f08-b825-14f83c9f2772" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:04 GMT" + "Wed, 27 Mar 2019 00:20:15 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "28" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4861/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8787/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODc4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef0a4f44-04a9-42ff-927d-8eca8f172204" + "1ba5cc02-9e8c-40e2-8b64-07847573d0ad" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps8483\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4861/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps8483\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\",\r\n \"transforms\": []\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"ruleSets\": [\r\n {\r\n \"priority\": 1,\r\n \"version\": 0,\r\n \"ruleSetType\": \"AzureManagedRuleSet\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupOverride\": \"SqlInjection\",\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1367" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1603b360-08c9-47d2-be43-b2f5c34ca1a0" + "e9ac3992-bf40-4f40-b18b-c51525e059a6" ], "x-ms-client-request-id": [ - "ef0a4f44-04a9-42ff-927d-8eca8f172204" + "1ba5cc02-9e8c-40e2-8b64-07847573d0ad" ], "OData-Version": [ "4.0" @@ -246,74 +239,74 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "810f57c7-bce0-4d82-87cd-8c5a689d37e0" + "3cf9666a-fbdb-4fde-9cc5-e74882153943" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201607Z:810f57c7-bce0-4d82-87cd-8c5a689d37e0" + "WESTUS2:20190327T002019Z:3cf9666a-fbdb-4fde-9cc5-e74882153943" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:06 GMT" + "Wed, 27 Mar 2019 00:20:19 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "1668" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps5942\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8787/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps5942\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"redirectUrl\": null,\r\n \"customBlockResponseStatusCode\": null,\r\n \"customBlockResponseBody\": null\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"enabledState\": null,\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"enabledState\": \"Enabled\",\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"frontendEndpointLinks\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4861/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTgtMDgtMDE=", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8787/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODc4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "375b52ae-5bbb-493d-a052-2bc03255024e" + "a3010a9f-a549-482a-b014-ab2eb35ab752" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps8483\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4861/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps8483\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule2\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Log\",\r\n \"transforms\": []\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"ruleSets\": [\r\n {\r\n \"priority\": 1,\r\n \"version\": 0,\r\n \"ruleSetType\": \"AzureManagedRuleSet\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupOverride\": \"SqlInjection\",\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1365" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "122ec84e-f590-44c9-a89a-c518fac84a84" + "9b4ab063-a111-478e-9e76-fe79529fe2cc" ], "x-ms-client-request-id": [ - "375b52ae-5bbb-493d-a052-2bc03255024e" + "a3010a9f-a549-482a-b014-ab2eb35ab752" ], "OData-Version": [ "4.0" @@ -321,80 +314,80 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "af8fad1e-f0d2-4e30-b3e4-7799afc27701" + "b4d4026b-409c-48cc-8418-6256ff286fe1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201608Z:af8fad1e-f0d2-4e30-b3e4-7799afc27701" + "WESTUS2:20190327T002021Z:b4d4026b-409c-48cc-8418-6256ff286fe1" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:07 GMT" + "Wed, 27 Mar 2019 00:20:21 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "1666" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps5942\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8787/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps5942\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"redirectUrl\": null,\r\n \"customBlockResponseStatusCode\": null,\r\n \"customBlockResponseBody\": null\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule2\",\r\n \"enabledState\": null,\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"enabledState\": \"Enabled\",\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"frontendEndpointLinks\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4861/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps8483?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzODQ4Mz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8787/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps5942?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODc4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzNTk0Mj9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"ruleSets\": [\r\n {\r\n \"ruleSetType\": \"AzureManagedRuleSet\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupOverride\": \"SqlInjection\",\r\n \"action\": \"Block\"\r\n }\r\n ],\r\n \"priority\": 1\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"WestUs\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"enabledState\": \"Enabled\",\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1030" - ], "x-ms-client-request-id": [ - "154b7757-a193-42f8-9bf7-7bd536ce7143" + "f6b22f88-570a-4385-be5c-771d5c42e0fb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps8483\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4861/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps8483\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\",\r\n \"transforms\": []\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"ruleSets\": [\r\n {\r\n \"priority\": 1,\r\n \"version\": 0,\r\n \"ruleSetType\": \"AzureManagedRuleSet\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupOverride\": \"SqlInjection\",\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1211" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ], "Content-Type": [ - "application/json; odata.metadata=minimal" + "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "1206" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "34484f26-8d92-4a47-a333-8bfc79d1a2ab" + "dabdc011-9257-41d7-a11b-36f68883ed30" ], "x-ms-client-request-id": [ - "154b7757-a193-42f8-9bf7-7bd536ce7143" + "f6b22f88-570a-4385-be5c-771d5c42e0fb" ], "OData-Version": [ "4.0" @@ -402,80 +395,80 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "28f58c0d-6dc3-436c-bc5b-3486af7cc576" + "c9cc6914-6654-40bc-8622-d6645f9d0749" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201606Z:28f58c0d-6dc3-436c-bc5b-3486af7cc576" + "WESTUS2:20190327T002019Z:c9cc6914-6654-40bc-8622-d6645f9d0749" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:05 GMT" + "Wed, 27 Mar 2019 00:20:19 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "1488" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps5942\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8787/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps5942\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"redirectUrl\": null,\r\n \"customBlockResponseStatusCode\": null,\r\n \"customBlockResponseBody\": null\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"enabledState\": null,\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"enabledState\": \"Enabled\",\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"frontendEndpointLinks\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4861/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps8483?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzODQ4Mz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8787/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps5942?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODc4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzNTk0Mj9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule2\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"ruleSets\": [\r\n {\r\n \"ruleSetType\": \"AzureManagedRuleSet\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupOverride\": \"SqlInjection\",\r\n \"action\": \"Block\"\r\n }\r\n ],\r\n \"priority\": 1\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"WestUs\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule2\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"enabledState\": \"Enabled\",\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1028" - ], "x-ms-client-request-id": [ - "cfd628a5-602f-4649-9e9c-9676f7713bac" + "8f20027b-cd51-403e-9f41-c16fcfd12eae" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"ps8483\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4861/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps8483\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule2\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Log\",\r\n \"transforms\": []\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"ruleSets\": [\r\n {\r\n \"priority\": 1,\r\n \"version\": 0,\r\n \"ruleSetType\": \"AzureManagedRuleSet\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupOverride\": \"SqlInjection\",\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1209" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ], "Content-Type": [ - "application/json; odata.metadata=minimal" + "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "1204" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ecf5602e-7c8d-47b8-b88e-d8747f692dbb" + "8d63eee6-1ebd-4a2c-8154-e1a8bf689fc5" ], "x-ms-client-request-id": [ - "cfd628a5-602f-4649-9e9c-9676f7713bac" + "8f20027b-cd51-403e-9f41-c16fcfd12eae" ], "OData-Version": [ "4.0" @@ -483,74 +476,74 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "0b423d7c-b3c7-4aec-a212-5c095f844931" + "bbba8048-fde7-4399-831e-d764c8f1f8a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201607Z:0b423d7c-b3c7-4aec-a212-5c095f844931" + "WESTUS2:20190327T002021Z:bbba8048-fde7-4399-831e-d764c8f1f8a7" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:07 GMT" + "Wed, 27 Mar 2019 00:20:20 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "1486" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps5942\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8787/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps5942\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"redirectUrl\": null,\r\n \"customBlockResponseStatusCode\": null,\r\n \"customBlockResponseBody\": null\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule2\",\r\n \"enabledState\": null,\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"enabledState\": \"Enabled\",\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"frontendEndpointLinks\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4861/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps8483?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzODQ4Mz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8787/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps5942?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODc4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzNTk0Mj9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcfd8c33-e29b-4dfa-8525-50c417828fc0" + "c3b52f7d-fe6b-4219-b92d-8f89b80dcb5b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8483\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4861/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps8483\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\",\r\n \"transforms\": []\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"ruleSets\": [\r\n {\r\n \"priority\": 1,\r\n \"version\": 0,\r\n \"ruleSetType\": \"AzureManagedRuleSet\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupOverride\": \"SqlInjection\",\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1211" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8a58f79f-6248-48c0-80c9-2a936c9326ca" + "ef3cb502-c737-431d-9ea3-887a45f90448" ], "x-ms-client-request-id": [ - "bcfd8c33-e29b-4dfa-8525-50c417828fc0" + "c3b52f7d-fe6b-4219-b92d-8f89b80dcb5b" ], "OData-Version": [ "4.0" @@ -558,74 +551,74 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "7006e1eb-39d2-4a0a-b65f-c61dd2b42d71" + "e3278d52-71a5-45ab-b687-8980d8033bbe" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201607Z:7006e1eb-39d2-4a0a-b65f-c61dd2b42d71" + "WESTUS2:20190327T002019Z:e3278d52-71a5-45ab-b687-8980d8033bbe" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:06 GMT" + "Wed, 27 Mar 2019 00:20:19 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "1488" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps5942\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8787/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps5942\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"redirectUrl\": null,\r\n \"customBlockResponseStatusCode\": null,\r\n \"customBlockResponseBody\": null\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule1\",\r\n \"enabledState\": null,\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"enabledState\": \"Enabled\",\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"frontendEndpointLinks\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4861/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps8483?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzODQ4Mz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8787/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps5942?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODc4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzNTk0Mj9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f1d6b5d-2dff-44c4-9f7c-d7ff24bd2a4a" + "5389978b-b15b-480e-acd2-8aec3653fcf5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8483\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps4861/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps8483\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\"\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule2\",\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Log\",\r\n \"transforms\": []\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"ruleSets\": [\r\n {\r\n \"priority\": 1,\r\n \"version\": 0,\r\n \"ruleSetType\": \"AzureManagedRuleSet\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupOverride\": \"SqlInjection\",\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1209" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6b278679-81a9-45d7-9b59-90c7c5984872" + "08e27a8a-127f-4ed6-a14c-cbd61c0ca880" ], "x-ms-client-request-id": [ - "4f1d6b5d-2dff-44c4-9f7c-d7ff24bd2a4a" + "5389978b-b15b-480e-acd2-8aec3653fcf5" ], "OData-Version": [ "4.0" @@ -633,65 +626,65 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "38ad15ee-35ac-4537-a356-0402d72e4f8c" + "6f2689f3-2ce8-4ccb-a6e5-9979e722a6e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201608Z:38ad15ee-35ac-4537-a356-0402d72e4f8c" + "WESTUS2:20190327T002021Z:6f2689f3-2ce8-4ccb-a6e5-9979e722a6e4" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:07 GMT" + "Wed, 27 Mar 2019 00:20:21 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" + "Content-Length": [ + "1486" ], - "X-AspNet-Version": [ - "4.0.30319" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ps5942\",\r\n \"id\": \"/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourcegroups/ps8787/providers/Microsoft.Network/frontdoorwebapplicationfirewallpolicies/ps5942\",\r\n \"type\": \"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"redirectUrl\": null,\r\n \"customBlockResponseStatusCode\": null,\r\n \"customBlockResponseBody\": null\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"Rule2\",\r\n \"enabledState\": null,\r\n \"priority\": 2,\r\n \"ruleType\": \"MatchRule\",\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 0,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestHeader\",\r\n \"selector\": \"UserAgent\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"Windows\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"preview-0.1\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"SQLI\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"942100\",\r\n \"enabledState\": \"Enabled\",\r\n \"action\": \"Log\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"frontendEndpointLinks\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4861/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps8483?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzODQ4Mz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8787/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps5942?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODc4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzNTk0Mj9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e8861db-cfef-4a27-9581-b08466631317" + "490e4835-a0b6-4739-a820-334d750780f0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/frontdoorWebApplicationFirewallPolicies/ps8483' under resource group 'ps4861' was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "174" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -700,13 +693,13 @@ "gateway" ], "x-ms-request-id": [ - "93471215-0c24-45d2-b13d-a08377aeecd0" + "de4fa27f-a432-47ad-a93a-2d9d66c15d2e" ], "x-ms-correlation-request-id": [ - "93471215-0c24-45d2-b13d-a08377aeecd0" + "de4fa27f-a432-47ad-a93a-2d9d66c15d2e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201609Z:93471215-0c24-45d2-b13d-a08377aeecd0" + "WESTUS2:20190327T002023Z:de4fa27f-a432-47ad-a93a-2d9d66c15d2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -714,86 +707,93 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:08 GMT" + "Wed, 27 Mar 2019 00:20:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "174" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/frontdoorWebApplicationFirewallPolicies/ps5942' under resource group 'ps8787' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps4861/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps8483?api-version=2018-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzNDg2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzODQ4Mz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestUri": "/subscriptions/47f4bc68-6fe4-43a2-be8b-dfd0e290efa2/resourceGroups/ps8787/providers/Microsoft.Network/FrontDoorWebApplicationFirewallPolicies/ps5942?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDdmNGJjNjgtNmZlNC00M2EyLWJlOGItZGZkMGUyOTBlZmEyL3Jlc291cmNlR3JvdXBzL3BzODc4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvRnJvbnREb29yV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BzNTk0Mj9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fec5b381-afcd-4439-b758-7dcceb0fcae9" + "deeb2cda-66ce-4145-a4b2-a01f4405c29e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3163.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.9.0.0" + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.Azure.Management.FrontDoor.FrontDoorManagementClient/0.11.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "aa0a3cb9-6e62-40c1-9486-891d11b6df94" + "f1c4e6ee-a766-495e-87fa-4e5a6304e732" ], "x-ms-client-request-id": [ - "fec5b381-afcd-4439-b758-7dcceb0fcae9" + "deeb2cda-66ce-4145-a4b2-a01f4405c29e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "bf23fc7e-1f49-4284-b96d-71b50242afe2" + "0d889af5-658b-4f8d-a5cf-7f50b0825c28" ], "x-ms-routing-request-id": [ - "WESTUS2:20180920T201609Z:bf23fc7e-1f49-4284-b96d-71b50242afe2" + "WESTUS2:20190327T002023Z:0d889af5-658b-4f8d-a5cf-7f50b0825c28" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 20 Sep 2018 20:16:08 GMT" + "Wed, 27 Mar 2019 00:20:23 GMT" ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 204 } ], "Names": { "Test-PolicyCrudWithPiping": [ - "ps8483", - "ps4861" + "ps5942", + "ps8787" ] }, "Variables": { diff --git a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 index 4076677834ca..b6890874be47 100644 --- a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 +++ b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/25/2019 +# Generated on: 4/4/2019 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '0.7.2' +ModuleVersion = '0.7.3' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.FrontDoor.dll' @@ -83,12 +83,13 @@ CmdletsToExport = 'New-AzFrontDoor', 'Get-AzFrontDoor', 'Set-AzFrontDoor', 'New-AzFrontDoorMatchConditionObject', 'New-AzFrontDoorCustomRuleObject', 'New-AzFrontDoorManagedRuleObject', 'New-AzFrontDoorFireWallPolicy', - 'Get-AzFrontDoorFireWallPolicy', 'Set-AzFrontDoorFireWallPolicy', + 'Get-AzFrontDoorFireWallPolicy', 'Update-AzFrontDoorFireWallPolicy', 'Remove-AzFrontDoorFireWallPolicy', 'New-AzFrontDoorRuleGroupOverrideObject', 'Remove-AzFrontDoorContent', 'Enable-AzFrontDoorCustomDomainHttps', 'Disable-AzFrontDoorCustomDomainHttps', - 'Get-AzFrontDoorFrontendEndpoint' + 'Get-AzFrontDoorFrontendEndpoint', + 'New-AzFrontDoorManagedRuleOverrideObject' # Variables to export from this module # VariablesToExport = @() @@ -123,11 +124,11 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add cmdlets to enable/disable custom domain SSL - - ''Enable-AzFrontDoorCustomDomainHttps'' - - ''Disable-AzFrontDoorCustomDomainHttps'' -* Add cmdlet to get all existing frontend endpoints in the current front door resource - - ''Get-AzFrontDoorFrontendEndpoint''' + ReleaseNotes = '* Configure redirect routing rule. +* Enable/Disable cetificate name check for backend pools +* Modify WAF policy cmdlets to implement new swagger + - Adds new managed rule sets capabilities + - Adds redirect action' # Prerelease string of this module # Prerelease = '' diff --git a/src/FrontDoor/FrontDoor/ChangeLog.md b/src/FrontDoor/FrontDoor/ChangeLog.md index d010e71e19a9..080d79b53892 100644 --- a/src/FrontDoor/FrontDoor/ChangeLog.md +++ b/src/FrontDoor/FrontDoor/ChangeLog.md @@ -19,6 +19,13 @@ --> ## Upcoming Release +## Version 0.7.3 +* Configure redirect routing rule. +* Enable/Disable cetificate name check for backend pools +* Modify WAF policy cmdlets to implement new swagger + - Adds new managed rule sets capabilities + - Adds redirect action + ## Version 0.7.2 * Add cmdlets to enable/disable custom domain SSL - `Enable-AzFrontDoorCustomDomainHttps` diff --git a/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoor.cs b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoor.cs index a3a14098cb6d..71eb0b624729 100644 --- a/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoor.cs +++ b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoor.cs @@ -89,6 +89,12 @@ public class NewAzureRmFrontDoor : AzureFrontDoorCmdletBase [Parameter(Mandatory = false, HelpMessage = "Enabled state of the Front Door load balancer. Default value is Enabled")] public PSEnabledState EnabledState { get; set; } + /// + /// Whether to enforce certificate name check on HTTPS requests to all backend pools. No effect on non-HTTPS requests. + /// + [Parameter(Mandatory = false, HelpMessage = "Whether to disable certificate name check on HTTPS requests to all backend pools. No effect on non-HTTPS requests.")] + public SwitchParameter DisableCertificateNameCheck { get; set; } + public override void ExecuteCmdlet() { var existingProfile = FrontDoorManagementClient.FrontDoors.ListByResourceGroup(ResourceGroupName) @@ -112,7 +118,9 @@ public override void ExecuteCmdlet() healthProbeSettings: HealthProbeSetting?.Select(x => x.ToSdkHealthProbeSetting()).ToList(), backendPools: BackendPool?.Select(x => x.ToSdkBackendPool()).ToList(), frontendEndpoints: FrontendEndpoint?.Select(x => x.ToSdkFrontendEndpoints()).ToList(), - enabledState: !this.IsParameterBound(c => c.EnabledState)? "Enabled" : EnabledState.ToString() + enabledState: !this.IsParameterBound(c => c.EnabledState)? "Enabled" : EnabledState.ToString(), + backendPoolsSettings : new Management.FrontDoor.Models.BackendPoolsSettings( + DisableCertificateNameCheck ? PSEnforceCertificateNameCheck.Disabled.ToString() : PSEnforceCertificateNameCheck.Enabled.ToString()) ); updateParameters.ToPSFrontDoor().ValidateFrontDoor(ResourceGroupName, this.DefaultContext.Subscription.Id); if (ShouldProcess(Resources.FrontDoorTarget, string.Format(Resources.CreateFrontDoor, Name))) diff --git a/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorCustomRuleObject.cs b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorCustomRuleObject.cs index f691cef7a869..56ef4014c74c 100644 --- a/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorCustomRuleObject.cs +++ b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorCustomRuleObject.cs @@ -76,12 +76,6 @@ public class NewAzureRmFrontDoorCustomRuleObject : AzureFrontDoorCmdletBase [Parameter(Mandatory = false, HelpMessage = "Rate limit thresold")] public int? RateLimitThreshold { get; set; } - /// - /// List of transforms - /// - [Parameter(Mandatory = false, HelpMessage = "List of transforms")] - public string[] Transform { get; set; } - public override void ExecuteCmdlet() { var CustomRule = new PSCustomRule @@ -92,7 +86,6 @@ public override void ExecuteCmdlet() RuleType = RuleType, RateLimitDurationInMinutes = !this.IsParameterBound(c => c.RateLimitDurationInMinutes)? 1 : RateLimitDurationInMinutes, RateLimitThreshold = RateLimitThreshold, - Transforms = Transform?.ToList(), Action = Action }; WriteObject(CustomRule); diff --git a/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorFireWallPolicy.cs b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorFireWallPolicy.cs index edbb64d464a8..f252b91164fc 100644 --- a/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorFireWallPolicy.cs +++ b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorFireWallPolicy.cs @@ -13,17 +13,16 @@ // ---------------------------------------------------------------------------------- using System; -using System.Collections; +using System.Linq; using System.Management.Automation; -using System.Net; +using System.Text; using Microsoft.Azure.Commands.FrontDoor.Common; using Microsoft.Azure.Commands.FrontDoor.Helpers; using Microsoft.Azure.Commands.FrontDoor.Models; using Microsoft.Azure.Commands.FrontDoor.Properties; -using Microsoft.WindowsAzure.Commands.Utilities.Common; -using Microsoft.Azure.Management.FrontDoor; -using System.Linq; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.FrontDoor; +using Microsoft.WindowsAzure.Commands.Utilities.Common; namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { @@ -72,7 +71,24 @@ public class NewAzureRmFrontDoorFireWallPolicy : AzureFrontDoorCmdletBase [Parameter(Mandatory = false, HelpMessage = "Managed rules inside the policy")] public PSManagedRule[] ManagedRule { get; set; } + /// + /// Redirect URL used for redirect actions + /// + [Parameter(Mandatory = false, HelpMessage = "Redirect URL")] + public string RedirectUrl { get; set; } + + /// + /// Custom block response code used for block actions + /// + [Parameter(Mandatory = false, HelpMessage = "Custom Response Status Code")] + [ValidateRange(200, 499)] + public int CustomBlockResponseStatusCode { get; set; } + /// + /// Custom block response body used for block actions + /// + [Parameter(Mandatory = false, HelpMessage = "Custom Response Body")] + public string CustomBlockResponseBody { get; set; } public override void ExecuteCmdlet() { @@ -85,20 +101,24 @@ public override void ExecuteCmdlet() Name, ResourceGroupName)); } - var updateParameters = new Management.FrontDoor.Models.WebApplicationFirewallPolicy1 + var updateParameters = new Management.FrontDoor.Models.WebApplicationFirewallPolicy { Location = "global", - CustomRules = new Management.FrontDoor.Models.CustomRules { + CustomRules = new Management.FrontDoor.Models.CustomRuleList() + { Rules = Customrule?.ToList().Select(x => x.ToSdkCustomRule()).ToList() }, - ManagedRules = new Management.FrontDoor.Models.ManagedRuleSets + ManagedRules = new Management.FrontDoor.Models.ManagedRuleSetList() { - RuleSets = ManagedRule?.ToList().Select(x => x.ToSdkAzManagedRule()).ToList() + ManagedRuleSets = ManagedRule?.ToList().Select(x => x.ToSdkAzManagedRule()).ToList() }, PolicySettings = new Management.FrontDoor.Models.PolicySettings { EnabledState = this.IsParameterBound(c => c.EnabledState) ? EnabledState.ToString() : PSEnabledState.Enabled.ToString(), - Mode = this.IsParameterBound(c => c.Mode) ? Mode.ToString() : PSMode.Prevention.ToString() + Mode = this.IsParameterBound(c => c.Mode) ? Mode.ToString() : PSMode.Prevention.ToString(), + CustomBlockResponseBody = CustomBlockResponseBody == null ? CustomBlockResponseBody : Convert.ToBase64String(Encoding.UTF8.GetBytes(CustomBlockResponseBody)), + CustomBlockResponseStatusCode = this.IsParameterBound(c => c.CustomBlockResponseStatusCode) ? CustomBlockResponseStatusCode : (int?)null, + RedirectUrl = RedirectUrl } }; if (ShouldProcess(Resources.WebApplicationFirewallPolicyTarget, string.Format(Resources.CreateWebApplicationFirewallPolicy, Name))) diff --git a/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorManagedRuleObject.cs b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorManagedRuleObject.cs index 42159ffea3c9..dfe997c1999f 100644 --- a/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorManagedRuleObject.cs +++ b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorManagedRuleObject.cs @@ -12,14 +12,10 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; -using System.Collections; +using System.Linq; using System.Management.Automation; -using System.Net; using Microsoft.Azure.Commands.FrontDoor.Common; using Microsoft.Azure.Commands.FrontDoor.Models; -using Microsoft.Azure.Management.FrontDoor; -using System.Linq; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets @@ -31,15 +27,17 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets public class NewAzureRmFrontDoorManagedRuleObject : AzureFrontDoorCmdletBase { /// - /// Describes priority of the rule + /// Type of the ruleset (e.g.: DefaultRuleSet) /// - [Parameter(Mandatory = true, HelpMessage = "Describes priority of the rule")] - public int Priority { get; set; } + [Parameter(Mandatory = true, HelpMessage = "Type of the ruleset")] + [PSArgumentCompleter("DefaultRuleSet")] + public string Type { get; set; } /// - /// Version of the ruleset + /// Version of the ruleset (e.g.: preview-0.1) /// - [Parameter(Mandatory = false, HelpMessage = "Version of the ruleset")] + [Parameter(Mandatory = true, HelpMessage = "Version of the ruleset")] + [PSArgumentCompleter("preview-0.1")] public string Version { get; set; } /// @@ -52,8 +50,8 @@ public override void ExecuteCmdlet() { var rule = new PSAzureManagedRule { - Priority = Priority, - Version = Version, + RuleSetType = Type, + RuleSetVersion = Version, RuleGroupOverrides = RuleGroupOverride?.ToList() }; WriteObject(rule); diff --git a/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorManagedRuleOverrideObject.cs b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorManagedRuleOverrideObject.cs new file mode 100644 index 000000000000..8d074c2a9308 --- /dev/null +++ b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorManagedRuleOverrideObject.cs @@ -0,0 +1,58 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Management.Automation; +using Microsoft.Azure.Commands.FrontDoor.Common; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using Microsoft.Azure.Commands.FrontDoor.Models; + +namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets +{ + /// + /// Defines the New-AzFrontDoorManagedRuleOverrideObject cmdlet. + /// + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorManagedRuleOverrideObject"), OutputType(typeof(PSAzureManagedRuleOverride))] + public class NewAzureRmFrontDoorManagedRuleOverrideObject : AzureFrontDoorCmdletBase + { + /// + /// Rule ID + /// + [Parameter(Mandatory = true, HelpMessage = "Rule ID")] + public string RuleId { get; set; } + + /// + /// Override Action + /// + [Parameter(Mandatory = false, HelpMessage = "Override Action")] + public PSAction Action { get; set; } + + /// + /// Disabled State + /// + [Parameter(Mandatory = false, HelpMessage = "Disabled state")] + public SwitchParameter Disabled { get; set; } + + public override void ExecuteCmdlet() + { + var managedRuleOverride = new PSAzureManagedRuleOverride + { + RuleId = RuleId, + Action = this.IsParameterBound(c => c.Action) ? Action : (PSAction?)null, + EnabledState = (this.IsParameterBound(c => c.Disabled) && Disabled.IsPresent) ? PSEnabledState.Disabled : PSEnabledState.Enabled + }; + WriteObject(managedRuleOverride); + } + + } +} diff --git a/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorMatchConditionObject.cs b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorMatchConditionObject.cs index d757e980a875..77213e043909 100644 --- a/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorMatchConditionObject.cs +++ b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorMatchConditionObject.cs @@ -12,15 +12,10 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; -using System.Collections; +using System.Linq; using System.Management.Automation; -using System.Net; using Microsoft.Azure.Commands.FrontDoor.Common; using Microsoft.Azure.Commands.FrontDoor.Models; -using Microsoft.Azure.Management.FrontDoor; -using System.Linq; -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.WindowsAzure.Commands.Utilities.Common; namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets @@ -52,8 +47,7 @@ public class NewAzureRmFrontDoorMatchConditionObject : AzureFrontDoorCmdletBase /// /// Match value. /// - [Parameter(Mandatory = true, HelpMessage = "Match value.")] - [ValidateNotNullOrEmpty] + [Parameter(Mandatory = false, HelpMessage = "Match value.")] public string[] MatchValue { get; set; } /// @@ -67,19 +61,33 @@ public class NewAzureRmFrontDoorMatchConditionObject : AzureFrontDoorCmdletBase /// [Parameter(Mandatory = false, HelpMessage = "Describes if this is negate condition or not. Default value is false")] public bool NegateCondition { get; set; } - + public override void ExecuteCmdlet() { + ValidateArguments(); + var matchCondition = new PSMatchCondition { - MatchVariable = MatchVariable, - MatchValue = MatchValue.ToList(), - NegateCondition = !this.IsParameterBound(c => c.NegateCondition)? false : NegateCondition, - OperatorProperty = OperatorProperty, - Selector = Selector + MatchVariable = MatchVariable, + MatchValue = MatchValue?.ToList(), + NegateCondition = !this.IsParameterBound(c => c.NegateCondition) ? false : NegateCondition, + OperatorProperty = OperatorProperty, + Selector = Selector }; WriteObject(matchCondition); } - + + private void ValidateArguments() + { + if (OperatorProperty == PSOperatorProperty.Any && MatchValue != null) + { + throw new PSArgumentException(nameof(MatchValue)); + } + + if (OperatorProperty != PSOperatorProperty.Any && (MatchValue == null || MatchValue.Length == 0)) + { + throw new PSArgumentNullException(nameof(MatchValue)); + } + } } } diff --git a/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorRoutingRuleObject.cs b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorRoutingRuleObject.cs index 6c77cdb4b604..705388ce70b7 100644 --- a/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorRoutingRuleObject.cs +++ b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorRoutingRuleObject.cs @@ -29,9 +29,9 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets /// /// Defines the New-AzFrontDoorRoutingRuleObject cmdlet. /// - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorRoutingRuleObject"), OutputType(typeof(PSRoutingRule))] + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorRoutingRuleObject", DefaultParameterSetName = FieldsWithForwardingParameterSet), OutputType(typeof(PSRoutingRule))] public class NewAzureRmFrontDoorRoutingRuleObject : AzureFrontDoorCmdletBase - { + { /// /// The resource group name that the RoutingRule will be created in. /// @@ -63,7 +63,7 @@ public class NewAzureRmFrontDoorRoutingRuleObject : AzureFrontDoorCmdletBase /// /// The name of BackendPool which this rule routes to /// - [Parameter(Mandatory = true, HelpMessage = "The name of the BackendPool which this rule routes to")] + [Parameter(Mandatory = true, ParameterSetName = FieldsWithForwardingParameterSet, HelpMessage = "The name of the BackendPool which this rule routes to")] [ValidateNotNullOrEmpty] public string BackendPoolName { get; set; } @@ -82,33 +82,69 @@ public class NewAzureRmFrontDoorRoutingRuleObject : AzureFrontDoorCmdletBase /// /// The custom path used to rewrite resource paths matched by this rule. Leave empty to use incoming path. /// - [Parameter(Mandatory = false, HelpMessage = "The custom path used to rewrite resource paths matched by this rule. Leave empty to use incoming path.")] + [Parameter(Mandatory = false, ParameterSetName = FieldsWithForwardingParameterSet, HelpMessage = "The custom path used to rewrite resource paths matched by this rule. Leave empty to use incoming path.")] public string CustomForwardingPath { get; set; } /// /// The protocol this rule will use when forwarding traffic to backends. /// - [Parameter(Mandatory = false, HelpMessage = "The protocol this rule will use when forwarding traffic to backends. Default value is MatchRequest")] + [Parameter(Mandatory = false, ParameterSetName = FieldsWithForwardingParameterSet, HelpMessage = "The protocol this rule will use when forwarding traffic to backends. Default value is MatchRequest")] public PSForwardingProtocol ForwardingProtocol { get; set; } /// /// Whether to enable caching for this route. /// - [Parameter(Mandatory = false, HelpMessage = "Whether to enable caching for this route. Default value is false")] + [Parameter(Mandatory = false, ParameterSetName = FieldsWithForwardingParameterSet, HelpMessage = "Whether to enable caching for this route. Default value is false")] public bool EnableCaching { get; set; } /// /// The treatment of URL query terms when forming the cache key. /// - [Parameter(Mandatory = false, HelpMessage = "The treatment of URL query terms when forming the cache key. Default value is StripAll")] + [Parameter(Mandatory = false, ParameterSetName = FieldsWithForwardingParameterSet, HelpMessage = "The treatment of URL query terms when forming the cache key. Default value is StripAll")] public PSQueryParameterStripDirective QueryParameterStripDirective { get; set; } /// /// Whether to use dynamic compression for cached content /// - [Parameter(Mandatory = false, HelpMessage = "Whether to enable dynamic compression for cached content. Default value is Enabled")] + [Parameter(Mandatory = false, ParameterSetName = FieldsWithForwardingParameterSet, HelpMessage = "Whether to enable dynamic compression for cached content. Default value is Enabled")] public PSEnabledState DynamicCompression { get; set; } + /// + /// The redirect type the rule will use when redirecting traffic. + /// + [Parameter(Mandatory = false, ParameterSetName = FieldsWithRedirectParameterSet, HelpMessage = "The redirect type the rule will use when redirecting traffic. Default Value is Moved")] + public PSRedirectType RedirectType { get; set; } + + /// + /// The protocol of the destination to where the traffic is redirected + /// + [Parameter(Mandatory = false, ParameterSetName = FieldsWithRedirectParameterSet, HelpMessage = "The protocol of the destination to where the traffic is redirected. Default value is MatchRequest")] + public PSRedirectProtocol RedirectProtocol { get; set; } + + /// + /// Host to redirect. Leave empty to use use the incoming host as the destination host. + /// + [Parameter(Mandatory = false, ParameterSetName = FieldsWithRedirectParameterSet, HelpMessage = "Host to redirect. Leave empty to use use the incoming host as the destination host.")] + public string CustomHost { get; set; } + + /// + /// The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path. + /// + [Parameter(Mandatory = false, ParameterSetName = FieldsWithRedirectParameterSet, HelpMessage = "The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path.")] + public string CustomPath { get; set; } + + /// + /// Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #. + /// + [Parameter(Mandatory = false, ParameterSetName = FieldsWithRedirectParameterSet, HelpMessage = "Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #.")] + public string CustomFragment { get; set; } + + /// + /// The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in = format. The first ? and & will be added automatically so do not include them in the front, but do separate multiple query strings with &. + /// + [Parameter(Mandatory = false, ParameterSetName = FieldsWithRedirectParameterSet, HelpMessage = "The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in = format. The first ? and & will be added automatically so do not include them in the front, but do separate multiple query strings with &.")] + public string CustomQueryString { get; set; } + /// /// Whether to enable use of this rule. /// @@ -126,19 +162,39 @@ public override void ExecuteCmdlet() var RoutingRule = new PSRoutingRule { Name = Name, - CustomForwardingPath = CustomForwardingPath, - ForwardingProtocol = !this.IsParameterBound(c => c.ForwardingProtocol)? PSForwardingProtocol.MatchRequest : ForwardingProtocol, - QueryParameterStripDirective = !this.IsParameterBound(c => c.QueryParameterStripDirective)? PSQueryParameterStripDirective.StripAll : QueryParameterStripDirective, - DynamicCompression = !this.IsParameterBound(c => c.DynamicCompression)? PSEnabledState.Enabled : DynamicCompression, - EnabledState = !this.IsParameterBound(c => c.EnabledState)? PSEnabledState.Enabled : EnabledState, - BackendPoolId = BackendPoolId, + EnabledState = !this.IsParameterBound(c => c.EnabledState) ? PSEnabledState.Enabled : EnabledState, FrontendEndpointIds = FrontendEndpointIds, AcceptedProtocols = !this.IsParameterBound(c => c.AcceptedProtocol) ? new List { PSProtocol.Http, PSProtocol.Https } : AcceptedProtocol?.ToList(), - PatternsToMatch = !this.IsParameterBound(c => c.PatternToMatch) ? new List { "/*" } : PatternToMatch?.ToList(), - EnableCaching = !this.IsParameterBound(c => c.EnableCaching) ? false : EnableCaching + PatternsToMatch = !this.IsParameterBound(c => c.PatternToMatch) ? new List { "/*" } : PatternToMatch?.ToList() }; + + if (ParameterSetName == FieldsWithForwardingParameterSet) + { + RoutingRule.RouteConfiguration = new PSForwardingConfiguration + { + CustomForwardingPath = CustomForwardingPath, + ForwardingProtocol = !this.IsParameterBound(c => c.ForwardingProtocol) ? PSForwardingProtocol.MatchRequest : ForwardingProtocol, + QueryParameterStripDirective = !this.IsParameterBound(c => c.QueryParameterStripDirective) ? PSQueryParameterStripDirective.StripAll : QueryParameterStripDirective, + DynamicCompression = !this.IsParameterBound(c => c.DynamicCompression) ? PSEnabledState.Enabled : DynamicCompression, + BackendPoolId = BackendPoolId, + EnableCaching = !this.IsParameterBound(c => c.EnableCaching) ? false : EnableCaching + }; + } + else if (ParameterSetName == FieldsWithRedirectParameterSet) + { + RoutingRule.RouteConfiguration = new PSRedirectConfiguration + { + RedirectProtocol = !this.IsParameterBound(c => c.RedirectProtocol) ? PSRedirectProtocol.MatchRequest : RedirectProtocol, + RedirectType = !this.IsParameterBound(c => c.RedirectType) ? PSRedirectType.Moved : RedirectType, + CustomHost = !this.IsParameterBound(c => c.CustomHost) ? "" : CustomHost, + CustomFragment = CustomFragment, + CustomPath = !this.IsParameterBound(c => c.CustomPath) ? "" : CustomPath, + CustomQueryString = CustomQueryString + }; + + } WriteObject(RoutingRule); } - + } -} +} \ No newline at end of file diff --git a/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorRuleGroupOverrideObject.cs b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorRuleGroupOverrideObject.cs index c25be1e94038..b6d93a91c1ab 100644 --- a/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorRuleGroupOverrideObject.cs +++ b/src/FrontDoor/FrontDoor/Cmdlets/NewAzureRmFrontDoorRuleGroupOverrideObject.cs @@ -12,15 +12,10 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; -using System.Collections; +using System.Linq; using System.Management.Automation; -using System.Net; using Microsoft.Azure.Commands.FrontDoor.Common; using Microsoft.Azure.Commands.FrontDoor.Models; -using Microsoft.Azure.Management.FrontDoor; -using System.Linq; -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { @@ -31,23 +26,23 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets public class NewAzureRmFrontDoorRuleGroupOverrideObject : AzureFrontDoorCmdletBase { /// - /// Describes overrideruleGroup. Possible values include: 'SqlInjection', 'XSS' + /// Rule Group Name /// - [Parameter(Mandatory = true, HelpMessage = "Describes overrideruleGroup. Possible values include: 'SqlInjection', 'XSS'")] - public PSRuleGroupOverride Override { get; set; } + [Parameter(Mandatory = true, HelpMessage = "Rule Group Name for which these overrides apply")] + public string RuleGroupName { get; set; } /// - /// Type of Actions. Possible values include: 'Allow', 'Block', 'Log' + /// Rule override list /// - [Parameter(Mandatory = true, HelpMessage = "Type of Actions. Possible values include: 'Allow', 'Block', 'Log'")] - public PSAction Action { get; set; } + [Parameter(Mandatory = false, HelpMessage = "Rule override list")] + public PSAzureManagedRuleOverride[] ManagedRuleOverride { get; set; } public override void ExecuteCmdlet() { var ruleGroupOverride = new PSAzureRuleGroupOverride { - RuleGroupOverride = Override, - Action = Action + ManagedRuleOverrides = ManagedRuleOverride?.ToList(), + RuleGroupName = RuleGroupName }; WriteObject(ruleGroupOverride); } diff --git a/src/FrontDoor/FrontDoor/Cmdlets/SetAzureRmFrontDoor.cs b/src/FrontDoor/FrontDoor/Cmdlets/SetAzureRmFrontDoor.cs index 988668624c24..0e923912a41b 100644 --- a/src/FrontDoor/FrontDoor/Cmdlets/SetAzureRmFrontDoor.cs +++ b/src/FrontDoor/FrontDoor/Cmdlets/SetAzureRmFrontDoor.cs @@ -106,6 +106,12 @@ public class SetAzureRmFrontDoor : AzureFrontDoorCmdletBase [Parameter(Mandatory = false, HelpMessage = "Operational status of the Front Door load balancer. Default value is Enabled")] public PSEnabledState EnabledState { get; set; } + /// + /// Whether to enforce certificate name check on HTTPS requests to all backend pools. No effect on non-HTTPS requests. + /// + [Parameter(Mandatory = false, HelpMessage = "Whether to disable certificate name check on HTTPS requests to all backend pools. No effect on non-HTTPS requests.")] + public SwitchParameter DisableCertificateNameCheck { get; set; } + public override void ExecuteCmdlet() { if (ParameterSetName == ObjectParameterSet) @@ -180,6 +186,11 @@ public override void ExecuteCmdlet() updateParameters.EnabledState = EnabledState; } + if (this.IsParameterBound(c => c.DisableCertificateNameCheck)) + { + updateParameters.EnforceCertificateNameCheck = DisableCertificateNameCheck ? PSEnforceCertificateNameCheck.Disabled : PSEnforceCertificateNameCheck.Enabled; + } + updateParameters.ValidateFrontDoor(ResourceGroupName, this.DefaultContext.Subscription.Id); if (ShouldProcess(Resources.FrontDoorTarget, string.Format(Resources.FrontDoorChangeWarning, Name))) { diff --git a/src/FrontDoor/FrontDoor/Cmdlets/SetAzureRmFrontDoorFIreWallPolicy.cs b/src/FrontDoor/FrontDoor/Cmdlets/UpdateAzureRmFrontDoorFireWallPolicy.cs similarity index 77% rename from src/FrontDoor/FrontDoor/Cmdlets/SetAzureRmFrontDoorFIreWallPolicy.cs rename to src/FrontDoor/FrontDoor/Cmdlets/UpdateAzureRmFrontDoorFireWallPolicy.cs index f89ee144f10b..9f84505b7cbc 100644 --- a/src/FrontDoor/FrontDoor/Cmdlets/SetAzureRmFrontDoorFIreWallPolicy.cs +++ b/src/FrontDoor/FrontDoor/Cmdlets/UpdateAzureRmFrontDoorFireWallPolicy.cs @@ -13,27 +13,24 @@ // ---------------------------------------------------------------------------------- using System; -using System.Collections; +using System.Linq; using System.Management.Automation; -using System.Net; +using System.Text; using Microsoft.Azure.Commands.FrontDoor.Common; using Microsoft.Azure.Commands.FrontDoor.Helpers; using Microsoft.Azure.Commands.FrontDoor.Models; using Microsoft.Azure.Commands.FrontDoor.Properties; using Microsoft.Azure.Management.FrontDoor; -using Microsoft.WindowsAzure.Commands.Utilities.Common; -using System.Linq; -using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Commands.ResourceManager; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; -using SdkPolicy = Microsoft.Azure.Management.FrontDoor.Models.WebApplicationFirewallPolicy1; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using SdkPolicy = Microsoft.Azure.Management.FrontDoor.Models.WebApplicationFirewallPolicy; namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the Set-AzFrontDoorFireWallPolicy cmdlet. + /// Defines the Update-AzFrontDoorFireWallPolicy cmdlet. /// - [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorFireWallPolicy", SupportsShouldProcess = true, DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSPolicy))] - public class SetAzureRmFrontDoorFireWallPolicy : AzureFrontDoorCmdletBase + [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorFireWallPolicy", SupportsShouldProcess = true, DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSPolicy))] + public class UpdateAzureRmFrontDoorFireWallPolicy : AzureFrontDoorCmdletBase { /// /// The resource group to which the FireWallPolicy belongs. @@ -87,7 +84,23 @@ public class SetAzureRmFrontDoorFireWallPolicy : AzureFrontDoorCmdletBase [Parameter(Mandatory = false, HelpMessage = "Managed rules inside the policy")] public PSManagedRule[] ManagedRule { get; set; } + /// + /// Redirect URL used for redirect actions + /// + [Parameter(Mandatory = false, HelpMessage = "Redirect URL")] + public string RedirectUrl { get; set; } + /// + /// Custom block response code used for block actions + /// + [Parameter(Mandatory = false, HelpMessage = "Custom Response Status Code")] + public int? CustomBlockResponseStatusCode { get; set; } + + /// + /// Custom block response body used for block actions + /// + [Parameter(Mandatory = false, HelpMessage = "Custom Response Body")] + public string CustomBlockResponseBody { get; set; } public override void ExecuteCmdlet() { @@ -101,7 +114,7 @@ public override void ExecuteCmdlet() { ResourceIdentifier identifier = new ResourceIdentifier(ResourceId); ResourceGroupName = identifier.ResourceGroupName; - Name = InputObject.Name; + Name = identifier.ResourceName; } @@ -139,7 +152,7 @@ public override void ExecuteCmdlet() if (this.IsParameterBound(c => c.Customrule)) { - updateParameters.CustomRules = new Management.FrontDoor.Models.CustomRules + updateParameters.CustomRules = new Management.FrontDoor.Models.CustomRuleList() { Rules = Customrule.ToList().Select(x => x.ToSdkCustomRule()).ToList() }; @@ -147,11 +160,27 @@ public override void ExecuteCmdlet() if (this.IsParameterBound(c => c.ManagedRule)) { - updateParameters.ManagedRules = new Management.FrontDoor.Models.ManagedRuleSets + updateParameters.ManagedRules = new Management.FrontDoor.Models.ManagedRuleSetList() { - RuleSets = ManagedRule.ToList().Select(x => x.ToSdkAzManagedRule()).ToList() + ManagedRuleSets = ManagedRule.ToList().Select(x => x.ToSdkAzManagedRule()).ToList() }; } + + if (this.IsParameterBound(c => c.CustomBlockResponseBody)) + { + updateParameters.PolicySettings.CustomBlockResponseBody = CustomBlockResponseBody == null ? CustomBlockResponseBody : Convert.ToBase64String(Encoding.UTF8.GetBytes(CustomBlockResponseBody)); + } + + if (this.IsParameterBound(c => c.CustomBlockResponseStatusCode)) + { + updateParameters.PolicySettings.CustomBlockResponseStatusCode = CustomBlockResponseStatusCode; + } + + if (this.IsParameterBound(c => c.RedirectUrl)) + { + updateParameters.PolicySettings.RedirectUrl = RedirectUrl; + } + if (ShouldProcess(Resources.WebApplicationFirewallPolicyTarget, string.Format(Resources.WebApplicationFirewallPolicyChangeWarning, Name))) { try diff --git a/src/FrontDoor/FrontDoor/Common/AzureFrontDoorCmdletBase.cs b/src/FrontDoor/FrontDoor/Common/AzureFrontDoorCmdletBase.cs index e628c575bb3a..796347427eae 100644 --- a/src/FrontDoor/FrontDoor/Common/AzureFrontDoorCmdletBase.cs +++ b/src/FrontDoor/FrontDoor/Common/AzureFrontDoorCmdletBase.cs @@ -37,6 +37,8 @@ public class AzureFrontDoorCmdletBase : AzureRMCmdlet public const string FieldsWithVaultParameterSet = "ByFieldsWithVaultParameterSet"; public const string ResourceIdWithVaultParameterSet = "ByResourceIdWithVaultParameterSet"; public const string ObjectWithVaultParameterSet = "ByObjectWithVaultParameterSet"; + public const string FieldsWithForwardingParameterSet = "ByFieldsWithForwardingParameterSet"; + public const string FieldsWithRedirectParameterSet = "ByFieldsWithRedirectParameterSet"; /// /// Gets or sets the Front Door management client. diff --git a/src/FrontDoor/FrontDoor/FrontDoor.csproj b/src/FrontDoor/FrontDoor/FrontDoor.csproj index edf377c08db9..a5c2778842de 100644 --- a/src/FrontDoor/FrontDoor/FrontDoor.csproj +++ b/src/FrontDoor/FrontDoor/FrontDoor.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/FrontDoor/FrontDoor/Helpers/ModelExtensions.cs b/src/FrontDoor/FrontDoor/Helpers/ModelExtensions.cs index 285da151720c..e8c2402974db 100644 --- a/src/FrontDoor/FrontDoor/Helpers/ModelExtensions.cs +++ b/src/FrontDoor/FrontDoor/Helpers/ModelExtensions.cs @@ -15,34 +15,38 @@ using System; using System.Collections; using System.Collections.Generic; -using System.Diagnostics; using System.Linq; -using System.Security.Permissions; +using System.Management.Automation; +using System.Text; using Microsoft.Azure.Commands.FrontDoor.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; + +using sdkAzManagedRuleGroupOverride = Microsoft.Azure.Management.FrontDoor.Models.ManagedRuleGroupOverride; +using sdkAzManagedRuleOverride = Microsoft.Azure.Management.FrontDoor.Models.ManagedRuleOverride; using SdkFrontDoor = Microsoft.Azure.Management.FrontDoor.Models.FrontDoorModel; using SdkRoutingRule = Microsoft.Azure.Management.FrontDoor.Models.RoutingRule; -using SdkBackendPool = Microsoft.Azure.Management.FrontDoor.Models.BackendPool; using SdkBackend = Microsoft.Azure.Management.FrontDoor.Models.Backend; using SdkHealthProbeSetting = Microsoft.Azure.Management.FrontDoor.Models.HealthProbeSettingsModel; using SdkLoadBalancingSetting = Microsoft.Azure.Management.FrontDoor.Models.LoadBalancingSettingsModel; using SdkFrontendEndpoint = Microsoft.Azure.Management.FrontDoor.Models.FrontendEndpoint; -using SdkFirewallPolicy = Microsoft.Azure.Management.FrontDoor.Models.WebApplicationFirewallPolicy1; +using SdkRouteConfiguration = Microsoft.Azure.Management.FrontDoor.Models.RouteConfiguration; +using SdkForwardingConfiguration = Microsoft.Azure.Management.FrontDoor.Models.ForwardingConfiguration; +using SdkRedirectConfiguration = Microsoft.Azure.Management.FrontDoor.Models.RedirectConfiguration; using SdkResourceState = Microsoft.Azure.Management.FrontDoor.Models.FrontDoorResourceState; +using SdkBackendPool = Microsoft.Azure.Management.FrontDoor.Models.BackendPool; +using SdkBackendPoolsSettings = Microsoft.Azure.Management.FrontDoor.Models.BackendPoolsSettings; using SdkCacheConfiguration = Microsoft.Azure.Management.FrontDoor.Models.CacheConfiguration; -using SdkRefId = Microsoft.Azure.Management.FrontDoor.Models.SubResource; +using SdkCustomRule = Microsoft.Azure.Management.FrontDoor.Models.CustomRule; +using SdkCustomRuleList = Microsoft.Azure.Management.FrontDoor.Models.CustomRuleList; +using SdkFirewallPolicy = Microsoft.Azure.Management.FrontDoor.Models.WebApplicationFirewallPolicy; using SdkFWPolicyLink = Microsoft.Azure.Management.FrontDoor.Models.FrontendEndpointUpdateParametersWebApplicationFirewallPolicyLink; using SdkHttpsConfig = Microsoft.Azure.Management.FrontDoor.Models.CustomHttpsConfiguration; -using SdkValut = Microsoft.Azure.Management.FrontDoor.Models.KeyVaultCertificateSourceParametersVault; -using SdkCustomRule = Microsoft.Azure.Management.FrontDoor.Models.CustomRule; -using SdkCustomRules = Microsoft.Azure.Management.FrontDoor.Models.CustomRules; using SdkManagedRule = Microsoft.Azure.Management.FrontDoor.Models.ManagedRuleSet; -using SdkManagedRules = Microsoft.Azure.Management.FrontDoor.Models.ManagedRuleSets; -using SdkAzureManagedRule = Microsoft.Azure.Management.FrontDoor.Models.AzureManagedRuleSet; -using sdkAzRuleGroupOverride = Microsoft.Azure.Management.FrontDoor.Models.AzureManagedOverrideRuleGroup; -using sdkMatchCondition = Microsoft.Azure.Management.FrontDoor.Models.MatchCondition1; +using SdkManagedRuleList = Microsoft.Azure.Management.FrontDoor.Models.ManagedRuleSetList; +using sdkMatchCondition = Microsoft.Azure.Management.FrontDoor.Models.MatchCondition; using sdkPolicySetting = Microsoft.Azure.Management.FrontDoor.Models.PolicySettings; -using System.Management.Automation; +using SdkRefId = Microsoft.Azure.Management.FrontDoor.Models.SubResource; +using SdkValut = Microsoft.Azure.Management.FrontDoor.Models.KeyVaultCertificateSourceParametersVault; namespace Microsoft.Azure.Commands.FrontDoor.Helpers { @@ -65,7 +69,8 @@ public static SdkFrontDoor ToSdkFrontDoor(this PSFrontDoor psFrontDoor) healthProbeSettings: psFrontDoor.HealthProbeSettings?.Select(x => x.ToSdkHealthProbeSetting()).ToList(), backendPools: psFrontDoor.BackendPools?.Select(x => x.ToSdkBackendPool()).ToList(), frontendEndpoints: psFrontDoor.FrontendEndpoints?.Select(x => x.ToSdkFrontendEndpoints()).ToList(), - enabledState: psFrontDoor.EnabledState.ToString() + enabledState: psFrontDoor.EnabledState.ToString(), + backendPoolsSettings: new SdkBackendPoolsSettings(psFrontDoor.EnforceCertificateNameCheck?.ToString()) ); } public static PSFrontDoor ToPSFrontDoor(this SdkFrontDoor sdkFrontDoor) @@ -85,8 +90,72 @@ public static PSFrontDoor ToPSFrontDoor(this SdkFrontDoor sdkFrontDoor) EnabledState = sdkFrontDoor.EnabledState == null ? (PSEnabledState?)null : (PSEnabledState)Enum.Parse(typeof(PSEnabledState), sdkFrontDoor.EnabledState), ResourceState = sdkFrontDoor.ResourceState, ProvisioningState = sdkFrontDoor.ProvisioningState, + EnforceCertificateNameCheck = (PSEnforceCertificateNameCheck)Enum.Parse(typeof(PSEnforceCertificateNameCheck), sdkFrontDoor.BackendPoolsSettings.EnforceCertificateNameCheck) }; } + + private static PSRouteConfiguration ToPSRouteConfiguration(this SdkRouteConfiguration sdkRouteConfiguration) + { + if (sdkRouteConfiguration is SdkForwardingConfiguration) + { + var SDKForwardingConfiguration = sdkRouteConfiguration as SdkForwardingConfiguration; + return new PSForwardingConfiguration + { + CustomForwardingPath = SDKForwardingConfiguration.CustomForwardingPath, + ForwardingProtocol = SDKForwardingConfiguration.ForwardingProtocol == null ? (PSForwardingProtocol?)null : (PSForwardingProtocol)Enum.Parse(typeof(PSForwardingProtocol), SDKForwardingConfiguration.ForwardingProtocol), + BackendPoolId = SDKForwardingConfiguration.BackendPool?.Id, + EnableCaching = SDKForwardingConfiguration.CacheConfiguration != null, + QueryParameterStripDirective = SDKForwardingConfiguration.CacheConfiguration == null ? (PSQueryParameterStripDirective?)null : (PSQueryParameterStripDirective)Enum.Parse(typeof(PSQueryParameterStripDirective), SDKForwardingConfiguration.CacheConfiguration.QueryParameterStripDirective), + DynamicCompression = SDKForwardingConfiguration.CacheConfiguration == null ? (PSEnabledState?)null : (PSEnabledState)Enum.Parse(typeof(PSEnabledState), SDKForwardingConfiguration.CacheConfiguration.DynamicCompression) + }; + } + else if (sdkRouteConfiguration is SdkRedirectConfiguration) + { + var SDKRedirectConfiguration = sdkRouteConfiguration as SdkRedirectConfiguration; + return new PSRedirectConfiguration + { + RedirectType = SDKRedirectConfiguration.RedirectType == null ? (PSRedirectType?)null : (PSRedirectType)Enum.Parse(typeof(PSRedirectType), SDKRedirectConfiguration.RedirectType), + RedirectProtocol = SDKRedirectConfiguration.RedirectProtocol == null ? (PSRedirectProtocol?)null : (PSRedirectProtocol)Enum.Parse(typeof(PSRedirectProtocol), SDKRedirectConfiguration.RedirectProtocol), + CustomHost = SDKRedirectConfiguration.CustomHost, + CustomPath = SDKRedirectConfiguration.CustomPath, + CustomFragment = SDKRedirectConfiguration.CustomFragment, + CustomQueryString = SDKRedirectConfiguration.CustomQueryString + }; + } + + return null; + } + + private static SdkRouteConfiguration ToSdkRouteConfiguration(this PSRouteConfiguration psRoutingConfiguration) + { + if (psRoutingConfiguration is PSForwardingConfiguration) + { + var psForwardingConfiguration = psRoutingConfiguration as PSForwardingConfiguration; + return new SdkForwardingConfiguration + { + CustomForwardingPath = psForwardingConfiguration.CustomForwardingPath, + ForwardingProtocol = psForwardingConfiguration.ForwardingProtocol?.ToString(), + BackendPool = new SdkRefId(psForwardingConfiguration.BackendPoolId), + CacheConfiguration = psForwardingConfiguration.EnableCaching ? new SdkCacheConfiguration(psForwardingConfiguration.QueryParameterStripDirective.ToString(), psForwardingConfiguration.DynamicCompression.ToString()) : null + }; + } + else if (psRoutingConfiguration is PSRedirectConfiguration) + { + var psRedirectConfiguration = psRoutingConfiguration as PSRedirectConfiguration; + return new SdkRedirectConfiguration + { + RedirectType = psRedirectConfiguration.RedirectType?.ToString(), + RedirectProtocol = psRedirectConfiguration.RedirectProtocol?.ToString(), + CustomHost = psRedirectConfiguration.CustomHost, + CustomPath = psRedirectConfiguration.CustomPath, + CustomFragment = psRedirectConfiguration.CustomFragment, + CustomQueryString = psRedirectConfiguration.CustomQueryString + }; + } + + return null; + } + public static PSRoutingRule ToPSRoutingRule(this SdkRoutingRule sdkRoutingRule) { return new PSRoutingRule @@ -96,11 +165,7 @@ public static PSRoutingRule ToPSRoutingRule(this SdkRoutingRule sdkRoutingRule) AcceptedProtocols = sdkRoutingRule.AcceptedProtocols?.Select(x => (PSProtocol)Enum.Parse(typeof(PSProtocol), x)).ToList(), PatternsToMatch = sdkRoutingRule.PatternsToMatch?.ToList(), FrontendEndpointIds = sdkRoutingRule.FrontendEndpoints?.Select(x => x.Id).ToList(), - ForwardingProtocol = sdkRoutingRule.ForwardingProtocol == null ? (PSForwardingProtocol?)null : (PSForwardingProtocol)Enum.Parse(typeof(PSForwardingProtocol), sdkRoutingRule.ForwardingProtocol), - BackendPoolId = sdkRoutingRule.BackendPool?.Id, - EnableCaching = sdkRoutingRule.CacheConfiguration != null, - QueryParameterStripDirective = sdkRoutingRule.CacheConfiguration == null ? (PSQueryParameterStripDirective?)null : (PSQueryParameterStripDirective)Enum.Parse(typeof(PSQueryParameterStripDirective), sdkRoutingRule.CacheConfiguration.QueryParameterStripDirective), - DynamicCompression = sdkRoutingRule.CacheConfiguration == null ? (PSEnabledState?)null : (PSEnabledState)Enum.Parse(typeof(PSEnabledState), sdkRoutingRule.CacheConfiguration.DynamicCompression), + RouteConfiguration = ToPSRouteConfiguration(sdkRoutingRule.RouteConfiguration), EnabledState = sdkRoutingRule.EnabledState == null ? (PSEnabledState?)null : (PSEnabledState)Enum.Parse(typeof(PSEnabledState), sdkRoutingRule.EnabledState) }; } @@ -111,10 +176,7 @@ public static SdkRoutingRule ToSdkRoutingRule(this PSRoutingRule psRoutingRule) frontendEndpoints: psRoutingRule.FrontendEndpointIds?.Select(x => new SdkRefId(x)).ToList(), acceptedProtocols: psRoutingRule.AcceptedProtocols?.Select(x => x.ToString()).ToList(), patternsToMatch: psRoutingRule.PatternsToMatch, - customForwardingPath: psRoutingRule.CustomForwardingPath, - forwardingProtocol: psRoutingRule.ForwardingProtocol.ToString(), - cacheConfiguration: psRoutingRule.EnableCaching? new SdkCacheConfiguration(psRoutingRule.QueryParameterStripDirective.ToString(), psRoutingRule.DynamicCompression.ToString()) : null, - backendPool: new SdkRefId(psRoutingRule.BackendPoolId), + routeConfiguration: ToSdkRouteConfiguration(psRoutingRule.RouteConfiguration), name: psRoutingRule.Name, enabledState: psRoutingRule.EnabledState.ToString() ); @@ -273,32 +335,37 @@ public static PSCustomRule ToPSCustomRule(this SdkCustomRule sdkRule) RateLimitThreshold = sdkRule.RateLimitThreshold, Name = sdkRule.Name, Action = sdkRule.Action == null ? (PSAction?)null : (PSAction)Enum.Parse(typeof(PSAction), sdkRule.Action), - Etag = sdkRule.Etag, RuleType = sdkRule.RuleType == null ? (PSCustomRuleType?)null : (PSCustomRuleType)Enum.Parse(typeof(PSCustomRuleType), sdkRule.RuleType), Priority = sdkRule.Priority, - Transforms = sdkRule.Transforms?.ToList(), MatchConditions = sdkRule.MatchConditions?.Select(x => x.ToPSMatchCondition()).ToList() }; } - public static PSAzureRuleGroupOverride ToPSAzRuleGroupOverride(this sdkAzRuleGroupOverride sdkAzOverride) + public static PSAzureRuleGroupOverride ToPSAzRuleGroupOverride(this sdkAzManagedRuleGroupOverride sdkAzOverride) { - return new PSAzureRuleGroupOverride + return new PSAzureRuleGroupOverride() { - RuleGroupOverride = (PSRuleGroupOverride)Enum.Parse(typeof(PSRuleGroupOverride), sdkAzOverride.RuleGroupOverride), - Action = (PSAction)Enum.Parse(typeof(PSAction), sdkAzOverride.Action), + RuleGroupName = sdkAzOverride.RuleGroupName, + ManagedRuleOverrides = sdkAzOverride.Rules?.Select(ruleOverride => + { + return new PSAzureManagedRuleOverride() + { + Action = ruleOverride.Action == null ? (PSAction?)null : (PSAction)Enum.Parse(typeof(PSAction), ruleOverride.Action), + EnabledState = ruleOverride.EnabledState == null ? (PSEnabledState?)null : (PSEnabledState)Enum.Parse(typeof(PSEnabledState), ruleOverride.EnabledState), + RuleId = ruleOverride.RuleId + }; + }).ToList() }; } public static PSManagedRule ToPSManagedRule(this SdkManagedRule sdkRule) { - sdkRule.GetType().ToString(); - var sdkAzRule = (SdkAzureManagedRule)sdkRule; return new PSAzureManagedRule { - Priority = sdkAzRule.Priority, - RuleGroupOverrides = sdkAzRule.RuleGroupOverrides?.Select(x => x.ToPSAzRuleGroupOverride()).ToList() + RuleSetType = sdkRule.RuleSetType, + RuleSetVersion = sdkRule.RuleSetVersion, + RuleGroupOverrides = sdkRule.RuleGroupOverrides?.Select(ruleGroupOverride => ruleGroupOverride.ToPSAzRuleGroupOverride()).ToList() }; } @@ -312,9 +379,12 @@ public static PSPolicy ToPSPolicy(this SdkFirewallPolicy sdkPolicy) PolicyEnabledState = sdkPolicy.PolicySettings == null ? (PSEnabledState?)null : (PSEnabledState)Enum.Parse(typeof(PSEnabledState), sdkPolicy.PolicySettings.EnabledState), PolicyMode = sdkPolicy.PolicySettings == null ? (PSMode?)null : (PSMode)Enum.Parse(typeof(PSMode), sdkPolicy.PolicySettings.Mode), CustomRules = sdkPolicy.CustomRules?.Rules?.Select(x => x.ToPSCustomRule()).ToList(), - ManagedRules = sdkPolicy.ManagedRules?.RuleSets?.Select(x => x.ToPSManagedRule()).ToList(), + ManagedRules = sdkPolicy.ManagedRules?.ManagedRuleSets?.Select(x => x.ToPSManagedRule()).ToList(), Etag = sdkPolicy.Etag, - ProvisioningState = sdkPolicy.ProvisioningState + ProvisioningState = sdkPolicy.ProvisioningState, + CustomBlockResponseBody = sdkPolicy.PolicySettings?.CustomBlockResponseBody == null ? null : Encoding.UTF8.GetString(Convert.FromBase64String(sdkPolicy.PolicySettings?.CustomBlockResponseBody)), + CustomBlockResponseStatusCode = (ushort?)sdkPolicy.PolicySettings?.CustomBlockResponseStatusCode, + RedirectUrl = sdkPolicy.PolicySettings?.RedirectUrl }; } @@ -330,21 +400,30 @@ public static PSMatchCondition ToPSMatchCondition(this sdkMatchCondition sdkMatc }; } - public static sdkAzRuleGroupOverride ToSdkAzRuleGroupOverride(this PSAzureRuleGroupOverride psAzOverride) + public static sdkAzManagedRuleGroupOverride ToSdkAzRuleGroupOverride(this PSAzureRuleGroupOverride psAzOverride) { - return new sdkAzRuleGroupOverride + return new sdkAzManagedRuleGroupOverride() { - RuleGroupOverride = psAzOverride.RuleGroupOverride.ToString(), - Action = psAzOverride.Action.ToString() + RuleGroupName = psAzOverride.RuleGroupName, + Rules = psAzOverride.ManagedRuleOverrides?.Select(ruleOverride => + { + return new sdkAzManagedRuleOverride() + { + Action = ruleOverride.Action.HasValue ? ruleOverride.Action.Value.ToString() : null, + EnabledState = ruleOverride.EnabledState.HasValue ? ruleOverride.EnabledState.Value.ToString() : null, + RuleId = ruleOverride.RuleId.ToString() + }; + }).ToList() }; } public static SdkManagedRule ToSdkAzManagedRule(this PSManagedRule psRule) { var psAzRule = (PSAzureManagedRule)psRule; - return new SdkAzureManagedRule + return new SdkManagedRule { - Priority = psAzRule.Priority, + RuleSetType = psAzRule.RuleSetType, + RuleSetVersion = psAzRule.RuleSetVersion, RuleGroupOverrides = psAzRule.RuleGroupOverrides?.Select(x => x.ToSdkAzRuleGroupOverride()).ToList() }; } @@ -371,8 +450,7 @@ public static SdkCustomRule ToSdkCustomRule(this PSCustomRule psRule) Action = psRule.Action.ToString(), MatchConditions = psRule.MatchConditions?.Select(x => x.ToSdkMatchCondition()).ToList(), Priority = psRule.Priority, - RuleType = psRule.RuleType.ToString(), - Transforms = psRule.Transforms + RuleType = psRule.RuleType.ToString() }; } @@ -381,18 +459,19 @@ public static SdkFirewallPolicy ToSdkFirewallPolicy(this PSPolicy psPolicy) return new SdkFirewallPolicy { Location = "global", - PolicySettings = new sdkPolicySetting + PolicySettings = new sdkPolicySetting() { EnabledState = psPolicy.PolicyEnabledState.ToString(), Mode = psPolicy.PolicyMode.ToString() }, - CustomRules = new SdkCustomRules { - Rules = psPolicy.CustomRules?.Select(x => x.ToSdkCustomRule()).ToList() - }, - ManagedRules = new SdkManagedRules + CustomRules = new SdkCustomRuleList() { - RuleSets = psPolicy.ManagedRules?.Select(x => x.ToSdkAzManagedRule()).ToList() + Rules = psPolicy.CustomRules?.Select(x => x.ToSdkCustomRule()).ToList() }, + ManagedRules = new SdkManagedRuleList() + { + ManagedRuleSets = psPolicy.ManagedRules?.Select(x => x.ToSdkAzManagedRule()).ToList() + } }; } @@ -506,14 +585,17 @@ public static void ValidateFrontDoor(this PSFrontDoor frontDoor, string resource } } - if (backendPoolIds.FirstOrDefault(x => x.Equals(routingRule.BackendPoolId.ToLower())) == null) + if (routingRule.RouteConfiguration is PSForwardingConfiguration) { - throw new PSArgumentException(string.Format( - "Invalid BackendPollId {0} in {1}. Target doesn't exist", - routingRule.BackendPoolId, routingRule.Name - )); + var forwardingConfiguration = routingRule.RouteConfiguration as PSForwardingConfiguration; + if (backendPoolIds.FirstOrDefault(x => x.Equals(forwardingConfiguration.BackendPoolId.ToLower())) == null) + { + throw new PSArgumentException(string.Format( + "Invalid BackendPollId {0} in {1}. Target doesn't exist", + forwardingConfiguration.BackendPoolId, routingRule.Name + )); + } } - } foreach (var backendPool in frontDoor.BackendPools) diff --git a/src/FrontDoor/FrontDoor/Models/PSAction.cs b/src/FrontDoor/FrontDoor/Models/PSAction.cs index c5bf5c03320a..eb664b095135 100644 --- a/src/FrontDoor/FrontDoor/Models/PSAction.cs +++ b/src/FrontDoor/FrontDoor/Models/PSAction.cs @@ -18,6 +18,7 @@ public enum PSAction { Allow, Block, - Log + Log, + Redirect } } diff --git a/src/FrontDoor/FrontDoor/Models/PSAzureManagedRule.cs b/src/FrontDoor/FrontDoor/Models/PSAzureManagedRule.cs index 4121eca7a36b..b62f3bd8e44a 100644 --- a/src/FrontDoor/FrontDoor/Models/PSAzureManagedRule.cs +++ b/src/FrontDoor/FrontDoor/Models/PSAzureManagedRule.cs @@ -12,12 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System.Text.RegularExpressions; using System.Collections.Generic; namespace Microsoft.Azure.Commands.FrontDoor.Models -{ - public class PSAzureManagedRule: PSManagedRule +{ + public class PSAzureManagedRule : PSManagedRule { public List RuleGroupOverrides { get; set; } } diff --git a/src/FrontDoor/FrontDoor/Models/PSAzureManagedRuleOverride.cs b/src/FrontDoor/FrontDoor/Models/PSAzureManagedRuleOverride.cs new file mode 100644 index 000000000000..5fd8c37df7b2 --- /dev/null +++ b/src/FrontDoor/FrontDoor/Models/PSAzureManagedRuleOverride.cs @@ -0,0 +1,25 @@ +// ---------------------------------------------------------------------------------- +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.FrontDoor.Models +{ + public class PSAzureManagedRuleOverride + { + public string RuleId { get; set; } + + public PSEnabledState? EnabledState { get; set; } + + public PSAction? Action { get; set; } + } +} \ No newline at end of file diff --git a/src/FrontDoor/FrontDoor/Models/PSAzureRuleGroupOverride.cs b/src/FrontDoor/FrontDoor/Models/PSAzureRuleGroupOverride.cs index d51e97562437..3da5d59538ed 100644 --- a/src/FrontDoor/FrontDoor/Models/PSAzureRuleGroupOverride.cs +++ b/src/FrontDoor/FrontDoor/Models/PSAzureRuleGroupOverride.cs @@ -12,14 +12,14 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System.Text.RegularExpressions; +using System.Collections.Generic; namespace Microsoft.Azure.Commands.FrontDoor.Models -{ +{ public class PSAzureRuleGroupOverride { - public PSAction Action { get; set; } + public string RuleGroupName { get; set; } - public PSRuleGroupOverride RuleGroupOverride { get; set; } + public List ManagedRuleOverrides { get; set; } } } diff --git a/src/FrontDoor/FrontDoor/Models/PSCustomRule.cs b/src/FrontDoor/FrontDoor/Models/PSCustomRule.cs index 1701228cd5e0..b2ff94f5f4ba 100644 --- a/src/FrontDoor/FrontDoor/Models/PSCustomRule.cs +++ b/src/FrontDoor/FrontDoor/Models/PSCustomRule.cs @@ -12,11 +12,10 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System.Text.RegularExpressions; using System.Collections.Generic; namespace Microsoft.Azure.Commands.FrontDoor.Models -{ +{ public class PSCustomRule { public PSCustomRuleType? RuleType { get; set; } @@ -32,9 +31,5 @@ public class PSCustomRule public int? RateLimitThreshold { get; set; } public string Name { get; set; } - - public string Etag { get; set; } - - public List Transforms { get; set; } } } diff --git a/src/FrontDoor/FrontDoor/Models/PSRuleGroupOverride.cs b/src/FrontDoor/FrontDoor/Models/PSEnforceCertificateNameCheck.cs similarity index 88% rename from src/FrontDoor/FrontDoor/Models/PSRuleGroupOverride.cs rename to src/FrontDoor/FrontDoor/Models/PSEnforceCertificateNameCheck.cs index c007bb8f1111..84296eb6a2c4 100644 --- a/src/FrontDoor/FrontDoor/Models/PSRuleGroupOverride.cs +++ b/src/FrontDoor/FrontDoor/Models/PSEnforceCertificateNameCheck.cs @@ -12,13 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System.Text.RegularExpressions; - namespace Microsoft.Azure.Commands.FrontDoor.Models { - public enum PSRuleGroupOverride + public enum PSEnforceCertificateNameCheck { - SqlInjection, - XSS + Enabled, + Disabled } } diff --git a/src/FrontDoor/FrontDoor/Models/PSFrontDoor.cs b/src/FrontDoor/FrontDoor/Models/PSFrontDoor.cs index 13948a2ed3a2..d611ea11d74c 100644 --- a/src/FrontDoor/FrontDoor/Models/PSFrontDoor.cs +++ b/src/FrontDoor/FrontDoor/Models/PSFrontDoor.cs @@ -26,6 +26,8 @@ public class PSFrontDoor: PSTrackedResource public List BackendPools { get; set; } + public PSEnforceCertificateNameCheck? EnforceCertificateNameCheck { get; set; } + public List HealthProbeSettings { get; set; } public List LoadBalancingSettings { get; set; } diff --git a/src/FrontDoor/FrontDoor/Models/PSManagedRule.cs b/src/FrontDoor/FrontDoor/Models/PSManagedRule.cs index c993f9389e0e..8efd98d3a4a1 100644 --- a/src/FrontDoor/FrontDoor/Models/PSManagedRule.cs +++ b/src/FrontDoor/FrontDoor/Models/PSManagedRule.cs @@ -12,14 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System.Text.RegularExpressions; - namespace Microsoft.Azure.Commands.FrontDoor.Models -{ +{ public class PSManagedRule { - public int? Priority { get; set; } + public string RuleSetType { get; set; } - public string Version { get; set; } + public string RuleSetVersion { get; set; } } } diff --git a/src/FrontDoor/FrontDoor/Models/PSOperatorProperty.cs b/src/FrontDoor/FrontDoor/Models/PSOperatorProperty.cs index 5d23faa77a83..bc5784967008 100644 --- a/src/FrontDoor/FrontDoor/Models/PSOperatorProperty.cs +++ b/src/FrontDoor/FrontDoor/Models/PSOperatorProperty.cs @@ -16,16 +16,16 @@ namespace Microsoft.Azure.Commands.FrontDoor.Models { public enum PSOperatorProperty { - Any , - IPMatch , - GeoMatch , - Equal , - Contains , - LessThan , - GreaterThan , - LessThanOrEqual , - GreaterThanOrEqual , - BeginsWith , - EndsWith + Any, + IPMatch, + GeoMatch, + Equal, + Contains, + LessThan, + GreaterThan, + LessThanOrEqual, + GreaterThanOrEqual, + BeginsWith, + EndsWith } } diff --git a/src/FrontDoor/FrontDoor/Models/PSPolicy.cs b/src/FrontDoor/FrontDoor/Models/PSPolicy.cs index 8420a32a6e54..8c28822ad79b 100644 --- a/src/FrontDoor/FrontDoor/Models/PSPolicy.cs +++ b/src/FrontDoor/FrontDoor/Models/PSPolicy.cs @@ -12,9 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; using System.Collections.Generic; -using System.Text.RegularExpressions; namespace Microsoft.Azure.Commands.FrontDoor.Models { @@ -24,6 +22,12 @@ public class PSPolicy : PSTrackedResource public PSEnabledState? PolicyEnabledState { get; set; } + public string RedirectUrl { get; set; } + + public ushort? CustomBlockResponseStatusCode { get; set; } + + public string CustomBlockResponseBody { get; set; } + public List CustomRules { get; set; } public List ManagedRules { get; set; } diff --git a/src/FrontDoor/FrontDoor/Models/PSRedirectProtocol.cs b/src/FrontDoor/FrontDoor/Models/PSRedirectProtocol.cs new file mode 100644 index 000000000000..1b2c5b68e184 --- /dev/null +++ b/src/FrontDoor/FrontDoor/Models/PSRedirectProtocol.cs @@ -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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.FrontDoor.Models +{ + public enum PSRedirectProtocol + { + HttpOnly, + HttpsOnly, + MatchRequest + } +} \ No newline at end of file diff --git a/src/FrontDoor/FrontDoor/Models/PSRedirectType.cs b/src/FrontDoor/FrontDoor/Models/PSRedirectType.cs new file mode 100644 index 000000000000..21f5af6bb73e --- /dev/null +++ b/src/FrontDoor/FrontDoor/Models/PSRedirectType.cs @@ -0,0 +1,24 @@ + +// +// 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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.FrontDoor.Models +{ + public enum PSRedirectType + { + Moved, + Found, + TemporaryRedirect, + PermanentRedirect + } +} \ No newline at end of file diff --git a/src/FrontDoor/FrontDoor/Models/PSRoutingRule.cs b/src/FrontDoor/FrontDoor/Models/PSRoutingRule.cs index 819edd40c604..99f899133414 100644 --- a/src/FrontDoor/FrontDoor/Models/PSRoutingRule.cs +++ b/src/FrontDoor/FrontDoor/Models/PSRoutingRule.cs @@ -17,34 +17,59 @@ using System.Text.RegularExpressions; namespace Microsoft.Azure.Commands.FrontDoor.Models -{ - /// - /// Represents the properties of an Azure Front Door object. - /// - public class PSRoutingRule: PSResource +{ + public class PSRouteConfiguration { - public List FrontendEndpointIds { get; set; } - public List AcceptedProtocols { get; set; } + } - public List PatternsToMatch { get; set; } + public class PSForwardingConfiguration : PSRouteConfiguration + { + public string CustomForwardingPath { get; set; } public PSForwardingProtocol? ForwardingProtocol { get; set; } - public string CustomForwardingPath { get; set; } + public string BackendPoolId { get; set; } public PSQueryParameterStripDirective? QueryParameterStripDirective { get; set; } public PSEnabledState? DynamicCompression { get; set; } + public bool EnableCaching { get; set; } + } + + public class PSRedirectConfiguration : PSRouteConfiguration + { + public PSRedirectType? RedirectType { get; set; } + + public PSRedirectProtocol? RedirectProtocol { get; set; } + + public string CustomHost { get; set; } + + public string CustomPath { get; set; } + + public string CustomFragment { get; set; } + + public string CustomQueryString { get; set; } + } + + /// + /// Represents the properties of an Azure Front Door object. + /// + public class PSRoutingRule : PSResource + { + public List FrontendEndpointIds { get; set; } + + public List AcceptedProtocols { get; set; } + + public List PatternsToMatch { get; set; } + public List HealthProbeSettings { get; set; } - public string BackendPoolId { get; set; } - + public PSRouteConfiguration RouteConfiguration { get; set; } + public PSEnabledState? EnabledState { get; set; } public string ResourceState { get; set; } - - public bool EnableCaching { get; set; } } -} +} \ No newline at end of file diff --git a/src/FrontDoor/FrontDoor/Properties/AssemblyInfo.cs b/src/FrontDoor/FrontDoor/Properties/AssemblyInfo.cs index 4503156db8ab..9fa8b61e148a 100644 --- a/src/FrontDoor/FrontDoor/Properties/AssemblyInfo.cs +++ b/src/FrontDoor/FrontDoor/Properties/AssemblyInfo.cs @@ -25,5 +25,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("d90791a2-8102-47fc-2483-de25ae796eb1")] -[assembly: AssemblyVersion("0.7.2")] -[assembly: AssemblyFileVersion("0.7.2")] +[assembly: AssemblyVersion("0.7.3")] +[assembly: AssemblyFileVersion("0.7.3")] diff --git a/src/FrontDoor/FrontDoor/help/Az.FrontDoor.md b/src/FrontDoor/FrontDoor/help/Az.FrontDoor.md index 29cf95fedfa9..66d7f71573c1 100644 --- a/src/FrontDoor/FrontDoor/help/Az.FrontDoor.md +++ b/src/FrontDoor/FrontDoor/help/Az.FrontDoor.md @@ -53,6 +53,9 @@ Create a PSLoadBalancingSetting object for Front Door creation ### [New-AzFrontDoorManagedRuleObject](New-AzFrontDoorManagedRuleObject.md) Create ManagedRule Object for WAF policy creation +### [New-AzFrontDoorManagedRuleOverrideObject](New-AzFrontDoorManagedRuleOverrideObject.md) +Create managed rule override object + ### [New-AzFrontDoorMatchConditionObject](New-AzFrontDoorMatchConditionObject.md) Create MatchCondition Object for WAF policy creation @@ -74,6 +77,6 @@ Remove WAF policy ### [Set-AzFrontDoor](Set-AzFrontDoor.md) Update a Front Door load balancer -### [Set-AzFrontDoorFireWallPolicy](Set-AzFrontDoorFireWallPolicy.md) -update WAF policy +### [Update-AzFrontDoorFireWallPolicy](Update-AzFrontDoorFireWallPolicy.md) +Update WAF policy diff --git a/src/FrontDoor/FrontDoor/help/Disable-AzFrontDoorCustomDomainHttps.md b/src/FrontDoor/FrontDoor/help/Disable-AzFrontDoorCustomDomainHttps.md index 96811ea7848d..08a116b147b0 100644 --- a/src/FrontDoor/FrontDoor/help/Disable-AzFrontDoorCustomDomainHttps.md +++ b/src/FrontDoor/FrontDoor/help/Disable-AzFrontDoorCustomDomainHttps.md @@ -237,7 +237,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/Enable-AzFrontDoorCustomDomainHttps.md b/src/FrontDoor/FrontDoor/help/Enable-AzFrontDoorCustomDomainHttps.md index d315b0b812b5..08a9c4efe63b 100644 --- a/src/FrontDoor/FrontDoor/help/Enable-AzFrontDoorCustomDomainHttps.md +++ b/src/FrontDoor/FrontDoor/help/Enable-AzFrontDoorCustomDomainHttps.md @@ -331,7 +331,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/Get-AzFrontDoor.md b/src/FrontDoor/FrontDoor/help/Get-AzFrontDoor.md index d6e34b82edb1..2f75a9d0f1fb 100644 --- a/src/FrontDoor/FrontDoor/help/Get-AzFrontDoor.md +++ b/src/FrontDoor/FrontDoor/help/Get-AzFrontDoor.md @@ -171,7 +171,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/Get-AzFrontDoorFireWallPolicy.md b/src/FrontDoor/FrontDoor/help/Get-AzFrontDoorFireWallPolicy.md index 0753956b1b41..a9d66f89cd9b 100644 --- a/src/FrontDoor/FrontDoor/help/Get-AzFrontDoorFireWallPolicy.md +++ b/src/FrontDoor/FrontDoor/help/Get-AzFrontDoorFireWallPolicy.md @@ -22,55 +22,29 @@ The **Get-AzFrontDoorFireWallPolicy** cmdletGet gets WAF policy in a resource gr ## EXAMPLES -### Example 1: Get a WAF policy called $Name in $resourceGroup +### Example 1 ```powershell -PS C:\> Get-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroup - -PolicyMode : Prevention -PolicyEnabledState : Enabled -CustomRules : {Rule1} -ManagedRules : {Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule} -Etag : -ProvisioningState : Succeeded -Tags : -Id : /subscriptions/{subid}/resourcegroups/{resourceGroupName}/providers/Micr - osoft.Network/frontdoorwebapplicationfirewallpolicies/{Name} -Name : {Name} -Type : +PS C:\> Get-AzFrontDoorFireWallPolicy -Name $policyName -ResourceGroupName $resourceGroupName + +Name PolicyMode PolicyEnabledState CustomBlockResponseStatusCode RedirectUrl +---- ---------- ------------------ ----------------------------- ----------- +{policyName} Prevention Enabled 403 https://www.bing.com/ ``` -Get a WAF policy called $Name in $resourceGroup +Get a WAF policy called $policyName in $resourceGroupName -### Example 2: Get all WAF policy in $resourceGroup +### Example 2 ```powershell -PS C:\> Get-AzFrontDoorFireWallPolicy -ResourceGroupName $resourceGroup - -PolicyMode : Prevention -PolicyEnabledState : Enabled -CustomRules : {Rule1} -ManagedRules : {Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule} -Etag : -ProvisioningState : Succeeded -Tags : -Id : /subscriptions/{subid}/resourcegroups/{resourceGroupName}/providers/Micr - osoft.Network/frontdoorwebapplicationfirewallpolicies/{Name1} -Name : {Name1} -Type : - -PolicyMode : Prevention -PolicyEnabledState : Enabled -CustomRules : {Rule1} -ManagedRules : {Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule} -Etag : -ProvisioningState : Succeeded -Tags : -Id : /subscriptions/{subid}/resourcegroups/{resourceGroupName}/providers/Micr - osoft.Network/frontdoorwebapplicationfirewallpolicies/{Name2} -Name : {Name2} -Type : +PS C:\> Get-AzFrontDoorFireWallPolicy -ResourceGroupName $resourceGroupName + +Name PolicyMode PolicyEnabledState CustomBlockResponseStatusCode RedirectUrl +---- ---------- ------------------ ----------------------------- ----------- +{policyName} Prevention Disabled +{policyName} Detection Enabled 403 https://www.bing.com/ +{policyName} Detection Enabled 404 ``` -Get all WAF policy in $resourceGroup +Get all WAF policy in $resourceGroupName ## PARAMETERS @@ -120,7 +94,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/Get-AzFrontDoorFrontendEndpoint.md b/src/FrontDoor/FrontDoor/help/Get-AzFrontDoorFrontendEndpoint.md index 5320aef468af..a65e8d1b8bf0 100644 --- a/src/FrontDoor/FrontDoor/help/Get-AzFrontDoorFrontendEndpoint.md +++ b/src/FrontDoor/FrontDoor/help/Get-AzFrontDoorFrontendEndpoint.md @@ -201,7 +201,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoor.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoor.md index 1ca8986cc948..41133545efac 100644 --- a/src/FrontDoor/FrontDoor/help/New-AzFrontDoor.md +++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoor.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll-Help.xml Module Name: Az.FrontDoor -online version: The corresponding URL should be the following: https://docs.microsoft.com/en-us/powershell/module/az.frontdoor/new-azfrontdoor +online version: https://docs.microsoft.com/en-us/powershell/module/az.frontdoor/new-azfrontdoor schema: 2.0.0 --- @@ -16,8 +16,8 @@ Create a new Azure Front Door load balancer New-AzFrontDoor -ResourceGroupName -Name -RoutingRule -BackendPool -FrontendEndpoint -LoadBalancingSetting -HealthProbeSetting - [-Tag ] [-EnabledState ] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + [-Tag ] [-EnabledState ] [-DisableCertificateNameCheck] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -29,21 +29,21 @@ The **New-AzFrontDoor** cmdlet creates a new Azure Front Door load balancer in t ```powershell PS C:\> New-AzFrontDoor -Name "frontDoor1" -ResourceGroupName "rg1" -RoutingRule $routingrule1 -BackendPool $backendpool1 -FrontendEndpoint $frontendEndpoint1 -LoadBalancingSetting $loadBalancingSetting1 -HealthProbeSetting $healthProbeSetting1 -FriendlyName : frontdoor1 -RoutingRules : {routingrule1} -BackendPools : {backendpool1} -HealthProbeSettings : {healthProbeSetting1} -LoadBalancingSettings : {loadbalancingsetting1} -FrontendEndpoints : {frontendendpoint1} -EnabledState : Enabled -ResourceState : Enabled -ProvisioningState : Succeeded -Cname : -Tags : {tag1, tag2} -Id : /subscriptions/{guid}/resourcegroups/rg1/providers/M - icrosoft.Network/frontdoors/frontdoor1 -Name : frontdoor1 -Type : Microsoft.Network/frontdoor1 +FriendlyName : frontdoor1 +RoutingRules : {routingrule1} +BackendPools : {backendpool1} +EnforceCertificateNameCheck : Enabled +HealthProbeSettings : {healthProbeSetting1} +LoadBalancingSettings : {loadbalancingsetting1} +FrontendEndpoints : {frontendendpoint1} +EnabledState : Enabled +ResourceState : Enabled +ProvisioningState : Succeeded +Cname : +Tags : {tag1, tag2} +Id : /subscriptions/{guid}/resourcegroups/rg1/providers/Microsoft.Network/frontdoors/frontdoor1 +Name : frontdoor1 +Type : Microsoft.Network/frontdoors ``` Create a Front Door based on given parameters. @@ -80,6 +80,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -DisableCertificateNameCheck +Whether to disable certificate name check on HTTPS requests to all backend pools. No effect on non-HTTPS requests. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -EnabledState EnabledState of the Front Door load balancer. Default value is Enabled @@ -234,7 +249,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendObject.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendObject.md index 7483e607c19b..0fdb0c952639 100644 --- a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendObject.md +++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendObject.md @@ -173,7 +173,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendPoolObject.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendPoolObject.md index b4cb3f69823b..1f9219f7e5fc 100644 --- a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendPoolObject.md +++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorBackendPoolObject.md @@ -151,7 +151,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorCustomRuleObject.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorCustomRuleObject.md index affb51c7c257..fd6f91a9ebe1 100644 --- a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorCustomRuleObject.md +++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorCustomRuleObject.md @@ -15,8 +15,8 @@ Create CustomRule Object for WAF policy creation ``` New-AzFrontDoorCustomRuleObject -Name -RuleType -MatchCondition -Action -Priority - [-RateLimitDurationInMinutes ] [-RateLimitThreshold ] [-Transform ] - [-DefaultProfile ] [] + [-RateLimitDurationInMinutes ] [-RateLimitThreshold ] [-DefaultProfile ] + [] ``` ## DESCRIPTION @@ -28,15 +28,9 @@ Create CustomRule Object for WAF policy creation ```powershell PS C:\> New-AzFrontDoorCustomRuleObject -Name "Rule1" -RuleType MatchRule -MatchCondition $matchCondition1 -Action Block -Priority 2 -RuleType : MatchRule -Action : Block -MatchConditions : {Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition} -Priority : 2 -RateLimitDurationInMinutes : 1 -RateLimitThreshold : -Name : Rule1 -Etag : -Transforms : +Name RuleType Action Priority RateLimitDurationInMinutes +---- -------- ------ -------- -------------------------- +Rule1 MatchRule Block 2 1 ``` Create a CustomRule Object @@ -51,7 +45,7 @@ Possible values include: 'Allow', 'Block', 'Log' Type: Microsoft.Azure.Commands.FrontDoor.Models.PSAction Parameter Sets: (All) Aliases: -Accepted values: Allow, Block, Log +Accepted values: Allow, Block, Log, Redirect Required: True Position: Named @@ -167,23 +161,8 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Transform -List of transforms - -```yaml -Type: System.String[] -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorFireWallPolicy.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorFireWallPolicy.md index 34b4d7452b05..4d282ce42876 100644 --- a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorFireWallPolicy.md +++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorFireWallPolicy.md @@ -14,7 +14,8 @@ Create WAF policy ``` New-AzFrontDoorFireWallPolicy -ResourceGroupName -Name [-EnabledState ] - [-Mode ] [-Customrule ] [-ManagedRule ] + [-Mode ] [-Customrule ] [-ManagedRule ] [-RedirectUrl ] + [-CustomBlockResponseStatusCode ] [-CustomBlockResponseBody ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -25,27 +26,47 @@ The **New-AzFrontDoorFireWallPolicy** cmdlet creates a new Azure WAF policy in t ### Example 1: Create WAF policy ```powershell -PS C:\> New-AzFrontDoorFireWallPolicy -Name $Name -ResourceGroupName $resourceGroupName -Customrule $customRule1 -ManagedRule $managedRule1 -En -abledState Enabled -Mode Prevention - - -PolicyMode : Prevention -PolicyEnabledState : Enabled -CustomRules : {Rule1} -ManagedRules : {Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule} -Etag : -ProvisioningState : Succeeded -Tags : -Id : /subscriptions/{subid}/resourcegroups/{resourceGroupName}/providers/Micr - osoft.Network/frontdoorwebapplicationfirewallpolicies/{Name} -Name : {Name} -Type : +PS C:\> New-AzFrontDoorFireWallPolicy -Name $policyName -ResourceGroupName $resourceGroupName -Customrule $customRule1,$customRule2 -ManagedRule $managedRule1 -EnabledState Enabled -Mode Prevention -RedirectUrl "https://www.bing.com/" -CustomBlockResponseStatusCode 405 -CustomBlockResponseBody "You are blocked!" + +Name PolicyMode PolicyEnabledState RedirectUrl +---- ---------- ------------------ ----------- +{policyName} Prevention Enabled https://www.bing.com/ ``` Create WAF policy ## PARAMETERS +### -CustomBlockResponseBody +Custom Response Body + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CustomBlockResponseStatusCode +Custom Response Status Code + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Customrule Custom rules inside the policy @@ -140,6 +161,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RedirectUrl +Redirect URL + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The resource group name @@ -187,7 +223,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorFrontendEndpointObject.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorFrontendEndpointObject.md index 9c8227e6e9af..8b76eb0cbaef 100644 --- a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorFrontendEndpointObject.md +++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorFrontendEndpointObject.md @@ -241,7 +241,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorHealthProbeSettingObject.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorHealthProbeSettingObject.md index c0907b6cea31..8b0e5a07a47b 100644 --- a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorHealthProbeSettingObject.md +++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorHealthProbeSettingObject.md @@ -120,7 +120,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorLoadBalancingSettingObject.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorLoadBalancingSettingObject.md index dfdb61866a7f..61fb1d05e26a 100644 --- a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorLoadBalancingSettingObject.md +++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorLoadBalancingSettingObject.md @@ -120,7 +120,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorManagedRuleObject.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorManagedRuleObject.md index 98eb7afd6f3e..50c33fcede0b 100644 --- a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorManagedRuleObject.md +++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorManagedRuleObject.md @@ -13,7 +13,7 @@ Create ManagedRule Object for WAF policy creation ## SYNTAX ``` -New-AzFrontDoorManagedRuleObject -Priority [-Version ] +New-AzFrontDoorManagedRuleObject -Type -Version [-RuleGroupOverride ] [-DefaultProfile ] [] ``` @@ -25,12 +25,18 @@ Create ManagedRule Object for WAF policy creation ### Example 1 ```powershell -PS C:\> New-AzFrontDoor -ManagedRuleObject -Priority 1 -Version 0 -RuleGroupOverride $override1 +PS C:\> $ruleOverride1 = New-AzFrontDoorManagedRuleOverrideObject -RuleId "942250" -Action Log -EnabledState Enabled +PS C:\> $ruleOverride2 = New-AzFrontDoorManagedRuleOverrideObject -RuleId "942251" -Action Log -EnabledState Enabled +PS C:\> $override1 = New-AzFrontDoorRuleGroupOverrideObject -RuleGroupName SQLI -ManagedRuleOverride $ruleOverride1,$ruleOverride2 -RuleGroupOverrides Priority Version ------------------- -------- ------- -{Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride} 1 0 +PS C:\> $ruleOverride3 = New-AzFrontDoorManagedRuleOverrideObject -RuleId "941280" -Action Log -EnabledState Enabled +PS C:\> $override2 = New-AzFrontDoorRuleGroupOverrideObject -RuleGroupName XSS -ManagedRuleOverride $ruleOverride3 + +PS C:\> New-AzFrontDoorManagedRuleObject -Type DefaultRuleSet -Version "preview-0.1" -RuleGroupOverride $override1,$override2 + +RuleGroupOverrides RuleSetType RuleSetVersion +------------------ ----------- -------------- +{SQLI, XSS} DefaultRuleSet preview-0.1 ``` Create a ManagedRule Object @@ -52,30 +58,30 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Priority -Describes priority of the rule +### -RuleGroupOverride +List of azure managed provider override configuration ```yaml -Type: System.Int32 +Type: Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride[] Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -RuleGroupOverride -List of azure managed provider override configuration +### -Type +Type of the ruleset ```yaml -Type: Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride[] +Type: System.String Parameter Sets: (All) Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False @@ -90,7 +96,7 @@ Type: System.String Parameter Sets: (All) Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False @@ -98,7 +104,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorManagedRuleOverrideObject.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorManagedRuleOverrideObject.md new file mode 100644 index 000000000000..8f564dc39cbb --- /dev/null +++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorManagedRuleOverrideObject.md @@ -0,0 +1,114 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll-Help.xml +Module Name: Az.FrontDoor +online version: https://docs.microsoft.com/en-us/powershell/module/az.frontdoor/new-azfrontdoormanagedruleoverrideobject +schema: 2.0.0 +--- + +# New-AzFrontDoorManagedRuleOverrideObject + +## SYNOPSIS +Create managed rule override object + +## SYNTAX + +``` +New-AzFrontDoorManagedRuleOverrideObject -RuleId [-Action ] [-Disabled] + [-DefaultProfile ] [] +``` + +## DESCRIPTION +Create PSAzureManagedRuleOverride Object for managed WAF rule group override object creation. + +## EXAMPLES + +### Example 1 +Create a managed rule override object for rule 942250 (which is in SQLI group). + +```powershell +PS C:\> New-AzFrontDoorManagedRuleOverrideObject -RuleId "942250" -Action Log + +RuleId EnabledState Action +------ ------------ ------ +942250 Enabled Log +``` + +## PARAMETERS + +### -Action +Override Action + +```yaml +Type: Microsoft.Azure.Commands.FrontDoor.Models.PSAction +Parameter Sets: (All) +Aliases: +Accepted values: Allow, Block, Log, Redirect + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Disabled +Disabled state + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RuleId +Rule ID + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride + +## NOTES + +## RELATED LINKS + +[New-AzFrontDoorRuleGroupOverrideObject](./New-AzFrontDoorRuleGroupOverrideObject.md) \ No newline at end of file diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorMatchConditionObject.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorMatchConditionObject.md index 9589cd63b006..a3b51790f8ce 100644 --- a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorMatchConditionObject.md +++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorMatchConditionObject.md @@ -14,7 +14,7 @@ Create MatchCondition Object for WAF policy creation ``` New-AzFrontDoorMatchConditionObject -MatchVariable -OperatorProperty - -MatchValue [-Selector ] [-NegateCondition ] + [-MatchValue ] [-Selector ] [-NegateCondition ] [-DefaultProfile ] [] ``` @@ -25,14 +25,12 @@ Create MatchCondition Object for WAF policy creation ### Example 1 ```powershell -PS C:\> New-AzFrontDoorMatchConditionObject -MatchVariable RequestHeader -OperatorProperty Contains -Selector "UserAgent" -MatchValue "Windows" +PS C:\> New-AzFrontDoorMatchConditionObject -MatchVariable RequestHeader -OperatorProperty Contains -Selector "User-Agent" -MatchValue "Windows" -MatchVariable : RequestHeader -OperatorProperty : Contains -MatchValue : {Windows} -Selector : UserAgent -NegateCondition : False +MatchVariable OperatorProperty MatchValue Selector NegateCondition +------------- ---------------- ---------- -------- --------------- +RequestHeader Contains {Windows} User-Agent False ``` Create a MatchCondition object @@ -62,7 +60,7 @@ Type: System.String[] Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -135,7 +133,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorRoutingRuleObject.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorRoutingRuleObject.md index 1fc9d75e96fa..4b82f757c6be 100644 --- a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorRoutingRuleObject.md +++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorRoutingRuleObject.md @@ -12,6 +12,7 @@ Create a PSRoutingRuleObject for Front Door creation ## SYNTAX +### ByFieldsWithForwardingParameterSet ``` New-AzFrontDoorRoutingRuleObject -ResourceGroupName -FrontDoorName -Name -FrontendEndpointName -BackendPoolName [-AcceptedProtocol ] @@ -21,6 +22,15 @@ New-AzFrontDoorRoutingRuleObject -ResourceGroupName -FrontDoorName ] [] ``` +### ByFieldsWithRedirectParameterSet +``` +New-AzFrontDoorRoutingRuleObject -ResourceGroupName -FrontDoorName -Name + -FrontendEndpointName [-AcceptedProtocol ] [-PatternToMatch ] + [-RedirectType ] [-RedirectProtocol ] [-CustomHost ] + [-CustomPath ] [-CustomFragment ] [-CustomQueryString ] + [-EnabledState ] [-DefaultProfile ] [] +``` + ## DESCRIPTION Create a PSRoutingRuleObject for Front Door creation @@ -75,7 +85,7 @@ Resource id of the BackendPool which this rule routes to ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByFieldsWithForwardingParameterSet Aliases: Required: True @@ -91,7 +101,67 @@ Leave empty to use incoming path. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByFieldsWithForwardingParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CustomFragment +Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #. + +```yaml +Type: System.String +Parameter Sets: ByFieldsWithRedirectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CustomHost +Host to redirect. Leave empty to use use the incoming host as the destination host. + +```yaml +Type: System.String +Parameter Sets: ByFieldsWithRedirectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CustomPath +The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path. + +```yaml +Type: System.String +Parameter Sets: ByFieldsWithRedirectParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CustomQueryString +The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in = format. The first ? and & will be added automatically so do not include them in the front, but do separate multiple query strings with &. + +```yaml +Type: System.String +Parameter Sets: ByFieldsWithRedirectParameterSet Aliases: Required: False @@ -122,7 +192,7 @@ Default value is Enabled ```yaml Type: Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState -Parameter Sets: (All) +Parameter Sets: ByFieldsWithForwardingParameterSet Aliases: Accepted values: Enabled, Disabled @@ -139,7 +209,7 @@ Default value is false ```yaml Type: System.Boolean -Parameter Sets: (All) +Parameter Sets: ByFieldsWithForwardingParameterSet Aliases: Required: False @@ -172,7 +242,7 @@ Default value is MatchRequest. ```yaml Type: Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol -Parameter Sets: (All) +Parameter Sets: ByFieldsWithForwardingParameterSet Aliases: Accepted values: HttpOnly, HttpsOnly, MatchRequest @@ -250,7 +320,7 @@ Default value is StripAll ```yaml Type: Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective -Parameter Sets: (All) +Parameter Sets: ByFieldsWithForwardingParameterSet Aliases: Accepted values: StripNone, StripAll @@ -261,6 +331,38 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RedirectProtocol +The protocol of the destination to where the traffic is redirected. Default value is MatchRequest + +```yaml +Type: Microsoft.Azure.Commands.FrontDoor.Models.PSRedirectProtocol +Parameter Sets: ByFieldsWithRedirectParameterSet +Aliases: +Accepted values: HttpOnly, HttpsOnly, MatchRequest + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RedirectType +The redirect type the rule will use when redirecting traffic. Default Value is Moved + +```yaml +Type: Microsoft.Azure.Commands.FrontDoor.Models.PSRedirectType +Parameter Sets: ByFieldsWithRedirectParameterSet +Aliases: +Accepted values: Moved, Found, TemporaryRedirect, PermanentRedirect + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The resource group name that the RoutingRule will be created in. @@ -277,7 +379,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorRuleGroupOverrideObject.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorRuleGroupOverrideObject.md index fae60589cd08..771e3be07dbd 100644 --- a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorRuleGroupOverrideObject.md +++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorRuleGroupOverrideObject.md @@ -13,8 +13,9 @@ Create RuleGroupOverride Object for WAF policy creation ## SYNTAX ``` -New-AzFrontDoorRuleGroupOverrideObject -Override -Action - [-DefaultProfile ] [] +New-AzFrontDoorRuleGroupOverrideObject -RuleGroupName + [-ManagedRuleOverride ] [-DefaultProfile ] + [] ``` ## DESCRIPTION @@ -24,41 +25,42 @@ Create RuleGroupOverride Object for WAF policy creation ### Example 1 ```powershell -PS C:\> New-AzFrontDoorRuleGroupOverrideObject -Override SqlInjection -Action Block +PS C:\> $ruleOverride1 = New-AzFrontDoorManagedRuleOverrideObject -RuleId "942250" -Action Log -EnabledState Enabled +PS C:\> $ruleOverride2 = New-AzFrontDoorManagedRuleOverrideObject -RuleId "942251" -Action Log -EnabledState Enabled -Action RuleGroupOverride ------- ----------------- - Block SqlInjection +PS C:\> New-AzFrontDoorRuleGroupOverrideObject -RuleGroupName SQLI -ManagedRuleOverride $ruleOverride1,$ruleOverride2 + +RuleGroupName ManagedRuleOverrides +------------- -------------------- +SQLI {942250, 942251} ``` Create a RuleGroupOverride Object ## PARAMETERS -### -Action -Type of Actions. -Possible values include: 'Allow', 'Block', 'Log' +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: Microsoft.Azure.Commands.FrontDoor.Models.PSAction +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) -Aliases: -Accepted values: Allow, Block, Log +Aliases: AzContext, AzureRmContext, AzureCredential -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. +### -ManagedRuleOverride +Rule override list ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride[] Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential +Aliases: Required: False Position: Named @@ -67,15 +69,13 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Override -Describes overrideruleGroup. -Possible values include: 'SqlInjection', 'XSS' +### -RuleGroupName +Rule Group Name for which these overrides apply ```yaml -Type: Microsoft.Azure.Commands.FrontDoor.Models.PSRuleGroupOverride +Type: System.String Parameter Sets: (All) Aliases: -Accepted values: SqlInjection, XSS Required: True Position: Named @@ -85,7 +85,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/Remove-AzFrontDoor.md b/src/FrontDoor/FrontDoor/help/Remove-AzFrontDoor.md index 5cfadefd72fb..38c1a4eb2e81 100644 --- a/src/FrontDoor/FrontDoor/help/Remove-AzFrontDoor.md +++ b/src/FrontDoor/FrontDoor/help/Remove-AzFrontDoor.md @@ -187,7 +187,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/Remove-AzFrontDoorContent.md b/src/FrontDoor/FrontDoor/help/Remove-AzFrontDoorContent.md index eeb5e0a8e182..d799afd75fb2 100644 --- a/src/FrontDoor/FrontDoor/help/Remove-AzFrontDoorContent.md +++ b/src/FrontDoor/FrontDoor/help/Remove-AzFrontDoorContent.md @@ -136,7 +136,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/Remove-AzFrontDoorFireWallPolicy.md b/src/FrontDoor/FrontDoor/help/Remove-AzFrontDoorFireWallPolicy.md index 9a9a6a3988f3..ad6eefa2cf2a 100644 --- a/src/FrontDoor/FrontDoor/help/Remove-AzFrontDoorFireWallPolicy.md +++ b/src/FrontDoor/FrontDoor/help/Remove-AzFrontDoorFireWallPolicy.md @@ -31,23 +31,23 @@ Remove-AzFrontDoorFireWallPolicy -ResourceId [-PassThru] [-DefaultProfi ``` ## DESCRIPTION -The **Remove-AzFrontDoor** cmdlet removes a WAF policy under the current subscription +The **Remove-AzFrontDoorFireWallPolicy** cmdlet removes a WAF policy under the current subscription ## EXAMPLES ### Example 1 ```powershell -PS C:\> Remove-AzFrontDoorFireWallPolicy -Name $name -ResourceGroupName $resourceGroup +PS C:\> Remove-AzFrontDoorFireWallPolicy -Name $policyName -ResourceGroupName $resourceGroupName ``` -Remove the WAF policy called $name in $resourceGroup. +Remove the WAF policy called $policyName in $resourceGroupName. ### Example 2 ```powershell -PS C:\> Get--AzFrontDoorFireWallPolicy -ResourceGroupName $resourceGroup | Remove-AzFrontDoorFireWallPolicy +PS C:\> Get-AzFrontDoorFireWallPolicy -ResourceGroupName $resourceGroupName | Remove-AzFrontDoorFireWallPolicy ``` -Remove all WAF policy in $resourceGroup. +Remove all WAF policy in $resourceGroupName. ## PARAMETERS @@ -173,7 +173,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/Set-AzFrontDoor.md b/src/FrontDoor/FrontDoor/help/Set-AzFrontDoor.md index df84b24d4603..290d416577c2 100644 --- a/src/FrontDoor/FrontDoor/help/Set-AzFrontDoor.md +++ b/src/FrontDoor/FrontDoor/help/Set-AzFrontDoor.md @@ -17,8 +17,8 @@ Update a Front Door load balancer Set-AzFrontDoor -ResourceGroupName -Name [-RoutingRule ] [-BackendPool ] [-FrontendEndpoint ] [-LoadBalancingSetting ] [-HealthProbeSetting ] - [-Tag ] [-EnabledState ] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + [-Tag ] [-EnabledState ] [-DisableCertificateNameCheck] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByObjectParameterSet @@ -26,7 +26,8 @@ Set-AzFrontDoor -ResourceGroupName -Name [-RoutingRule [-RoutingRule ] [-BackendPool ] [-FrontendEndpoint ] [-LoadBalancingSetting ] [-HealthProbeSetting ] [-Tag ] [-EnabledState ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-DisableCertificateNameCheck] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByResourceIdParameterSet @@ -34,7 +35,8 @@ Set-AzFrontDoor -InputObject [-RoutingRule ] [-Ba Set-AzFrontDoor -ResourceId [-RoutingRule ] [-BackendPool ] [-FrontendEndpoint ] [-LoadBalancingSetting ] [-HealthProbeSetting ] [-Tag ] [-EnabledState ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-DisableCertificateNameCheck] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -46,21 +48,21 @@ The **Set-AzFrontDoor** cmdlet updates a Front Door load balancer. If input para ```powershell PS C:\> Set-AzFrontDoor -Name "frontDoor1" -ResourceGroupName "resourceGroup1" -RoutingRule $routingrule1 -BackendPool $backendpool1 -FrontendEndpoint $frontendEndpoint1 -LoadBalancingSetting $loadBalancingSetting1 -HealthProbeSetting $healthProbeSetting1 -FriendlyName : frontdoor1 -RoutingRules : {routingrule1} -BackendPools : {backendpool1} -HealthProbeSettings : {healthProbeSetting1} -LoadBalancingSettings : {loadbalancingsetting1} -FrontendEndpoints : {frontendendpoint1} -EnabledState : Enabled -ResourceState : Enabled -ProvisioningState : Succeeded -Cname : -Tags : {tag1, tag2} -Id : /subscriptions/{guid}/resourcegroups/{guid}/providers/M - icrosoft.Network/frontdoors/frontdoor1 -Name : frontdoor1 -Type : Microsoft.Network/frontdoor1 +FriendlyName : frontdoor1 +RoutingRules : {routingrule1} +BackendPools : {backendpool1} +EnforceCertificateNameCheck : Enabled +HealthProbeSettings : {healthProbeSetting1} +LoadBalancingSettings : {loadbalancingsetting1} +FrontendEndpoints : {frontendendpoint1} +EnabledState : Enabled +ResourceState : Enabled +ProvisioningState : Succeeded +Cname : +Tags : {tag1, tag2} +Id : /subscriptions/{guid}/resourcegroups/{guid}/providers/Microsoft.Network/frontdoors/frontdoor1 +Name : frontdoor1 +Type : Microsoft.Network/frontdoors ``` update an existing FrontDoor. @@ -69,21 +71,21 @@ update an existing FrontDoor. ```powershell PS C:\> Set-AzFrontDoor -InputObject $frontDoor1 -RoutingRule $routingrule1 -BackendPool $backendpool1 -FrontendEndpoint $frontendEndpoint1 -LoadBalancingSetting $loadBalancingSetting1 -HealthProbeSetting $healthProbeSetting1 -FriendlyName : frontdoor1 -RoutingRules : {routingrule1} -BackendPools : {backendpool1} -HealthProbeSettings : {healthProbeSetting1} -LoadBalancingSettings : {loadbalancingsetting1} -FrontendEndpoints : {frontendendpoint1} -EnabledState : Enabled -ResourceState : Enabled -ProvisioningState : Succeeded -Cname : -Tags : {tag1, tag2} -Id : /subscriptions/{guid}/resourcegroups/{guid}/providers/M - icrosoft.Network/frontdoors/frontdoor1 -Name : frontdoor1 -Type : Microsoft.Network/frontdoor1 +FriendlyName : frontdoor1 +RoutingRules : {routingrule1} +BackendPools : {backendpool1} +EnforceCertificateNameCheck : Enabled +HealthProbeSettings : {healthProbeSetting1} +LoadBalancingSettings : {loadbalancingsetting1} +FrontendEndpoints : {frontendendpoint1} +EnabledState : Enabled +ResourceState : Enabled +ProvisioningState : Succeeded +Cname : +Tags : {tag1, tag2} +Id : /subscriptions/{guid}/resourcegroups/{guid}/providers/Microsoft.Network/frontdoors/frontdoor1 +Name : frontdoor1 +Type : Microsoft.Network/frontdoor1 ``` update an existing FrontDoor. @@ -92,21 +94,21 @@ update an existing FrontDoor. ```powershell PS C:\> Set-AzFrontDoor -ResourceId {resourceId} -RoutingRule $routingrule1 -BackendPool $backendpool1 -FrontendEndpoint $frontendEndpoint1 -LoadBalancingSetting $loadBalancingSetting1 -HealthProbeSetting $healthProbeSetting1 -FriendlyName : frontdoor1 -RoutingRules : {routingrule1} -BackendPools : {backendpool1} -HealthProbeSettings : {healthProbeSetting1} -LoadBalancingSettings : {loadbalancingsetting1} -FrontendEndpoints : {frontendendpoint1} -EnabledState : Enabled -ResourceState : Enabled -ProvisioningState : Succeeded -Cname : -Tags : {tag1, tag2} -Id : /subscriptions/{guid}/resourcegroups/{guid}/providers/M - icrosoft.Network/frontdoors/frontdoor1 -Name : frontdoor1 -Type : Microsoft.Network/frontdoor1 +FriendlyName : frontdoor1 +RoutingRules : {routingrule1} +BackendPools : {backendpool1} +EnforceCertificateNameCheck : Enabled +HealthProbeSettings : {healthProbeSetting1} +LoadBalancingSettings : {loadbalancingsetting1} +FrontendEndpoints : {frontendendpoint1} +EnabledState : Enabled +ResourceState : Enabled +ProvisioningState : Succeeded +Cname : +Tags : {tag1, tag2} +Id : /subscriptions/{guid}/resourcegroups/{guid}/providers/Microsoft.Network/frontdoors/frontdoor1 +Name : frontdoor1 +Type : Microsoft.Network/frontdoor1 ``` update an existing FrontDoor. @@ -143,6 +145,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -DisableCertificateNameCheck +Whether to disable certificate name check on HTTPS requests to all backend pools. No effect on non-HTTPS requests. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -EnabledState Operational status of the Front Door load balancer. @@ -326,7 +343,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/FrontDoor/FrontDoor/help/Set-AzFrontDoorFireWallPolicy.md b/src/FrontDoor/FrontDoor/help/Update-AzFrontDoorFireWallPolicy.md similarity index 59% rename from src/FrontDoor/FrontDoor/help/Set-AzFrontDoorFireWallPolicy.md rename to src/FrontDoor/FrontDoor/help/Update-AzFrontDoorFireWallPolicy.md index 811409a6df38..203e3dae4f1e 100644 --- a/src/FrontDoor/FrontDoor/help/Set-AzFrontDoorFireWallPolicy.md +++ b/src/FrontDoor/FrontDoor/help/Update-AzFrontDoorFireWallPolicy.md @@ -1,109 +1,118 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll-Help.xml Module Name: Az.FrontDoor -online version: https://docs.microsoft.com/en-us/powershell/module/az.frontdoor/set-azfrontdoorfirewallpolicy +online version: https://docs.microsoft.com/en-us/powershell/module/az.frontdoor/update-azfrontdoorfirewallpolicy schema: 2.0.0 --- -# Set-AzFrontDoorFireWallPolicy +# Update-AzFrontDoorFireWallPolicy ## SYNOPSIS -update WAF policy +Update WAF policy ## SYNTAX ### ByFieldsParameterSet (Default) ``` -Set-AzFrontDoorFireWallPolicy -ResourceGroupName -Name [-EnabledState ] - [-Mode ] [-Customrule ] [-ManagedRule ] +Update-AzFrontDoorFireWallPolicy -ResourceGroupName -Name [-EnabledState ] + [-Mode ] [-Customrule ] [-ManagedRule ] [-RedirectUrl ] + [-CustomBlockResponseStatusCode ] [-CustomBlockResponseBody ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByObjectParameterSet ``` -Set-AzFrontDoorFireWallPolicy -InputObject [-EnabledState ] [-Mode ] - [-Customrule ] [-ManagedRule ] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] +Update-AzFrontDoorFireWallPolicy -InputObject [-EnabledState ] [-Mode ] + [-Customrule ] [-ManagedRule ] [-RedirectUrl ] + [-CustomBlockResponseStatusCode ] [-CustomBlockResponseBody ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByResourceIdParameterSet ``` -Set-AzFrontDoorFireWallPolicy -ResourceId [-EnabledState ] [-Mode ] - [-Customrule ] [-ManagedRule ] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] +Update-AzFrontDoorFireWallPolicy -ResourceId [-EnabledState ] [-Mode ] + [-Customrule ] [-ManagedRule ] [-RedirectUrl ] + [-CustomBlockResponseStatusCode ] [-CustomBlockResponseBody ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Set-AzFrontDoor** cmdlet updates an existing WAF policy. If input parameters are not provided, old parameters from the existing WAF policy will be used. +The **Update-AzFrontDoorFireWallPolicy** cmdlet updates an existing WAF policy. If input parameters are not provided, old parameters from the existing WAF policy will be used. ## EXAMPLES -### Example 1: update an existing WAF policy +### Example 1 ```powershell -PS C:\> Set-AzFrontDoorFireWallPolicy -Name $name -ResourceGroupName $resourceGroup -Customrule $customRule -ManagedRule $managedRule -EnabledState $enabledState -Mode $node - -PolicyMode : Prevention -PolicyEnabledState : Enabled -CustomRules : {Rule1} -ManagedRules : {Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule} -Etag : -ProvisioningState : Succeeded -Tags : -Id : /subscriptions/{subid}/resourcegroups/{resourceGroupName}/providers/Micr - osoft.Network/frontdoorwebapplicationfirewallpolicies/{Name} -Name : {Name} -Type : +PS C:\> Update-AzFrontDoorFireWallPolicy -Name $policyName -ResourceGroupName $resourceGroupName -CustomBlockResponseStatusCode 403 + +Name PolicyMode PolicyEnabledState CustomBlockResponseStatusCode RedirectUrl +---- ---------- ------------------ ----------------------------- ----------- +{policyName} Prevention Enabled 403 https://www.bing.com/ ``` -update an existing WAF policy +Update an existing WAF policy custom status code. -### Example 2: update an existing WAF policy +### Example 2 ```powershell -PS C:\> Set-AzFrontDoorFireWallPolicy -InputObject $policy1 -Customrule $customRule -ManagedRule $managedRule -EnabledState $enabledState -Mode $mode - -PolicyMode : Prevention -PolicyEnabledState : Enabled -CustomRules : {Rule1} -ManagedRules : {Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule} -Etag : -ProvisioningState : Succeeded -Tags : -Id : /subscriptions/{subid}/resourcegroups/{resourceGroupName}/providers/Micr - osoft.Network/frontdoorwebapplicationfirewallpolicies/{Name} -Name : {Name} -Type : +PS C:\> Update-AzFrontDoorFireWallPolicy -Name $policyName -ResourceGroupName $resourceGroupName -Mode Detection + +Name PolicyMode PolicyEnabledState CustomBlockResponseStatusCode RedirectUrl +---- ---------- ------------------ ----------------------------- ----------- +{policyName} Detection Enabled 403 https://www.bing.com/ ``` -update an existing WAF policy +Update an existing WAF policy mode. -### Example 3: update an existing WAF policy +### Example 3 ```powershell -PS C:\> Set-AzFrontDoorFireWallPolicy -ResourceId $resourcdId -Customrule $customRule -ManagedRule $managedRule -EnabledState $enabledState -Mode $mode - -PolicyMode : Prevention -PolicyEnabledState : Enabled -CustomRules : {Rule1} -ManagedRules : {Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule} -Etag : -ProvisioningState : Succeeded -Tags : -Id : /subscriptions/{subid}/resourcegroups/{resourceGroupName}/providers/Micr - osoft.Network/frontdoorwebapplicationfirewallpolicies/{Name} -Name : {Name} -Type : +PS C:\> Update-AzFrontDoorFireWallPolicy -Name $policyName -ResourceGroupName $resourceGroupName -Mode Detection -EnabledState Disabled + +Name PolicyMode PolicyEnabledState CustomBlockResponseStatusCode RedirectUrl +---- ---------- ------------------ ----------------------------- ----------- +{policyName} Detection Disabled 403 https://www.bing.com/ ``` -update an existing WAF policy +Update an existing WAF policy enabled state and mode. -### Example 4: update all WAF policies in $resourceGroup +### Example 4 ```powershell -PS C:\> Get-AzFrontDoorFireWallPolicy -ResourceGroupName $resourceGroup | Set-AzFrontDoorFireWallPolicy -Customrule $customRule -ManagedRule $managedRule -EnabledState $enabledState -Mode $mode +PS C:\> Get-AzFrontDoorFireWallPolicy -ResourceGroupName $resourceGroupName | Update-AzFrontDoorFireWallPolicy -Mode Detection -EnabledState Disabled ``` -update all WAF policies in $resourceGroup +Update all WAF policies in $resourceGroupName ## PARAMETERS +### -CustomBlockResponseBody +Custom Response Body + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CustomBlockResponseStatusCode +Custom Response Status Code + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Customrule Custom rules inside the policy @@ -213,6 +222,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RedirectUrl +Redirect URL + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName The resource group to which the FireWallPolicy belongs. @@ -275,7 +299,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 b/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 index 8316487b8981..725eb6913a69 100644 --- a/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 +++ b/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.GuestConfiguration.dll' diff --git a/src/HDInsight/HDInsight/Az.HDInsight.psd1 b/src/HDInsight/HDInsight/Az.HDInsight.psd1 index 7479f0ad8399..413fc245e3f9 100644 --- a/src/HDInsight/HDInsight/Az.HDInsight.psd1 +++ b/src/HDInsight/HDInsight/Az.HDInsight.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.HDInsight.dll', @@ -87,7 +87,7 @@ CmdletsToExport = 'Get-AzHDInsightJob', 'New-AzHDInsightSqoopJobDefinition', 'Add-AzHDInsightComponentVersion', 'Add-AzHDInsightSecurityProfile', 'Set-AzHDInsightDefaultStorage', 'Add-AzHDInsightStorage', 'Add-AzHDInsightScriptAction', 'Add-AzHDInsightMetastore', - 'Add-AzHDInsightConfigValues', 'Get-AzHDInsightProperties', + 'Add-AzHDInsightConfigValue', 'Get-AzHDInsightProperty', 'Revoke-AzHDInsightRdpServicesAccess', 'Revoke-AzHDInsightHttpServicesAccess', 'Grant-AzHDInsightRdpServicesAccess', @@ -108,8 +108,8 @@ CmdletsToExport = 'Get-AzHDInsightJob', 'New-AzHDInsightSqoopJobDefinition', # VariablesToExport = @() # Aliases 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 aliases to export. -AliasesToExport = 'Enable-AzHDInsightOMS', 'Disable-AzHDInsightOMS', - 'Get-AzHDInsightOMS' +AliasesToExport = 'Enable-AzHDInsightOMS', 'Disable-AzHDInsightOMS', 'Add-AzHDInsightConfigValues', + 'Get-AzHDInsightOMS', 'Get-AzHDInsightProperties' # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/HDInsight/HDInsight/ChangeLog.md b/src/HDInsight/HDInsight/ChangeLog.md index 4a6098ab01a5..2c06244f22fd 100644 --- a/src/HDInsight/HDInsight/ChangeLog.md +++ b/src/HDInsight/HDInsight/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.0.0 * General availability of `Az.HDInsight` module \ No newline at end of file diff --git a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightConfigValuesCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightConfigValuesCommand.cs index 15dfb7505571..1268578bc014 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightConfigValuesCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightConfigValuesCommand.cs @@ -15,13 +15,16 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Management.HDInsight; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Collections; using System.Collections.Generic; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightConfigValues"),OutputType(typeof(AzureHDInsightConfig))] + [GenericBreakingChange("Add-AzHDInsightConfigValues alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightConfigValue"),OutputType(typeof(AzureHDInsightConfig))] + [Alias("Add-AzHDInsightConfigValues")] public class AddAzureHDInsightConfigValuesCommand : HDInsightCmdletBase { private Dictionary _configurations; diff --git a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightPropertiesCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightPropertiesCommand.cs index 7c5f66ead850..93a1ed669a1a 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightPropertiesCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightPropertiesCommand.cs @@ -15,11 +15,14 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Management.HDInsight.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightProperties"),OutputType(typeof(CapabilitiesResponse))] + [GenericBreakingChange("Get-AzHDInsightProperties alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightProperty"),OutputType(typeof(CapabilitiesResponse))] + [Alias("Get-AzHDInsightProperties")] public class GetAzureHDInsightPropertiesCommand : HDInsightCmdletBase { #region Input Parameter Definitions diff --git a/src/HDInsight/HDInsight/help/Add-AzHDInsightConfigValues.md b/src/HDInsight/HDInsight/help/Add-AzHDInsightConfigValue.md similarity index 94% rename from src/HDInsight/HDInsight/help/Add-AzHDInsightConfigValues.md rename to src/HDInsight/HDInsight/help/Add-AzHDInsightConfigValue.md index f3d7a60b6771..6353d37613b5 100644 --- a/src/HDInsight/HDInsight/help/Add-AzHDInsightConfigValues.md +++ b/src/HDInsight/HDInsight/help/Add-AzHDInsightConfigValue.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml Module Name: Az.HDInsight ms.assetid: 4C3CF283-DD4F-4D2A-ABEC-84AC7B005D6A -online version: https://docs.microsoft.com/en-us/powershell/module/az.hdinsight/add-azhdinsightconfigvalues +online version: https://docs.microsoft.com/en-us/powershell/module/az.hdinsight/add-azhdinsightconfigvalue schema: 2.0.0 --- -# Add-AzHDInsightConfigValues +# Add-AzHDInsightConfigValue ## SYNOPSIS Adds a Hadoop configuration value customization and/or a Hive shared library customization to a cluster configuration object. @@ -15,7 +15,7 @@ Adds a Hadoop configuration value customization and/or a Hive shared library cus ### Spark1 ``` -Add-AzHDInsightConfigValues [-Config] [-Core ] [-HiveSite ] +Add-AzHDInsightConfigValue [-Config] [-Core ] [-HiveSite ] [-HiveEnv ] [-OozieSite ] [-OozieEnv ] [-WebHCat ] [-HBaseSite ] [-HBaseEnv ] [-Storm ] [-Yarn ] [-MapRed ] [-Tez ] [-Hdfs ] [-RServer ] @@ -25,7 +25,7 @@ Add-AzHDInsightConfigValues [-Config] [-Core ] ### Spark2 ``` -Add-AzHDInsightConfigValues [-Config] [-Core ] [-HiveSite ] +Add-AzHDInsightConfigValue [-Config] [-Core ] [-HiveSite ] [-HiveEnv ] [-OozieSite ] [-OozieEnv ] [-WebHCat ] [-HBaseSite ] [-HBaseEnv ] [-Storm ] [-Yarn ] [-MapRed ] [-Tez ] [-Hdfs ] [-RServer ] @@ -34,7 +34,7 @@ Add-AzHDInsightConfigValues [-Config] [-Core ] ``` ## DESCRIPTION -The **Add-AzHDInsightConfigValues** cmdlet adds a Hadoop configuration value customization, such as core-site.xml or hive-site.xml, and/or a Hive shared library customization to the HDInsight configuration object created by the New-AzHDInsightClusterConfig cmdlet. +The **Add-AzHDInsightConfigValue** cmdlet adds a Hadoop configuration value customization, such as core-site.xml or hive-site.xml, and/or a Hive shared library customization to the HDInsight configuration object created by the New-AzHDInsightClusterConfig cmdlet. ## EXAMPLES @@ -62,7 +62,7 @@ PS C:\> $mapRedConfigs = @{"mapred.map.max.attempts"="2"} # Create the cluster PS C:\> New-AzHDInsightClusterConfig ` - | Add-AzHDInsightConfigValues ` + | Add-AzHDInsightConfigValue ` -Core $coreConfigs ` -MapRed $mapRedConfigs ` | New-AzHDInsightCluster ` diff --git a/src/HDInsight/HDInsight/help/Az.HDInsight.md b/src/HDInsight/HDInsight/help/Az.HDInsight.md index d5e8191b5346..8476b9ef2ded 100644 --- a/src/HDInsight/HDInsight/help/Az.HDInsight.md +++ b/src/HDInsight/HDInsight/help/Az.HDInsight.md @@ -17,7 +17,7 @@ Adds a cluster identity to a cluster configuration object. ### [Add-AzHDInsightComponentVersion](Add-AzHDInsightComponentVersion.md) Adds a version for a service running in a cluster to a cluster configuration object. -### [Add-AzHDInsightConfigValues](Add-AzHDInsightConfigValues.md) +### [Add-AzHDInsightConfigValue](Add-AzHDInsightConfigValue.md) Adds a Hadoop configuration value customization and/or a Hive shared library customization to a cluster configuration object. ### [Add-AzHDInsightMetastore](Add-AzHDInsightMetastore.md) @@ -53,7 +53,7 @@ Gets the status of Operations Management Suite (OMS) installation on the cluster ### [Get-AzHDInsightPersistedScriptAction](Get-AzHDInsightPersistedScriptAction.md) Gets the persisted script actions for a cluster and lists them in chronological order, or gets details for a specified persisted script action. -### [Get-AzHDInsightProperties](Get-AzHDInsightProperties.md) +### [Get-AzHDInsightProperty](Get-AzHDInsightProperty.md) Gets properties about the HDInsight service, such as available locations and capacity. ### [Get-AzHDInsightScriptActionHistory](Get-AzHDInsightScriptActionHistory.md) diff --git a/src/HDInsight/HDInsight/help/Get-AzHDInsightProperties.md b/src/HDInsight/HDInsight/help/Get-AzHDInsightProperty.md similarity index 79% rename from src/HDInsight/HDInsight/help/Get-AzHDInsightProperties.md rename to src/HDInsight/HDInsight/help/Get-AzHDInsightProperty.md index 5ab0a9626cdd..6d4ccf00d5ac 100644 --- a/src/HDInsight/HDInsight/help/Get-AzHDInsightProperties.md +++ b/src/HDInsight/HDInsight/help/Get-AzHDInsightProperty.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml Module Name: Az.HDInsight ms.assetid: 606C5453-F841-4574-95F8-5CC29A4186E1 -online version: https://docs.microsoft.com/en-us/powershell/module/az.hdinsight/get-azhdinsightproperties +online version: https://docs.microsoft.com/en-us/powershell/module/az.hdinsight/get-azhdinsightproperty schema: 2.0.0 --- -# Get-AzHDInsightProperties +# Get-AzHDInsightProperty ## SYNOPSIS Gets properties about the HDInsight service, such as available locations and capacity. @@ -14,17 +14,17 @@ Gets properties about the HDInsight service, such as available locations and cap ## SYNTAX ``` -Get-AzHDInsightProperties [-Location] [-DefaultProfile ] [] +Get-AzHDInsightProperty [-Location] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzHDInsightProperties** cmdlet gets properties specific to Azure HDInsight, such as the list of available locations, HDInsight cluster versions, and available compute capacity. +The **Get-AzHDInsightProperty** cmdlet gets properties specific to Azure HDInsight, such as the list of available locations, HDInsight cluster versions, and available compute capacity. ## EXAMPLES ### Example 1: Get the properties of an Azure HDInsight cluster ``` -PS C:\>Get-AzHDInsightProperties -Location "East US 2" +PS C:\>Get-AzHDInsightProperty -Location "East US 2" ``` This command gets properties from an HDInsight service from location East US 2. diff --git a/src/IotCentral/IotCentral/Az.IotCentral.psd1 b/src/IotCentral/IotCentral/Az.IotCentral.psd1 index 2260d074664f..c2740ddf478e 100644 --- a/src/IotCentral/IotCentral/Az.IotCentral.psd1 +++ b/src/IotCentral/IotCentral/Az.IotCentral.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.IotCentral.dll' diff --git a/src/IotHub/IotHub/Az.IotHub.psd1 b/src/IotHub/IotHub/Az.IotHub.psd1 index 0def8c789eb2..47c7565ba902 100644 --- a/src/IotHub/IotHub/Az.IotHub.psd1 +++ b/src/IotHub/IotHub/Az.IotHub.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.IotHub.dll' @@ -79,7 +79,7 @@ CmdletsToExport = 'Add-AzIotHubKey', 'Get-AzIotHubEventHubConsumerGroup', 'Get-AzIotHubQuotaMetric', 'Get-AzIotHub', 'Get-AzIotHubRegistryStatistic', 'Get-AzIotHubValidSku', 'Add-AzIotHubEventHubConsumerGroup', 'New-AzIotHub', - 'New-AzIotHubExportDevices', 'New-AzIotHubImportDevices', + 'New-AzIotHubExportDevice', 'New-AzIotHubImportDevice', 'Remove-AzIotHub', 'Remove-AzIotHubEventHubConsumerGroup', 'Remove-AzIotHubKey', 'Set-AzIotHub', 'Update-AzIotHub', 'Add-AzIotHubCertificate', 'Get-AzIotHubCertificate', @@ -95,7 +95,7 @@ CmdletsToExport = 'Add-AzIotHubKey', 'Get-AzIotHubEventHubConsumerGroup', # Aliases 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 aliases to export. AliasesToExport = 'Get-AzIotHubEHCG', 'Add-AzIotHubEHCG', 'Remove-AzIotHubEHCG', - 'Set-AzIotHubVC', 'Get-AzIotHubCVC' + 'Set-AzIotHubVC', 'Get-AzIotHubCVC', 'New-AzIotHubExportDevices', 'New-AzIotHubImportDevices' # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/IotHub/IotHub/ChangeLog.md b/src/IotHub/IotHub/ChangeLog.md index 8fb72e5b3b1c..dcede4396536 100644 --- a/src/IotHub/IotHub/ChangeLog.md +++ b/src/IotHub/IotHub/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.0.2 * Add Encoding format to Add-IotHubRoutingEndpoint cmdlet. diff --git a/src/IotHub/IotHub/IotHub/NewAzureRmIotHubExportDevices.cs b/src/IotHub/IotHub/IotHub/NewAzureRmIotHubExportDevices.cs index 41f8d4b5b9bd..5588632501d1 100644 --- a/src/IotHub/IotHub/IotHub/NewAzureRmIotHubExportDevices.cs +++ b/src/IotHub/IotHub/IotHub/NewAzureRmIotHubExportDevices.cs @@ -21,8 +21,11 @@ namespace Microsoft.Azure.Commands.Management.IotHub using Microsoft.Azure.Management.IotHub.Models; using ResourceProperties = Microsoft.Azure.Commands.Management.IotHub.Properties; using ResourceManager.Common.ArgumentCompleters; + using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "IotHubExportDevices", SupportsShouldProcess = true)] + [GenericBreakingChange("New-AzIotHubExportDevices alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "IotHubExportDevice", SupportsShouldProcess = true)] + [Alias("New-AzIotHubExportDevices")] [OutputType(typeof(PSIotHubJobResponse))] public class NewAzureRmIotHubExportDevices : IotHubBaseCmdlet { diff --git a/src/IotHub/IotHub/IotHub/NewAzureRmIotHubImportDevices.cs b/src/IotHub/IotHub/IotHub/NewAzureRmIotHubImportDevices.cs index 488b791e42d3..e55d6a08700b 100644 --- a/src/IotHub/IotHub/IotHub/NewAzureRmIotHubImportDevices.cs +++ b/src/IotHub/IotHub/IotHub/NewAzureRmIotHubImportDevices.cs @@ -21,8 +21,11 @@ namespace Microsoft.Azure.Commands.Management.IotHub using Microsoft.Azure.Management.IotHub.Models; using ResourceProperties = Microsoft.Azure.Commands.Management.IotHub.Properties; using ResourceManager.Common.ArgumentCompleters; + using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "IotHubImportDevices", SupportsShouldProcess = true)] + [GenericBreakingChange("New-AzIotHubImportDevices alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "IotHubImportDevice", SupportsShouldProcess = true)] + [Alias("New-AzIotHubImportDevices")] [OutputType(typeof(PSIotHubJobResponse))] public class NewAzureRmIotHubImportDevices : IotHubBaseCmdlet { diff --git a/src/IotHub/IotHub/help/Az.IotHub.md b/src/IotHub/IotHub/help/Az.IotHub.md index f0c870fa3438..05d06ef8d6e2 100644 --- a/src/IotHub/IotHub/help/Az.IotHub.md +++ b/src/IotHub/IotHub/help/Az.IotHub.md @@ -65,10 +65,10 @@ Gets all valid skus that this IotHub can transition to. ### [New-AzIotHub](New-AzIotHub.md) Creates a new IotHub. -### [New-AzIotHubExportDevices](New-AzIotHubExportDevices.md) +### [New-AzIotHubExportDevice](New-AzIotHubExportDevice.md) Creates a new export devices job. -### [New-AzIotHubImportDevices](New-AzIotHubImportDevices.md) +### [New-AzIotHubImportDevice](New-AzIotHubImportDevice.md) Creates a new import devices job. ### [Remove-AzIotHub](Remove-AzIotHub.md) diff --git a/src/IotHub/IotHub/help/New-AzIotHubExportDevices.md b/src/IotHub/IotHub/help/New-AzIotHubExportDevice.md similarity index 86% rename from src/IotHub/IotHub/help/New-AzIotHubExportDevices.md rename to src/IotHub/IotHub/help/New-AzIotHubExportDevice.md index 08339b33030d..3efeb698eed7 100644 --- a/src/IotHub/IotHub/help/New-AzIotHubExportDevices.md +++ b/src/IotHub/IotHub/help/New-AzIotHubExportDevice.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll-Help.xml Module Name: Az.IotHub -online version: https://docs.microsoft.com/en-us/powershell/module/az.iothub/new-aziothubexportdevices +online version: https://docs.microsoft.com/en-us/powershell/module/az.iothub/new-aziothubexportdevice schema: 2.0.0 --- -# New-AzIotHubExportDevices +# New-AzIotHubExportDevice ## SYNOPSIS Creates a new export devices job. @@ -13,7 +13,7 @@ Creates a new export devices job. ## SYNTAX ``` -New-AzIotHubExportDevices [-ResourceGroupName] [-Name] [-ExportBlobContainerUri] +New-AzIotHubExportDevice [-ResourceGroupName] [-Name] [-ExportBlobContainerUri] [-ExcludeKeys] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -27,7 +27,7 @@ https://docs.microsoft.com/azure/iot-hub/iot-hub-bulk-identity-mgmt#get-the-cont ### Example 1 Issue an export device request. ``` -PS C:\> New-AzIotHubExportDevices -ResourceGroupName "myresourcegroup" -Name "myiothub" -ExportBlobContainerUri "https://mystorageaccount.blob.core.windows.net/mystoragecontainer?sv=2015-04-05&ss=bfqt&sr=c&srt=sco&sp=rwdl&se=2016-10-27T04:01:48Z&st=2016-10-26T20:01:48Z&spr=https&sig=QqpIhHsIMF8hNuFO%3D" -ExcludeKeys +PS C:\> New-AzIotHubExportDevice -ResourceGroupName "myresourcegroup" -Name "myiothub" -ExportBlobContainerUri "https://mystorageaccount.blob.core.windows.net/mystoragecontainer?sv=2015-04-05&ss=bfqt&sr=c&srt=sco&sp=rwdl&se=2016-10-27T04:01:48Z&st=2016-10-26T20:01:48Z&spr=https&sig=QqpIhHsIMF8hNuFO%3D" -ExcludeKeys ``` Creates a new export device request for the IotHub "myiothub" excluding the keys. diff --git a/src/IotHub/IotHub/help/New-AzIotHubImportDevices.md b/src/IotHub/IotHub/help/New-AzIotHubImportDevice.md similarity index 82% rename from src/IotHub/IotHub/help/New-AzIotHubImportDevices.md rename to src/IotHub/IotHub/help/New-AzIotHubImportDevice.md index 9a92b2600528..a043fda5b9cc 100644 --- a/src/IotHub/IotHub/help/New-AzIotHubImportDevices.md +++ b/src/IotHub/IotHub/help/New-AzIotHubImportDevice.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll-Help.xml Module Name: Az.IotHub -online version: https://docs.microsoft.com/en-us/powershell/module/az.iothub/new-aziothubimportdevices +online version: https://docs.microsoft.com/en-us/powershell/module/az.iothub/new-aziothubimportdevice schema: 2.0.0 --- -# New-AzIotHubImportDevices +# New-AzIotHubImportDevice ## SYNOPSIS Creates a new import devices job. @@ -13,7 +13,7 @@ Creates a new import devices job. ## SYNTAX ``` -New-AzIotHubImportDevices [-ResourceGroupName] [-Name] [-InputBlobContainerUri] +New-AzIotHubImportDevice [-ResourceGroupName] [-Name] [-InputBlobContainerUri] [-OutputBlobContainerUri] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -28,7 +28,7 @@ https://docs.microsoft.com/azure/iot-hub/iot-hub-bulk-identity-mgmt#get-the-cont ### Example 1 ``` -PS C:\> New-AzIotHubImportDevices -ResourceGroupName "myresourcegroup" -Name "myiothub" -InputBlobContainerUri "https://mystorageaccount.blob.core.windows.net/mystoragecontainer?sv=2015-04-05&ss=bfqt&sr=c&srt=sco&sp=rwdl&se=2016-10-27T04:01:48Z&st=2016-10-26T20:01:48Z&spr=https&sig=QqpIhHsIMF8hNuFO%3D" -OutputBlobContainerUri "https://mystorageaccount.blob.core.windows.net/?sv=2015-04-05&ss=bfqt&sr=c&srt=sco&sp=rwdl&se=2016-10-27T04:01:48Z&st=2016-10-26T20:01:48Z&spr=https&sig=QqpIhHsIMF8hNuFO%3D" +PS C:\> New-AzIotHubImportDevice -ResourceGroupName "myresourcegroup" -Name "myiothub" -InputBlobContainerUri "https://mystorageaccount.blob.core.windows.net/mystoragecontainer?sv=2015-04-05&ss=bfqt&sr=c&srt=sco&sp=rwdl&se=2016-10-27T04:01:48Z&st=2016-10-26T20:01:48Z&spr=https&sig=QqpIhHsIMF8hNuFO%3D" -OutputBlobContainerUri "https://mystorageaccount.blob.core.windows.net/?sv=2015-04-05&ss=bfqt&sr=c&srt=sco&sp=rwdl&se=2016-10-27T04:01:48Z&st=2016-10-26T20:01:48Z&spr=https&sig=QqpIhHsIMF8hNuFO%3D" ``` Creates a new import device request for the IotHub "myiothub". diff --git a/src/KeyVault/KeyVault/Az.KeyVault.psd1 b/src/KeyVault/KeyVault/Az.KeyVault.psd1 index 6ff11a7461a5..32268917ac0b 100644 --- a/src/KeyVault/KeyVault/Az.KeyVault.psd1 +++ b/src/KeyVault/KeyVault/Az.KeyVault.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.KeyVault.dll', @@ -96,8 +96,8 @@ CmdletsToExport = 'Add-AzKeyVaultCertificate', 'Update-AzKeyVaultCertificate', 'Remove-AzKeyVaultSecret', 'Restore-AzKeyVaultKey', 'Update-AzKeyVaultKey', 'Set-AzKeyVaultSecret', 'Update-AzKeyVaultSecret', 'Get-AzKeyVaultCertificatePolicy', - 'New-AzKeyVaultCertificateAdministratorDetails', - 'New-AzKeyVaultCertificateOrganizationDetails', + 'New-AzKeyVaultCertificateAdministratorDetail', + 'New-AzKeyVaultCertificateOrganizationDetail', 'Backup-AzKeyVaultSecret', 'Restore-AzKeyVaultSecret', 'Get-AzKeyVaultManagedStorageAccount', 'Add-AzKeyVaultManagedStorageAccount', @@ -120,8 +120,8 @@ CmdletsToExport = 'Add-AzKeyVaultCertificate', 'Update-AzKeyVaultCertificate', # VariablesToExport = @() # Aliases 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 aliases to export. -AliasesToExport = 'Set-AzKeyVaultKey', 'Set-AzKeyVaultSecretAttribute', - 'Set-AzKeyVaultKeyAttribute', 'Set-AzKeyVaultCertificateAttribute' +AliasesToExport = 'Set-AzKeyVaultKey', 'Set-AzKeyVaultSecretAttribute', 'New-AzKeyVaultCertificateAdministratorDetails', + 'Set-AzKeyVaultKeyAttribute', 'Set-AzKeyVaultCertificateAttribute', 'New-AzKeyVaultCertificateOrganizationDetails' # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/KeyVault/KeyVault/ChangeLog.md b/src/KeyVault/KeyVault/ChangeLog.md index 29c71752e70b..e75b33ba28f6 100644 --- a/src/KeyVault/KeyVault/ChangeLog.md +++ b/src/KeyVault/KeyVault/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.1.0 * Added wildcard support to KeyVault cmdlets diff --git a/src/KeyVault/KeyVault/Commands/NewAzureKeyVaultCertificateAdministratorDetails.cs b/src/KeyVault/KeyVault/Commands/NewAzureKeyVaultCertificateAdministratorDetails.cs index 332248b70169..e64a74437cf0 100644 --- a/src/KeyVault/KeyVault/Commands/NewAzureKeyVaultCertificateAdministratorDetails.cs +++ b/src/KeyVault/KeyVault/Commands/NewAzureKeyVaultCertificateAdministratorDetails.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.KeyVault.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.KeyVault.Commands @@ -20,7 +21,9 @@ namespace Microsoft.Azure.Commands.KeyVault.Commands /// /// New-AzKeyVaultCertificateAdministratorDetails creates an in-memory administrator details object /// - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultCertificateAdministratorDetails",SupportsShouldProcess = true)] + [GenericBreakingChange("New-AzKeyVaultCertificateAdministratorDetails alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultCertificateAdministratorDetail",SupportsShouldProcess = true)] + [Alias("New-AzKeyVaultCertificateAdministratorDetails")] [OutputType(typeof(PSKeyVaultCertificateAdministratorDetails))] public class NewAzureKeyVaultCertificateAdministratorDetails : KeyVaultCmdletBase { diff --git a/src/KeyVault/KeyVault/Commands/NewAzureKeyVaultCertificateOrganizationDetails.cs b/src/KeyVault/KeyVault/Commands/NewAzureKeyVaultCertificateOrganizationDetails.cs index 8a932cfa2f4a..0ac5fcd15785 100644 --- a/src/KeyVault/KeyVault/Commands/NewAzureKeyVaultCertificateOrganizationDetails.cs +++ b/src/KeyVault/KeyVault/Commands/NewAzureKeyVaultCertificateOrganizationDetails.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.KeyVault.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Collections.Generic; using System.Management.Automation; @@ -21,8 +22,10 @@ namespace Microsoft.Azure.Commands.KeyVault.Commands /// /// New-AzKeyVaultOrganizationDetails creates an in-memory organization details object /// - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultCertificateOrganizationDetails",SupportsShouldProcess = true)] + [GenericBreakingChange("New-AzKeyVaultCertificateOrganizationDetails alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultCertificateOrganizationDetail",SupportsShouldProcess = true)] [OutputType(typeof(PSKeyVaultCertificateOrganizationDetails))] + [Alias("New-AzKeyVaultCertificateOrganizationDetails")] public class NewAzureKeyVaultCertificateOrganizationDetails : KeyVaultCmdletBase { #region Input Parameter Definitions diff --git a/src/KeyVault/KeyVault/help/Az.KeyVault.md b/src/KeyVault/KeyVault/help/Az.KeyVault.md index 25b590321334..3afa796b33c6 100644 --- a/src/KeyVault/KeyVault/help/Az.KeyVault.md +++ b/src/KeyVault/KeyVault/help/Az.KeyVault.md @@ -74,10 +74,10 @@ Imports a certificate to a key vault. ### [New-AzKeyVault](New-AzKeyVault.md) Creates a key vault. -### [New-AzKeyVaultCertificateAdministratorDetails](New-AzKeyVaultCertificateAdministratorDetails.md) +### [New-AzKeyVaultCertificateAdministratorDetail](New-AzKeyVaultCertificateAdministratorDetail.md) Creates an in-memory certificate administrator details object. -### [New-AzKeyVaultCertificateOrganizationDetails](New-AzKeyVaultCertificateOrganizationDetails.md) +### [New-AzKeyVaultCertificateOrganizationDetail](New-AzKeyVaultCertificateOrganizationDetail.md) Creates an in-memory certificate organization details object. ### [New-AzKeyVaultCertificatePolicy](New-AzKeyVaultCertificatePolicy.md) diff --git a/src/KeyVault/KeyVault/help/New-AzKeyVaultCertificateAdministratorDetails.md b/src/KeyVault/KeyVault/help/New-AzKeyVaultCertificateAdministratorDetail.md similarity index 86% rename from src/KeyVault/KeyVault/help/New-AzKeyVaultCertificateAdministratorDetails.md rename to src/KeyVault/KeyVault/help/New-AzKeyVaultCertificateAdministratorDetail.md index 062a12ad1d1f..a933d618af24 100644 --- a/src/KeyVault/KeyVault/help/New-AzKeyVaultCertificateAdministratorDetails.md +++ b/src/KeyVault/KeyVault/help/New-AzKeyVaultCertificateAdministratorDetail.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll-Help.xml Module Name: Az.KeyVault ms.assetid: 775AB0E8-EC3C-4F96-8AF8-51C1DFEEF082 -online version: https://docs.microsoft.com/en-us/powershell/module/az.keyvault/new-azkeyvaultcertificateadministratordetails +online version: https://docs.microsoft.com/en-us/powershell/module/az.keyvault/new-azkeyvaultcertificateadministratordetail schema: 2.0.0 --- -# New-AzKeyVaultCertificateAdministratorDetails +# New-AzKeyVaultCertificateAdministratorDetail ## SYNOPSIS Creates an in-memory certificate administrator details object. @@ -14,19 +14,19 @@ Creates an in-memory certificate administrator details object. ## SYNTAX ``` -New-AzKeyVaultCertificateAdministratorDetails [-FirstName ] [-LastName ] +New-AzKeyVaultCertificateAdministratorDetail [-FirstName ] [-LastName ] [-EmailAddress ] [-PhoneNumber ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **New-AzKeyVaultCertificateAdministratorDetails** cmdlet creates an in-memory certificate administrator details object. +The **New-AzKeyVaultCertificateAdministratorDetail** cmdlet creates an in-memory certificate administrator details object. ## EXAMPLES ### Example 1: Create a certificate administrator details object ``` -PS C:\> $AdminDetails = New-AzKeyVaultCertificateAdministratorDetails -FirstName "Patti" -LastName "Fuller" -EmailAddress "patti.fuller@contoso.com" -PhoneNumber "5553334444" +PS C:\> $AdminDetails = New-AzKeyVaultCertificateAdministratorDetail -FirstName "Patti" -LastName "Fuller" -EmailAddress "patti.fuller@contoso.com" -PhoneNumber "5553334444" PS C:\> $AdminDetails FirstName LastName EmailAddress PhoneNumber @@ -159,5 +159,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[New-AzKeyVaultCertificateOrganizationDetails](./New-AzKeyVaultCertificateOrganizationDetails.md) +[New-AzKeyVaultCertificateOrganizationDetail](./New-AzKeyVaultCertificateOrganizationDetail.md) diff --git a/src/KeyVault/KeyVault/help/New-AzKeyVaultCertificateOrganizationDetails.md b/src/KeyVault/KeyVault/help/New-AzKeyVaultCertificateOrganizationDetail.md similarity index 85% rename from src/KeyVault/KeyVault/help/New-AzKeyVaultCertificateOrganizationDetails.md rename to src/KeyVault/KeyVault/help/New-AzKeyVaultCertificateOrganizationDetail.md index b385caacece9..bf29600fdf4d 100644 --- a/src/KeyVault/KeyVault/help/New-AzKeyVaultCertificateOrganizationDetails.md +++ b/src/KeyVault/KeyVault/help/New-AzKeyVaultCertificateOrganizationDetail.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll-Help.xml Module Name: Az.KeyVault ms.assetid: 0E1C05B0-8CF6-4C03-AA05-B13A4059A280 -online version: https://docs.microsoft.com/en-us/powershell/module/az.keyvault/new-azkeyvaultcertificateorganizationdetails +online version: https://docs.microsoft.com/en-us/powershell/module/az.keyvault/new-azkeyvaultcertificateorganizationdetail schema: 2.0.0 --- -# New-AzKeyVaultCertificateOrganizationDetails +# New-AzKeyVaultCertificateOrganizationDetail ## SYNOPSIS Creates an in-memory certificate organization details object. @@ -14,20 +14,20 @@ Creates an in-memory certificate organization details object. ## SYNTAX ``` -New-AzKeyVaultCertificateOrganizationDetails [-Id ] +New-AzKeyVaultCertificateOrganizationDetail [-Id ] [-AdministratorDetails ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **New-AzKeyVaultCertificateOrganizationDetails** cmdlet creates an in-memory certificate organization details object. +The **New-AzKeyVaultCertificateOrganizationDetail** cmdlet creates an in-memory certificate organization details object. ## EXAMPLES ### Example 1: Create an organization details object ```powershell -PS C:\> $AdminDetails = New-AzKeyVaultCertificateAdministratorDetails -FirstName "Patti" -LastName "Fuller" -EmailAddress "Patti.Fuller@contoso.com" -PhoneNumber "1234567890" -PS C:\> New-AzKeyVaultCertificateOrganizationDetails -AdministratorDetails $AdminDetails +PS C:\> $AdminDetails = New-AzKeyVaultCertificateAdministratorDetail -FirstName "Patti" -LastName "Fuller" -EmailAddress "Patti.Fuller@contoso.com" -PhoneNumber "1234567890" +PS C:\> New-AzKeyVaultCertificateOrganizationDetail -AdministratorDetails $AdminDetails Id AdministratorDetails -- -------------------- @@ -132,5 +132,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[New-AzKeyVaultCertificateAdministratorDetails](./New-AzKeyVaultCertificateAdministratorDetails.md) +[New-AzKeyVaultCertificateAdministratorDetail](./New-AzKeyVaultCertificateAdministratorDetail.md) diff --git a/src/Kusto/Kusto/Az.Kusto.psd1 b/src/Kusto/Kusto/Az.Kusto.psd1 index 9fd366ba618b..5922700b640d 100644 --- a/src/Kusto/Kusto/Az.Kusto.psd1 +++ b/src/Kusto/Kusto/Az.Kusto.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Kusto.dll' diff --git a/src/LogicApp/LogicApp/Az.LogicApp.psd1 b/src/LogicApp/LogicApp/Az.LogicApp.psd1 index 92c4f3e5b265..6a7634c3a7b6 100644 --- a/src/LogicApp/LogicApp/Az.LogicApp.psd1 +++ b/src/LogicApp/LogicApp/Az.LogicApp.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Logic.dll' diff --git a/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 b/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 index aeb68a7d05c5..0cc5c1adc6a8 100644 --- a/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 +++ b/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.MachineLearning.dll', @@ -81,7 +81,7 @@ CmdletsToExport = 'Move-AzMlCommitmentAssociation', 'Get-AzMlCommitmentAssociati 'Update-AzMlCommitmentPlan', 'Get-AzMlCommitmentPlan', 'Remove-AzMlWebService', 'Get-AzMlWebService', 'Update-AzMlWebService', 'Export-AzMlWebService', - 'Get-AzMlWebServiceKeys', 'Import-AzMlWebService', + 'Get-AzMlWebServiceKey', 'Import-AzMlWebService', 'New-AzMlCommitmentPlan', 'New-AzMlWebService', 'Add-AzMlWebServiceRegionalProperty', 'Get-AzMlOpCluster', 'Get-AzMlOpClusterKey', @@ -93,7 +93,7 @@ CmdletsToExport = 'Move-AzMlCommitmentAssociation', 'Get-AzMlCommitmentAssociati # VariablesToExport = @() # Aliases 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 aliases to export. -AliasesToExport = @() +AliasesToExport = @('Get-AzMlWebServiceKeys') # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/MachineLearning/MachineLearning/ChangeLog.md b/src/MachineLearning/MachineLearning/ChangeLog.md index e2cb5fed35a1..9d40f79d9f55 100644 --- a/src/MachineLearning/MachineLearning/ChangeLog.md +++ b/src/MachineLearning/MachineLearning/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.0.0 * General availability of `Az.MachineLearning` module \ No newline at end of file diff --git a/src/MachineLearning/MachineLearning/Cmdlets/WebServices/GetAzureMLWebServiceKeys.cs b/src/MachineLearning/MachineLearning/Cmdlets/WebServices/GetAzureMLWebServiceKeys.cs index 49c07e304fef..9d8838a9bab2 100644 --- a/src/MachineLearning/MachineLearning/Cmdlets/WebServices/GetAzureMLWebServiceKeys.cs +++ b/src/MachineLearning/MachineLearning/Cmdlets/WebServices/GetAzureMLWebServiceKeys.cs @@ -17,11 +17,14 @@ using Microsoft.Azure.Commands.MachineLearning.Utilities; using Microsoft.Azure.Management.MachineLearning.WebServices.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.MachineLearning.Cmdlets { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "MlWebServiceKeys")] + [GenericBreakingChange("Get-AzMlWebServiceKeys alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "MlWebServiceKey")] [OutputType(typeof(WebServiceKeys))] + [Alias("Get-AzMlWebServiceKeys")] public class GetAzureMLWebServiceKeys : WebServicesCmdletBase { private const string GetKeysByGroupAndName = "GetByNameAndResourceGroup"; diff --git a/src/MachineLearning/MachineLearning/help/Az.MachineLearning.md b/src/MachineLearning/MachineLearning/help/Az.MachineLearning.md index 7f60c5d910ac..7ea41f278371 100644 --- a/src/MachineLearning/MachineLearning/help/Az.MachineLearning.md +++ b/src/MachineLearning/MachineLearning/help/Az.MachineLearning.md @@ -35,7 +35,7 @@ Gets the access keys associated with an operationalization cluster. ### [Get-AzMlWebService](Get-AzMlWebService.md) Retrieves the summary information for one or more web services. -### [Get-AzMlWebServiceKeys](Get-AzMlWebServiceKeys.md) +### [Get-AzMlWebServiceKey](Get-AzMlWebServiceKey.md) Retrieves the web service's keys. ### [Import-AzMlWebService](Import-AzMlWebService.md) diff --git a/src/MachineLearning/MachineLearning/help/Get-AzMlWebServiceKeys.md b/src/MachineLearning/MachineLearning/help/Get-AzMlWebServiceKey.md similarity index 86% rename from src/MachineLearning/MachineLearning/help/Get-AzMlWebServiceKeys.md rename to src/MachineLearning/MachineLearning/help/Get-AzMlWebServiceKey.md index 81887ff30a0a..d3ff2c9c3cdb 100644 --- a/src/MachineLearning/MachineLearning/help/Get-AzMlWebServiceKeys.md +++ b/src/MachineLearning/MachineLearning/help/Get-AzMlWebServiceKey.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.dll-Help.xml Module Name: Az.MachineLearning -online version: https://docs.microsoft.com/en-us/powershell/module/az.machinelearning/get-azmlwebservicekeys +online version: https://docs.microsoft.com/en-us/powershell/module/az.machinelearning/get-azmlwebservicekey schema: 2.0.0 --- -# Get-AzMlWebServiceKeys +# Get-AzMlWebServiceKey ## SYNOPSIS Retrieves the web service's keys. @@ -14,13 +14,13 @@ Retrieves the web service's keys. ### GetByNameAndResourceGroup ``` -Get-AzMlWebServiceKeys -ResourceGroupName -Name [-DefaultProfile ] +Get-AzMlWebServiceKey -ResourceGroupName -Name [-DefaultProfile ] [] ``` ### GetByInstance ``` -Get-AzMlWebServiceKeys -MlWebService [-DefaultProfile ] +Get-AzMlWebServiceKey -MlWebService [-DefaultProfile ] [] ``` @@ -31,12 +31,12 @@ Gets the access keys for the Azure Machine Learning web service's runtime APIs. ### Example 1 - Get the keys for a web service specified by resource group and name ``` -Get-AzMlWebServiceKeys -ResourceGroupName "myresourcegroup" -Name "mywebservicename" +Get-AzMlWebServiceKey -ResourceGroupName "myresourcegroup" -Name "mywebservicename" ``` ### Example 2 - Get keys for web service instance ``` -Get-AzMlWebServiceKeys -MlWebService $mlService +Get-AzMlWebServiceKey -MlWebService $mlService ``` $mlService is an object of type Microsoft.Azure.Management.MachineLearning.WebServices.Models.WebService. diff --git a/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 b/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 index 71b78a73532f..017a0caff27a 100644 --- a/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 +++ b/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.ManagedServiceIdentity.dll' diff --git a/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 b/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 index ddb0dd03028f..7d9cfc86f57b 100644 --- a/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 +++ b/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.ManagementPartner.dll' diff --git a/src/Maps/Maps/Az.Maps.psd1 b/src/Maps/Maps/Az.Maps.psd1 index dd37dcae5a4f..711f8b0265ad 100644 --- a/src/Maps/Maps/Az.Maps.psd1 +++ b/src/Maps/Maps/Az.Maps.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Maps.dll' diff --git a/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 b/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 index e68557ff2567..172672cc3c5e 100644 --- a/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 +++ b/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.MarketplaceOrdering.dll' diff --git a/src/Media/Media/Az.Media.psd1 b/src/Media/Media/Az.Media.psd1 index c20dc5ff4a74..e48128de7635 100644 --- a/src/Media/Media/Az.Media.psd1 +++ b/src/Media/Media/Az.Media.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Media.dll' @@ -74,8 +74,8 @@ NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Media.dll') FunctionsToExport = @() # 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 = 'Sync-AzMediaServiceStorageKeys', 'Set-AzMediaServiceKey', - 'Get-AzMediaServiceKeys', 'Get-AzMediaServiceNameAvailability', +CmdletsToExport = 'Sync-AzMediaServiceStorageKey', 'Set-AzMediaServiceKey', + 'Get-AzMediaServiceKey', 'Get-AzMediaServiceNameAvailability', 'New-AzMediaServiceStorageConfig', 'Remove-AzMediaService', 'New-AzMediaService', 'Get-AzMediaService', 'Set-AzMediaService' @@ -83,7 +83,7 @@ CmdletsToExport = 'Sync-AzMediaServiceStorageKeys', 'Set-AzMediaServiceKey', # VariablesToExport = @() # Aliases 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 aliases to export. -AliasesToExport = @() +AliasesToExport = @('Sync-AzMediaServiceStorageKeys', 'Get-AzMediaServiceKeys') # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/Media/Media/ChangeLog.md b/src/Media/Media/ChangeLog.md index fc8e726492a2..d1b40615d1fa 100644 --- a/src/Media/Media/ChangeLog.md +++ b/src/Media/Media/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.0.0 * General availability of `Az.Media` module diff --git a/src/Media/Media/ServiceKey/GetAzureRmMediaServiceKeys.cs b/src/Media/Media/ServiceKey/GetAzureRmMediaServiceKeys.cs index ef776c659645..19910b595309 100644 --- a/src/Media/Media/ServiceKey/GetAzureRmMediaServiceKeys.cs +++ b/src/Media/Media/ServiceKey/GetAzureRmMediaServiceKeys.cs @@ -20,13 +20,16 @@ using Microsoft.Azure.Management.Media; using Microsoft.Azure.Management.Media.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Media.ServiceKey { /// /// List key information for accessing the REST endpoint associated with the media service. /// - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "MediaServiceKeys"), OutputType(typeof(PSServiceKeys))] + [GenericBreakingChange("Get-AzMediaServiceKeys alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "MediaServiceKey"), OutputType(typeof(PSServiceKeys))] + [Alias("Get-AzMediaServiceKeys")] public class GetAzureRmMediaServiceKeys : AzureMediaServiceCmdletBase { [Parameter( diff --git a/src/Media/Media/ServiceKey/SyncAzureRmMediaServiceStorageKeys.cs b/src/Media/Media/ServiceKey/SyncAzureRmMediaServiceStorageKeys.cs index ca343ac71cd0..96dba781adb4 100644 --- a/src/Media/Media/ServiceKey/SyncAzureRmMediaServiceStorageKeys.cs +++ b/src/Media/Media/ServiceKey/SyncAzureRmMediaServiceStorageKeys.cs @@ -19,13 +19,16 @@ using Microsoft.Azure.Management.Media; using Microsoft.Azure.Management.Media.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Media.ServiceKey { /// /// Synchronizes storage account keys for a storage account associated with the Media Service. /// - [Cmdlet("Sync", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "MediaServiceStorageKeys", SupportsShouldProcess = true), OutputType(typeof(bool))] + [GenericBreakingChange("Sync-AzMediaServiceStorageKeys alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Sync", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "MediaServiceStorageKey", SupportsShouldProcess = true), OutputType(typeof(bool))] + [Alias("Sync-AzMediaServiceStorageKeys")] public class SyncAzureRmMediaServiceStorageKeys : AzureMediaServiceCmdletBase { private const string SyncMediaServiceStorageKeysWhatIfMessage = "Sync MediaService storage keys"; diff --git a/src/Media/Media/help/Az.Media.md b/src/Media/Media/help/Az.Media.md index 605a6f72e647..5a057357d91c 100644 --- a/src/Media/Media/help/Az.Media.md +++ b/src/Media/Media/help/Az.Media.md @@ -14,7 +14,7 @@ This topic displays help topics for the Media Service web service feature in Azu ### [Get-AzMediaService](Get-AzMediaService.md) Gets information about a media service. -### [Get-AzMediaServiceKeys](Get-AzMediaServiceKeys.md) +### [Get-AzMediaServiceKey](Get-AzMediaServiceKey.md) Gets key information for accessing the REST endpoint associated with the media service. ### [Get-AzMediaServiceNameAvailability](Get-AzMediaServiceNameAvailability.md) @@ -36,6 +36,6 @@ Modifies specified properties of an existing media service. ### [Set-AzMediaServiceKey](Set-AzMediaServiceKey.md) Regenerates a key used for accessing the REST endpoint associated with the media service. -### [Sync-AzMediaServiceStorageKeys](Sync-AzMediaServiceStorageKeys.md) +### [Sync-AzMediaServiceStorageKey](Sync-AzMediaServiceStorageKey.md) Synchronizes storage account keys for a storage account associated with the media service. diff --git a/src/Media/Media/help/Get-AzMediaServiceKeys.md b/src/Media/Media/help/Get-AzMediaServiceKey.md similarity index 84% rename from src/Media/Media/help/Get-AzMediaServiceKeys.md rename to src/Media/Media/help/Get-AzMediaServiceKey.md index 6ee083a3a09c..b3036f3baad2 100644 --- a/src/Media/Media/help/Get-AzMediaServiceKeys.md +++ b/src/Media/Media/help/Get-AzMediaServiceKey.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.Media.dll-Help.xml Module Name: Az.Media ms.assetid: 2099938F-5325-416C-AE10-6813546A1055 -online version: https://docs.microsoft.com/en-us/powershell/module/az.media/get-azmediaservicekeys +online version: https://docs.microsoft.com/en-us/powershell/module/az.media/get-azmediaservicekey schema: 2.0.0 --- -# Get-AzMediaServiceKeys +# Get-AzMediaServiceKey ## SYNOPSIS Gets key information for accessing the REST endpoint associated with the media service. @@ -14,18 +14,18 @@ Gets key information for accessing the REST endpoint associated with the media s ## SYNTAX ``` -Get-AzMediaServiceKeys [-ResourceGroupName] [-AccountName] +Get-AzMediaServiceKey [-ResourceGroupName] [-AccountName] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzMediaServiceKeys** cmdlet gets key information for accessing the Representational State Transfer (REST) endpoint associated with the Azure media service. +The **Get-AzMediaServiceKey** cmdlet gets key information for accessing the Representational State Transfer (REST) endpoint associated with the Azure media service. ## EXAMPLES ### Example 1: Get the key information for accessing the media service ``` -PS C:\>Get-AzMediaServiceKeys -ResourceGroupName "ResourceGroup001" -AccountName "MediaService001" +PS C:\>Get-AzMediaServiceKey -ResourceGroupName "ResourceGroup001" -AccountName "MediaService001" ``` This command gets the key information for accessing the media service named MediaService001 that belongs to the resource group named ResourceGroup001. diff --git a/src/Media/Media/help/Sync-AzMediaServiceStorageKeys.md b/src/Media/Media/help/Sync-AzMediaServiceStorageKey.md similarity index 88% rename from src/Media/Media/help/Sync-AzMediaServiceStorageKeys.md rename to src/Media/Media/help/Sync-AzMediaServiceStorageKey.md index a08ca461a9ef..6653f51421a5 100644 --- a/src/Media/Media/help/Sync-AzMediaServiceStorageKeys.md +++ b/src/Media/Media/help/Sync-AzMediaServiceStorageKey.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.Media.dll-Help.xml Module Name: Az.Media ms.assetid: F395E192-80FA-421D-A389-8C5C0C2267E4 -online version: https://docs.microsoft.com/en-us/powershell/module/az.media/sync-azmediaservicestoragekeys +online version: https://docs.microsoft.com/en-us/powershell/module/az.media/sync-azmediaservicestoragekey schema: 2.0.0 --- -# Sync-AzMediaServiceStorageKeys +# Sync-AzMediaServiceStorageKey ## SYNOPSIS Synchronizes storage account keys for a storage account associated with the media service. @@ -14,20 +14,20 @@ Synchronizes storage account keys for a storage account associated with the medi ## SYNTAX ``` -Sync-AzMediaServiceStorageKeys [-ResourceGroupName] [-AccountName] +Sync-AzMediaServiceStorageKey [-ResourceGroupName] [-AccountName] [-StorageAccountId] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Sync-AzMediaServiceStorageKeys** cmdlet synchronizes storage account keys for a storage account associated with the media service. +The **Sync-AzMediaServiceStorageKey** cmdlet synchronizes storage account keys for a storage account associated with the media service. ## EXAMPLES ### Example 1: Synchronize storage account keys for a storage account associated with the media service ``` PS C:\>$StorageAccount = Get-AzStorageAccount -ResourceGroupName "ResourceGroup001" -Name "Storage135" -PS C:\> Sync-AzMediaServiceStorageKeys -ResourceGroupName "ResourceGroup001" -AccoutName "MediasService001" -StorageAccoutId $StorageAccount.Id +PS C:\> Sync-AzMediaServiceStorageKey -ResourceGroupName "ResourceGroup001" -AccoutName "MediasService001" -StorageAccoutId $StorageAccount.Id ``` The first command uses the Get-AzStorageAccount cmdlet to get the storage account named Storage135 that belongs to ResourceGroup001 and stores the result in the variable named $StorageAccount. diff --git a/src/Monitor/Monitor/Az.Monitor.psd1 b/src/Monitor/Monitor/Az.Monitor.psd1 index f9174815b521..269e86eb85f4 100644 --- a/src/Monitor/Monitor/Az.Monitor.psd1 +++ b/src/Monitor/Monitor/Az.Monitor.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Monitor.dll' diff --git a/src/Monitor/Monitor/help/New-AzActionGroup.md b/src/Monitor/Monitor/help/New-AzActionGroup.md index 09fb0a680677..85a79c71c4d9 100644 --- a/src/Monitor/Monitor/help/New-AzActionGroup.md +++ b/src/Monitor/Monitor/help/New-AzActionGroup.md @@ -28,7 +28,7 @@ The **New-AzActionGroup** cmdlet creates an action group reference object in mem ``` PS C:\>$dict = New-Object "System.Collections.Generic.Dictionary``2[System.String,System.String]" PS C:\>$dict.Add('key1', 'value1') -PS C:\>$actionGrp1 = New-AzActionGroup -ActionGroupId 'actiongr1' -WebhookProperties $dict +PS C:\>$actionGrp1 = New-AzActionGroup -ActionGroupId 'actiongr1' -WebhookProperty $dict ``` ## PARAMETERS diff --git a/src/Network/Network/ApplicationGateway/BackendHttpSettings/AddAzureApplicationGatewayBackendHttpSettingsCommand.cs b/src/Network/Network/ApplicationGateway/BackendHttpSettings/AddAzureApplicationGatewayBackendHttpSettingsCommand.cs index 147e7989e366..be8aa74acb91 100644 --- a/src/Network/Network/ApplicationGateway/BackendHttpSettings/AddAzureApplicationGatewayBackendHttpSettingsCommand.cs +++ b/src/Network/Network/ApplicationGateway/BackendHttpSettings/AddAzureApplicationGatewayBackendHttpSettingsCommand.cs @@ -13,13 +13,16 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.Network.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System; using System.Linq; using System.Management.Automation; namespace Microsoft.Azure.Commands.Network { - [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayBackendHttpSettings"), OutputType(typeof(PSApplicationGateway))] + [GenericBreakingChange("Add-AzApplicationGatewayBackendHttpSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayBackendHttpSetting"), OutputType(typeof(PSApplicationGateway))] + [Alias("Add-AzApplicationGatewayBackendHttpSettings")] public class AddAzureApplicationGatewayBackendHttpSettingsCommand : AzureApplicationGatewayBackendHttpSettingsBase { [Parameter( diff --git a/src/Network/Network/ApplicationGateway/BackendHttpSettings/GetAzureApplicationGatewayBackendHttpSettingsCommand.cs b/src/Network/Network/ApplicationGateway/BackendHttpSettings/GetAzureApplicationGatewayBackendHttpSettingsCommand.cs index d8341dbe7c6c..9ed92df79dca 100644 --- a/src/Network/Network/ApplicationGateway/BackendHttpSettings/GetAzureApplicationGatewayBackendHttpSettingsCommand.cs +++ b/src/Network/Network/ApplicationGateway/BackendHttpSettings/GetAzureApplicationGatewayBackendHttpSettingsCommand.cs @@ -13,13 +13,16 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.Network.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Collections.Generic; using System.Linq; using System.Management.Automation; namespace Microsoft.Azure.Commands.Network { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayBackendHttpSettings"),OutputType(typeof(PSApplicationGatewayBackendHttpSettings))] + [GenericBreakingChange("Get-AzApplicationGatewayBackendHttpSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayBackendHttpSetting"),OutputType(typeof(PSApplicationGatewayBackendHttpSettings))] + [Alias("Get-AzApplicationGatewayBackendHttpSettings")] public class GetAzureApplicationGatewayBackendHttpSettings : NetworkBaseCmdlet { [Parameter( diff --git a/src/Network/Network/ApplicationGateway/BackendHttpSettings/NewAzureApplicationGatewayBackendHttpSettingsCommand.cs b/src/Network/Network/ApplicationGateway/BackendHttpSettings/NewAzureApplicationGatewayBackendHttpSettingsCommand.cs index 60be6b17fdae..61c6aedd92c9 100644 --- a/src/Network/Network/ApplicationGateway/BackendHttpSettings/NewAzureApplicationGatewayBackendHttpSettingsCommand.cs +++ b/src/Network/Network/ApplicationGateway/BackendHttpSettings/NewAzureApplicationGatewayBackendHttpSettingsCommand.cs @@ -13,11 +13,14 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.Network.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.Network { - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayBackendHttpSettings"), OutputType(typeof(PSApplicationGatewayBackendHttpSettings))] + [GenericBreakingChange("New-AzApplicationGatewayBackendHttpSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayBackendHttpSetting"), OutputType(typeof(PSApplicationGatewayBackendHttpSettings))] + [Alias("New-AzApplicationGatewayBackendHttpSettings")] public class NewAzureApplicationGatewayBackendHttpSettingsCommand : AzureApplicationGatewayBackendHttpSettingsBase { public override void ExecuteCmdlet() diff --git a/src/Network/Network/ApplicationGateway/BackendHttpSettings/RemoveAzureApplicationGatewayBackendHttpSettingsCommand.cs b/src/Network/Network/ApplicationGateway/BackendHttpSettings/RemoveAzureApplicationGatewayBackendHttpSettingsCommand.cs index 7527f542f3a1..e282a14a62c3 100644 --- a/src/Network/Network/ApplicationGateway/BackendHttpSettings/RemoveAzureApplicationGatewayBackendHttpSettingsCommand.cs +++ b/src/Network/Network/ApplicationGateway/BackendHttpSettings/RemoveAzureApplicationGatewayBackendHttpSettingsCommand.cs @@ -13,12 +13,15 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.Network.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Linq; using System.Management.Automation; namespace Microsoft.Azure.Commands.Network { - [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayBackendHttpSettings"), OutputType(typeof(PSApplicationGateway))] + [GenericBreakingChange("Remove-AzApplicationGatewayBackendHttpSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayBackendHttpSetting"), OutputType(typeof(PSApplicationGateway))] + [Alias("Remove-AzApplicationGatewayBackendHttpSettings")] public class RemoveAzureApplicationGatewayBackendHttpSettingsCommand : NetworkBaseCmdlet { [Parameter( diff --git a/src/Network/Network/ApplicationGateway/BackendHttpSettings/SetAzureApplicationGatewayBackendHttpSettingsCommand.cs b/src/Network/Network/ApplicationGateway/BackendHttpSettings/SetAzureApplicationGatewayBackendHttpSettingsCommand.cs index 918f2274fdae..cedfa2527274 100644 --- a/src/Network/Network/ApplicationGateway/BackendHttpSettings/SetAzureApplicationGatewayBackendHttpSettingsCommand.cs +++ b/src/Network/Network/ApplicationGateway/BackendHttpSettings/SetAzureApplicationGatewayBackendHttpSettingsCommand.cs @@ -13,13 +13,16 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.Network.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System; using System.Linq; using System.Management.Automation; namespace Microsoft.Azure.Commands.Network { - [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayBackendHttpSettings"), OutputType(typeof(PSApplicationGateway))] + [GenericBreakingChange("Set-AzApplicationGatewayBackendHttpSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayBackendHttpSetting"), OutputType(typeof(PSApplicationGateway))] + [Alias("Set-AzApplicationGatewayBackendHttpSettings")] public class SetAzureApplicationGatewayBackendHttpSettingsCommand : AzureApplicationGatewayBackendHttpSettingsBase { [Parameter( diff --git a/src/Network/Network/ApplicationGateway/GetAzureApplicationGatewayAvailableSslOptions.cs b/src/Network/Network/ApplicationGateway/GetAzureApplicationGatewayAvailableSslOptions.cs index af5335d8af56..6d835f21c348 100644 --- a/src/Network/Network/ApplicationGateway/GetAzureApplicationGatewayAvailableSslOptions.cs +++ b/src/Network/Network/ApplicationGateway/GetAzureApplicationGatewayAvailableSslOptions.cs @@ -17,14 +17,16 @@ using Microsoft.Azure.Commands.Network.Models; using Microsoft.Azure.Management.Network; using Microsoft.WindowsAzure.Commands.Common; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.IO; using System.Management.Automation; using System.Reflection; namespace Microsoft.Azure.Commands.Network { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayAvailableSslOptions"), OutputType(typeof(PSApplicationGatewayAvailableSslOptions))] - [Alias("List-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayAvailableSslOptions")] + [GenericBreakingChange("Get-AzApplicationGatewayAvailableSslOptions alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayAvailableSslOption"), OutputType(typeof(PSApplicationGatewayAvailableSslOptions))] + [Alias("List-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayAvailableSslOptions", "Get-AzApplicationGatewayAvailableSslOptions")] public class GetAzureApplicationGatewayAvailableSslOptions : ApplicationGatewayBaseCmdlet { public override void ExecuteCmdlet() diff --git a/src/Network/Network/ApplicationGateway/GetAzureApplicationGatewayAvailableWafRuleSets.cs b/src/Network/Network/ApplicationGateway/GetAzureApplicationGatewayAvailableWafRuleSets.cs index fd13641ee0e4..df177e5778a0 100644 --- a/src/Network/Network/ApplicationGateway/GetAzureApplicationGatewayAvailableWafRuleSets.cs +++ b/src/Network/Network/ApplicationGateway/GetAzureApplicationGatewayAvailableWafRuleSets.cs @@ -18,14 +18,16 @@ using Microsoft.Azure.Commands.Network.Models; using Microsoft.Azure.Management.Network; using Microsoft.WindowsAzure.Commands.Common; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.IO; using System.Management.Automation; using System.Reflection; namespace Microsoft.Azure.Commands.Network { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayAvailableWafRuleSets"), OutputType(typeof(PSApplicationGatewayAvailableWafRuleSetsResult))] - [Alias("List-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayAvailableWafRuleSets")] + [GenericBreakingChange("Get-AzApplicationGatewayAvailableWafRuleSets alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayAvailableWafRuleSet"), OutputType(typeof(PSApplicationGatewayAvailableWafRuleSetsResult))] + [Alias("List-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayAvailableWafRuleSets", "Get-AzApplicationGatewayAvailableWafRuleSets")] public class GetAzureApplicationGatewayAvailableWafRuleSets : ApplicationGatewayBaseCmdlet { public override void ExecuteCmdlet() diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index 9c4623beb9ef..17589e966786 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.Management.Network.dll' @@ -83,18 +83,18 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate', 'New-AzApplicationGatewayAutoscaleConfiguration', 'Remove-AzApplicationGatewayAutoscaleConfiguration', 'Set-AzApplicationGatewayAutoscaleConfiguration', - 'Get-AzApplicationGatewayAvailableWafRuleSets', - 'Get-AzApplicationGatewayAvailableSslOptions', + 'Get-AzApplicationGatewayAvailableWafRuleSet', + 'Get-AzApplicationGatewayAvailableSslOption', 'Add-AzApplicationGatewayBackendAddressPool', 'Get-AzApplicationGatewayBackendAddressPool', 'New-AzApplicationGatewayBackendAddressPool', 'Remove-AzApplicationGatewayBackendAddressPool', 'Set-AzApplicationGatewayBackendAddressPool', - 'Add-AzApplicationGatewayBackendHttpSettings', - 'Get-AzApplicationGatewayBackendHttpSettings', - 'New-AzApplicationGatewayBackendHttpSettings', - 'Remove-AzApplicationGatewayBackendHttpSettings', - 'Set-AzApplicationGatewayBackendHttpSettings', + 'Add-AzApplicationGatewayBackendHttpSetting', + 'Get-AzApplicationGatewayBackendHttpSetting', + 'New-AzApplicationGatewayBackendHttpSetting', + 'Remove-AzApplicationGatewayBackendHttpSetting', + 'Set-AzApplicationGatewayBackendHttpSetting', 'Get-AzApplicationGatewayConnectionDraining', 'New-AzApplicationGatewayConnectionDraining', 'Remove-AzApplicationGatewayConnectionDraining', @@ -203,7 +203,7 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate', 'Move-AzExpressRouteCircuit', 'Get-AzExpressRouteCircuitARPTable', 'Get-AzExpressRouteCircuitRouteTable', 'Get-AzExpressRouteCircuitRouteTableSummary', - 'Get-AzExpressRouteCircuitStats', + 'Get-AzExpressRouteCircuitStat', 'Add-AzLoadBalancerInboundNatPoolConfig', 'Get-AzLoadBalancerInboundNatPoolConfig', 'New-AzLoadBalancerInboundNatPoolConfig', @@ -402,7 +402,15 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate', AliasesToExport = 'List-AzApplicationGatewayAvailableWafRuleSets', 'List-AzApplicationGatewayAvailableSslOptions', 'List-AzApplicationGatewaySslPredefinedPolicy', - 'List-AzApplicationGatewayAvailableServerVariableAndHeader' + 'List-AzApplicationGatewayAvailableServerVariableAndHeader', + 'Add-AzApplicationGatewayBackendHttpSettings', + 'Get-AzApplicationGatewayBackendHttpSettings', + 'New-AzApplicationGatewayBackendHttpSettings', + 'Remove-AzApplicationGatewayBackendHttpSettings', + 'Set-AzApplicationGatewayBackendHttpSettings', + 'Get-AzExpressRouteCircuitStats', + 'Get-AzApplicationGatewayAvailableWafRuleSets', + 'Get-AzApplicationGatewayAvailableSslOptions' # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 2921988e7360..7ce9d65e5c80 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 ---> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.6.0 * Add Alert action type for Azure Firewall Network and Application Rule Collections diff --git a/src/Network/Network/ExpressRouteCircuit/Stats/GetAzureExpressRouteStatsCommand.cs b/src/Network/Network/ExpressRouteCircuit/Stats/GetAzureExpressRouteStatsCommand.cs index 7249b2d6150f..22c85d510731 100644 --- a/src/Network/Network/ExpressRouteCircuit/Stats/GetAzureExpressRouteStatsCommand.cs +++ b/src/Network/Network/ExpressRouteCircuit/Stats/GetAzureExpressRouteStatsCommand.cs @@ -17,10 +17,13 @@ using Microsoft.Azure.Commands.Network.Models; using MNM = Microsoft.Azure.Management.Network.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Network { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ExpressRouteCircuitStats"), OutputType(typeof(PSExpressRouteCircuitStats))] + [GenericBreakingChange("Get-AzExpressRouteCircuitStats alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ExpressRouteCircuitStat"), OutputType(typeof(PSExpressRouteCircuitStats))] + [Alias("Get-AzExpressRouteCircuitStats")] public class GetAzureExpressRouteCircuitStatsCommand : NetworkBaseCmdlet { [Parameter( diff --git a/src/Network/Network/help/Add-AzApplicationGatewayBackendHttpSettings.md b/src/Network/Network/help/Add-AzApplicationGatewayBackendHttpSetting.md similarity index 88% rename from src/Network/Network/help/Add-AzApplicationGatewayBackendHttpSettings.md rename to src/Network/Network/help/Add-AzApplicationGatewayBackendHttpSetting.md index 6afc0a3cdc6f..2e965b49f33c 100644 --- a/src/Network/Network/help/Add-AzApplicationGatewayBackendHttpSettings.md +++ b/src/Network/Network/help/Add-AzApplicationGatewayBackendHttpSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: https://docs.microsoft.com/en-us/powershell/module/az.network/add-azapplicationgatewaybackendhttpsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/add-azapplicationgatewaybackendhttpsetting schema: 2.0.0 --- -# Add-AzApplicationGatewayBackendHttpSettings +# Add-AzApplicationGatewayBackendHttpSetting ## SYNOPSIS Adds back-end HTTP settings to an application gateway. @@ -13,7 +13,7 @@ Adds back-end HTTP settings to an application gateway. ## SYNTAX ``` -Add-AzApplicationGatewayBackendHttpSettings -ApplicationGateway -Name +Add-AzApplicationGatewayBackendHttpSetting -ApplicationGateway -Name -Port -Protocol -CookieBasedAffinity [-RequestTimeout ] [-ConnectionDraining ] [-ProbeId ] [-Probe ] @@ -24,7 +24,7 @@ Add-AzApplicationGatewayBackendHttpSettings -ApplicationGateway $AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" -PS C:\> $AppGw = Add-AzApplicationGatewayBackendHttpSettings -ApplicationGateway $AppGw -Name "Setting02" -Port 88 -Protocol "HTTP" -CookieBasedAffinity "Disabled" +PS C:\> $AppGw = Add-AzApplicationGatewayBackendHttpSetting -ApplicationGateway $AppGw -Name "Setting02" -Port 88 -Protocol "HTTP" -CookieBasedAffinity "Disabled" ``` The first command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the $AppGw variable.The second command adds back-end HTTP settings to the application gateway, setting the port to 88 and the protocol to HTTP and names the settings Setting02. @@ -299,11 +299,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzApplicationGatewayBackendHttpSettings](./Get-AzApplicationGatewayBackendHttpSettings.md) +[Get-AzApplicationGatewayBackendHttpSetting](./Get-AzApplicationGatewayBackendHttpSetting.md) -[New-AzApplicationGatewayBackendHttpSettings](./New-AzApplicationGatewayBackendHttpSettings.md) +[New-AzApplicationGatewayBackendHttpSetting](./New-AzApplicationGatewayBackendHttpSetting.md) -[Remove-AzApplicationGatewayBackendHttpSettings](./Remove-AzApplicationGatewayBackendHttpSettings.md) +[Remove-AzApplicationGatewayBackendHttpSetting](./Remove-AzApplicationGatewayBackendHttpSetting.md) -[Set-AzApplicationGatewayBackendHttpSettings](./Set-AzApplicationGatewayBackendHttpSettings.md) +[Set-AzApplicationGatewayBackendHttpSetting](./Set-AzApplicationGatewayBackendHttpSetting.md) diff --git a/src/Network/Network/help/Az.Network.md b/src/Network/Network/help/Az.Network.md index 3adb90772523..971006777924 100644 --- a/src/Network/Network/help/Az.Network.md +++ b/src/Network/Network/help/Az.Network.md @@ -17,7 +17,7 @@ Adds an authentication certificate to an application gateway. ### [Add-AzApplicationGatewayBackendAddressPool](Add-AzApplicationGatewayBackendAddressPool.md) Adds a back-end address pool to an application gateway. -### [Add-AzApplicationGatewayBackendHttpSettings](Add-AzApplicationGatewayBackendHttpSettings.md) +### [Add-AzApplicationGatewayBackendHttpSetting](Add-AzApplicationGatewayBackendHttpSetting.md) Adds back-end HTTP settings to an application gateway. ### [Add-AzApplicationGatewayCustomError](Add-AzApplicationGatewayCustomError.md) @@ -137,10 +137,10 @@ Gets an authentication certificate for an application gateway. ### [Get-AzApplicationGatewayAutoscaleConfiguration](Get-AzApplicationGatewayAutoscaleConfiguration.md) Gets the Autoscale Configuration of the Application Gateway. -### [Get-AzApplicationGatewayAvailableSslOptions](Get-AzApplicationGatewayAvailableSslOptions.md) +### [Get-AzApplicationGatewayAvailableSslOption](Get-AzApplicationGatewayAvailableSslOption.md) Gets all available ssl options for ssl policy for Application Gateway. -### [Get-AzApplicationGatewayAvailableWafRuleSets](Get-AzApplicationGatewayAvailableWafRuleSets.md) +### [Get-AzApplicationGatewayAvailableWafRuleSet](Get-AzApplicationGatewayAvailableWafRuleSet.md) Gets all available web application firewall rule sets. ### [Get-AzApplicationGatewayAvailableServerVariableAndHeader](Get-AzApplicationGatewayAvailableServerVariableAndHeader.md) @@ -152,7 +152,7 @@ Gets a back-end address pool for an application gateway. ### [Get-AzApplicationGatewayBackendHealth](Get-AzApplicationGatewayBackendHealth.md) Gets application gateway backend health. -### [Get-AzApplicationGatewayBackendHttpSettings](Get-AzApplicationGatewayBackendHttpSettings.md) +### [Get-AzApplicationGatewayBackendHttpSetting](Get-AzApplicationGatewayBackendHttpSetting.md) Gets the back-end HTTP settings of an application gateway. ### [Get-AzApplicationGatewayConnectionDraining](Get-AzApplicationGatewayConnectionDraining.md) @@ -257,7 +257,7 @@ Gets a route table from an ExpressRoute circuit. ### [Get-AzExpressRouteCircuitRouteTableSummary](Get-AzExpressRouteCircuitRouteTableSummary.md) Gets a route table summary of an ExpressRoute circuit. -### [Get-AzExpressRouteCircuitStats](Get-AzExpressRouteCircuitStats.md) +### [Get-AzExpressRouteCircuitStat](Get-AzExpressRouteCircuitStat.md) Gets usage statistics of an ExpressRoute circuit. ### [Get-AzExpressRouteConnection](Get-AzExpressRouteConnection.md) @@ -506,7 +506,7 @@ Creates a Autoscale Configuration for the Application Gateway. ### [New-AzApplicationGatewayBackendAddressPool](New-AzApplicationGatewayBackendAddressPool.md) Creates a back-end address pool for an application gateway. -### [New-AzApplicationGatewayBackendHttpSettings](New-AzApplicationGatewayBackendHttpSettings.md) +### [New-AzApplicationGatewayBackendHttpSetting](New-AzApplicationGatewayBackendHttpSetting.md) Creates back-end HTTP settings for an application gateway. ### [New-AzApplicationGatewayConnectionDraining](New-AzApplicationGatewayConnectionDraining.md) @@ -808,7 +808,7 @@ Removes Autoscale Configuration from an application gateway. ### [Remove-AzApplicationGatewayBackendAddressPool](Remove-AzApplicationGatewayBackendAddressPool.md) Removes a back-end address pool from an application gateway. -### [Remove-AzApplicationGatewayBackendHttpSettings](Remove-AzApplicationGatewayBackendHttpSettings.md) +### [Remove-AzApplicationGatewayBackendHttpSetting](Remove-AzApplicationGatewayBackendHttpSetting.md) Removes back-end HTTP settings from an application gateway. ### [Remove-AzApplicationGatewayConnectionDraining](Remove-AzApplicationGatewayConnectionDraining.md) @@ -1048,7 +1048,7 @@ Updates Autoscale Configuration of an application gateway. ### [Set-AzApplicationGatewayBackendAddressPool](Set-AzApplicationGatewayBackendAddressPool.md) Updates a back-end address pool for an application gateway. -### [Set-AzApplicationGatewayBackendHttpSettings](Set-AzApplicationGatewayBackendHttpSettings.md) +### [Set-AzApplicationGatewayBackendHttpSetting](Set-AzApplicationGatewayBackendHttpSetting.md) Updates back-end HTTP settings for an application gateway. ### [Set-AzApplicationGatewayConnectionDraining](Set-AzApplicationGatewayConnectionDraining.md) diff --git a/src/Network/Network/help/Get-AzApplicationGatewayAvailableSslOptions.md b/src/Network/Network/help/Get-AzApplicationGatewayAvailableSslOption.md similarity index 77% rename from src/Network/Network/help/Get-AzApplicationGatewayAvailableSslOptions.md rename to src/Network/Network/help/Get-AzApplicationGatewayAvailableSslOption.md index 5e52dae9e5a3..57c1c3c5dfe7 100644 --- a/src/Network/Network/help/Get-AzApplicationGatewayAvailableSslOptions.md +++ b/src/Network/Network/help/Get-AzApplicationGatewayAvailableSslOption.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-azapplicationgatewayavailablessloptions +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-azapplicationgatewayavailablessloption schema: 2.0.0 --- -# Get-AzApplicationGatewayAvailableSslOptions +# Get-AzApplicationGatewayAvailableSslOption ## SYNOPSIS Gets all available ssl options for ssl policy for Application Gateway. @@ -13,17 +13,17 @@ Gets all available ssl options for ssl policy for Application Gateway. ## SYNTAX ``` -Get-AzApplicationGatewayAvailableSslOptions [-DefaultProfile ] [] +Get-AzApplicationGatewayAvailableSslOption [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzApplicationGatewayAvailableSslOptions** cmdlet gets all available ssl options for ssl policy +The **Get-AzApplicationGatewayAvailableSslOption** cmdlet gets all available ssl options for ssl policy ## EXAMPLES ### Example 1 ``` -PS C:\>$sslOptions = Get-AzApplicationGatewayAvailableSslOptions +PS C:\>$sslOptions = Get-AzApplicationGatewayAvailableSslOption ``` This commands returns all available ssl options for ssl policy. diff --git a/src/Network/Network/help/Get-AzApplicationGatewayAvailableWafRuleSets.md b/src/Network/Network/help/Get-AzApplicationGatewayAvailableWafRuleSet.md similarity index 78% rename from src/Network/Network/help/Get-AzApplicationGatewayAvailableWafRuleSets.md rename to src/Network/Network/help/Get-AzApplicationGatewayAvailableWafRuleSet.md index a79a914f27b0..2675f29fc87b 100644 --- a/src/Network/Network/help/Get-AzApplicationGatewayAvailableWafRuleSets.md +++ b/src/Network/Network/help/Get-AzApplicationGatewayAvailableWafRuleSet.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-azapplicationgatewayavailablewafrulesets +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-azapplicationgatewayavailablewafruleset schema: 2.0.0 --- -# Get-AzApplicationGatewayAvailableWafRuleSets +# Get-AzApplicationGatewayAvailableWafRuleSet ## SYNOPSIS Gets all available web application firewall rule sets. @@ -13,17 +13,17 @@ Gets all available web application firewall rule sets. ## SYNTAX ``` -Get-AzApplicationGatewayAvailableWafRuleSets [-DefaultProfile ] [] +Get-AzApplicationGatewayAvailableWafRuleSet [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzApplicationGatewayAvailableWafRuleSets** cmdlet gets all available web application firewall rule sets. +The **Get-AzApplicationGatewayAvailableWafRuleSet** cmdlet gets all available web application firewall rule sets. ## EXAMPLES ### Example 1 ``` -PS C:\>$availableRuleSets = Get-AzApplicationGatewayAvailableWafRuleSets +PS C:\>$availableRuleSets = Get-AzApplicationGatewayAvailableWafRuleSet ``` This commands returns all the available web application firewall rule sets. @@ -57,6 +57,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult ## NOTES -**List-AzApplicationGatewayAvailableWafRuleSets** is an alias for the **Get-AzApplicationGatewayAvailableWafRuleSets** cmdlet. +**List-AzApplicationGatewayAvailableWafRuleSets** is an alias for the **Get-AzApplicationGatewayAvailableWafRuleSet** cmdlet. ## RELATED LINKS diff --git a/src/Network/Network/help/Get-AzApplicationGatewayBackendHttpSettings.md b/src/Network/Network/help/Get-AzApplicationGatewayBackendHttpSetting.md similarity index 77% rename from src/Network/Network/help/Get-AzApplicationGatewayBackendHttpSettings.md rename to src/Network/Network/help/Get-AzApplicationGatewayBackendHttpSetting.md index cbba1faa75b2..86dd88bcf7e7 100644 --- a/src/Network/Network/help/Get-AzApplicationGatewayBackendHttpSettings.md +++ b/src/Network/Network/help/Get-AzApplicationGatewayBackendHttpSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-azapplicationgatewaybackendhttpsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-azapplicationgatewaybackendhttpsetting schema: 2.0.0 --- -# Get-AzApplicationGatewayBackendHttpSettings +# Get-AzApplicationGatewayBackendHttpSetting ## SYNOPSIS Gets the back-end HTTP settings of an application gateway. @@ -13,19 +13,19 @@ Gets the back-end HTTP settings of an application gateway. ## SYNTAX ``` -Get-AzApplicationGatewayBackendHttpSettings [-Name ] -ApplicationGateway +Get-AzApplicationGatewayBackendHttpSetting [-Name ] -ApplicationGateway [-DefaultProfile ] [] ``` ## DESCRIPTION -The Get-AzApplicationGatewayBackendHttpSettings cmdlet gets the back-end HTTP settings of an application gateway. +The Get-AzApplicationGatewayBackendHttpSetting cmdlet gets the back-end HTTP settings of an application gateway. ## EXAMPLES ### Example 1: Get back-end HTTP settings by name ``` PS C:\>$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" -PS C:\> $Settings = Get-AzApplicationGatewayBackendHttpSettings -Name "Settings01" -ApplicationGateway $AppGw +PS C:\> $Settings = Get-AzApplicationGatewayBackendHttpSetting -Name "Settings01" -ApplicationGateway $AppGw ``` The first command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01, and stores it in the $AppGw variable.The second command gets the HTTP settings named Settings01 for $AppGw and stores the settings in the $Settings variable. @@ -33,7 +33,7 @@ The first command gets the application gateway named ApplicationGateway01 in the ### Example 2: Get a collection of back-end HTTP settings ``` PS C:\>$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" -PS C:\> $SettingsList = Get-AzApplicationGatewayBackendHttpSettings -ApplicationGateway $AppGw +PS C:\> $SettingsList = Get-AzApplicationGatewayBackendHttpSetting -ApplicationGateway $AppGw ``` The first command gets the application gateway named ApplicationGateway01 in the resource group named ResourceGroup01, and stores it in the $AppGw variable.The second command gets the collection of HTTP settings for $AppGw and stores the settings in the $SettingsList variable. @@ -100,11 +100,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Add-AzApplicationGatewayBackendHttpSettings](./Add-AzApplicationGatewayBackendHttpSettings.md) +[Add-AzApplicationGatewayBackendHttpSetting](./Add-AzApplicationGatewayBackendHttpSetting.md) -[New-AzApplicationGatewayBackendHttpSettings](./New-AzApplicationGatewayBackendHttpSettings.md) +[New-AzApplicationGatewayBackendHttpSetting](./New-AzApplicationGatewayBackendHttpSetting.md) -[Remove-AzApplicationGatewayBackendHttpSettings](./Remove-AzApplicationGatewayBackendHttpSettings.md) +[Remove-AzApplicationGatewayBackendHttpSetting](./Remove-AzApplicationGatewayBackendHttpSetting.md) -[Set-AzApplicationGatewayBackendHttpSettings](./Set-AzApplicationGatewayBackendHttpSettings.md) +[Set-AzApplicationGatewayBackendHttpSetting](./Set-AzApplicationGatewayBackendHttpSetting.md) diff --git a/src/Network/Network/help/Get-AzExpressRouteCircuitStats.md b/src/Network/Network/help/Get-AzExpressRouteCircuitStat.md similarity index 87% rename from src/Network/Network/help/Get-AzExpressRouteCircuitStats.md rename to src/Network/Network/help/Get-AzExpressRouteCircuitStat.md index b19cd1e6697c..3701922a33c4 100644 --- a/src/Network/Network/help/Get-AzExpressRouteCircuitStats.md +++ b/src/Network/Network/help/Get-AzExpressRouteCircuitStat.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network ms.assetid: CFE184E2-6DEF-4E92-A9C3-E82F29BB4FB8 -online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-azexpressroutecircuitstats +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-azexpressroutecircuitstat schema: 2.0.0 --- -# Get-AzExpressRouteCircuitStats +# Get-AzExpressRouteCircuitStat ## SYNOPSIS Gets usage statistics of an ExpressRoute circuit. @@ -14,12 +14,12 @@ Gets usage statistics of an ExpressRoute circuit. ## SYNTAX ``` -Get-AzExpressRouteCircuitStats -ResourceGroupName -ExpressRouteCircuitName +Get-AzExpressRouteCircuitStat -ResourceGroupName -ExpressRouteCircuitName [-PeeringType ] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzExpressRouteCircuitStats** cmdlet retrieves traffic statistics for an ExpressRoute +The **Get-AzExpressRouteCircuitStat** cmdlet retrieves traffic statistics for an ExpressRoute circuit. The statistics include the number of bytes sent and received over both the primary and secondary routes. @@ -27,7 +27,7 @@ secondary routes. ### Example 1: Display the traffic statistics for an ExpressRoute peer ``` -Get-AzExpressRouteCircuitStats -ResourceGroupName $RG -ExpressRouteCircuitName $CircuitName -PeeringType 'AzurePrivatePeering' +Get-AzExpressRouteCircuitStat -ResourceGroupName $RG -ExpressRouteCircuitName $CircuitName -PeeringType 'AzurePrivatePeering' ``` ## PARAMETERS diff --git a/src/Network/Network/help/New-AzApplicationGatewayBackendHttpSettings.md b/src/Network/Network/help/New-AzApplicationGatewayBackendHttpSetting.md similarity index 87% rename from src/Network/Network/help/New-AzApplicationGatewayBackendHttpSettings.md rename to src/Network/Network/help/New-AzApplicationGatewayBackendHttpSetting.md index 95021f95aeed..9832640397bd 100644 --- a/src/Network/Network/help/New-AzApplicationGatewayBackendHttpSettings.md +++ b/src/Network/Network/help/New-AzApplicationGatewayBackendHttpSetting.md @@ -1,19 +1,19 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: https://docs.microsoft.com/en-us/powershell/module/az.network/new-azapplicationgatewaybackendhttpsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/new-azapplicationgatewaybackendhttpsetting schema: 2.0.0 --- -# New-AzApplicationGatewayBackendHttpSettings +# New-AzApplicationGatewayBackendHttpSetting ## SYNOPSIS -Creates back-end HTTP settings for an application gateway. +Creates back-end HTTP setting for an application gateway. ## SYNTAX ``` -New-AzApplicationGatewayBackendHttpSettings -Name -Port -Protocol +New-AzApplicationGatewayBackendHttpSetting -Name -Port -Protocol -CookieBasedAffinity [-RequestTimeout ] [-ConnectionDraining ] [-ProbeId ] [-Probe ] @@ -24,14 +24,14 @@ New-AzApplicationGatewayBackendHttpSettings -Name -Port -Protoc ``` ## DESCRIPTION -The New-AzApplicationGatewayBackendHttpSettings cmdlet creates back-end HTTP settings for an application gateway. +The New-AzApplicationGatewayBackendHttpSetting cmdlet creates back-end HTTP settings for an application gateway. Back-end HTTP settings are applied to all back-end servers in a pool. ## EXAMPLES ### Example 1: Create back-end HTTP settings ``` -PS C:\>$Setting = New-AzApplicationGatewayBackendHttpSettings -Name "Setting01" -Port 80 -Protocol Http -CookieBasedAffinity Disabled +PS C:\>$Setting = New-AzApplicationGatewayBackendHttpSetting -Name "Setting01" -Port 80 -Protocol Http -CookieBasedAffinity Disabled ``` This command creates back-end HTTP settings named Setting01 on port 80, using the HTTP protocol, with cookie-based affinity disabled. @@ -283,11 +283,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Add-AzApplicationGatewayBackendHttpSettings](./Add-AzApplicationGatewayBackendHttpSettings.md) +[Add-AzApplicationGatewayBackendHttpSetting](./Add-AzApplicationGatewayBackendHttpSetting.md) -[Get-AzApplicationGatewayBackendHttpSettings](./Get-AzApplicationGatewayBackendHttpSettings.md) +[Get-AzApplicationGatewayBackendHttpSetting](./Get-AzApplicationGatewayBackendHttpSetting.md) -[Remove-AzApplicationGatewayBackendHttpSettings](./Remove-AzApplicationGatewayBackendHttpSettings.md) +[Remove-AzApplicationGatewayBackendHttpSetting](./Remove-AzApplicationGatewayBackendHttpSetting.md) -[Set-AzApplicationGatewayBackendHttpSettings](./Set-AzApplicationGatewayBackendHttpSettings.md) +[Set-AzApplicationGatewayBackendHttpSetting](./Set-AzApplicationGatewayBackendHttpSetting.md) diff --git a/src/Network/Network/help/Remove-AzApplicationGatewayBackendHttpSettings.md b/src/Network/Network/help/Remove-AzApplicationGatewayBackendHttpSetting.md similarity index 73% rename from src/Network/Network/help/Remove-AzApplicationGatewayBackendHttpSettings.md rename to src/Network/Network/help/Remove-AzApplicationGatewayBackendHttpSetting.md index e3fa2865a68f..a435a4a68ac2 100644 --- a/src/Network/Network/help/Remove-AzApplicationGatewayBackendHttpSettings.md +++ b/src/Network/Network/help/Remove-AzApplicationGatewayBackendHttpSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: https://docs.microsoft.com/en-us/powershell/module/az.network/remove-azapplicationgatewaybackendhttpsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/remove-azapplicationgatewaybackendhttpsetting schema: 2.0.0 --- -# Remove-AzApplicationGatewayBackendHttpSettings +# Remove-AzApplicationGatewayBackendHttpSetting ## SYNOPSIS Removes back-end HTTP settings from an application gateway. @@ -13,19 +13,19 @@ Removes back-end HTTP settings from an application gateway. ## SYNTAX ``` -Remove-AzApplicationGatewayBackendHttpSettings -Name -ApplicationGateway +Remove-AzApplicationGatewayBackendHttpSetting -Name -ApplicationGateway [-DefaultProfile ] [] ``` ## DESCRIPTION -The Remove-AzApplicationGatewayBackendHttpSettings cmdlet removes back-end Hypertext Transfer Protocol (HTTP) settings from an Azure application gateway. +The Remove-AzApplicationGatewayBackendHttpSetting cmdlet removes back-end Hypertext Transfer Protocol (HTTP) settings from an Azure application gateway. ## EXAMPLES ### Example 1: Remove back-end HTTP settings from an application gateway ``` PS C:\>$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" -PS C:\> Remove-AzApplicationGatewayBackendHttpSettings -ApplicationGateway $AppGw -Name "BackEndSetting02" +PS C:\> Remove-AzApplicationGatewayBackendHttpSetting -ApplicationGateway $AppGw -Name "BackEndSetting02" ``` The first command gets an application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the $AppGw variable. @@ -93,11 +93,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Add-AzApplicationGatewayBackendHttpSettings](./Add-AzApplicationGatewayBackendHttpSettings.md) +[Add-AzApplicationGatewayBackendHttpSetting](./Add-AzApplicationGatewayBackendHttpSetting.md) -[New-AzApplicationGatewayBackendHttpSettings](./New-AzApplicationGatewayBackendHttpSettings.md) +[New-AzApplicationGatewayBackendHttpSetting](./New-AzApplicationGatewayBackendHttpSetting.md) -[Get-AzApplicationGatewayBackendHttpSettings](./Get-AzApplicationGatewayBackendHttpSettings.md) +[Get-AzApplicationGatewayBackendHttpSetting](./Get-AzApplicationGatewayBackendHttpSetting.md) -[Set-AzApplicationGatewayBackendHttpSettings](./Set-AzApplicationGatewayBackendHttpSettings.md) +[Set-AzApplicationGatewayBackendHttpSetting](./Set-AzApplicationGatewayBackendHttpSetting.md) diff --git a/src/Network/Network/help/Set-AzApplicationGatewayBackendHttpSettings.md b/src/Network/Network/help/Set-AzApplicationGatewayBackendHttpSetting.md similarity index 88% rename from src/Network/Network/help/Set-AzApplicationGatewayBackendHttpSettings.md rename to src/Network/Network/help/Set-AzApplicationGatewayBackendHttpSetting.md index dd0ecb7ea916..d6e3ca2b1500 100644 --- a/src/Network/Network/help/Set-AzApplicationGatewayBackendHttpSettings.md +++ b/src/Network/Network/help/Set-AzApplicationGatewayBackendHttpSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: https://docs.microsoft.com/en-us/powershell/module/az.network/set-azapplicationgatewaybackendhttpsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/set-azapplicationgatewaybackendhttpsetting schema: 2.0.0 --- -# Set-AzApplicationGatewayBackendHttpSettings +# Set-AzApplicationGatewayBackendHttpSetting ## SYNOPSIS Updates back-end HTTP settings for an application gateway. @@ -13,7 +13,7 @@ Updates back-end HTTP settings for an application gateway. ## SYNTAX ``` -Set-AzApplicationGatewayBackendHttpSettings -ApplicationGateway -Name +Set-AzApplicationGatewayBackendHttpSetting -ApplicationGateway -Name -Port -Protocol -CookieBasedAffinity [-RequestTimeout ] [-ConnectionDraining ] [-ProbeId ] [-Probe ] @@ -24,7 +24,7 @@ Set-AzApplicationGatewayBackendHttpSettings -ApplicationGateway $AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" -PS C:\> $AppGw = Set-AzApplicationGatewayBackendHttpSettings -ApplicationGateway $AppGw -Name "Setting02" -Port 88 -Protocol "Http" -CookieBasedAffinity "Disabled" +PS C:\> $AppGw = Set-AzApplicationGatewayBackendHttpSetting -ApplicationGateway $AppGw -Name "Setting02" -Port 88 -Protocol "Http" -CookieBasedAffinity "Disabled" ``` The first command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the $AppGw variable. @@ -301,11 +301,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Add-AzApplicationGatewayBackendHttpSettings](./Add-AzApplicationGatewayBackendHttpSettings.md) +[Add-AzApplicationGatewayBackendHttpSetting](./Add-AzApplicationGatewayBackendHttpSetting.md) -[Get-AzApplicationGatewayBackendHttpSettings](./Get-AzApplicationGatewayBackendHttpSettings.md) +[Get-AzApplicationGatewayBackendHttpSetting](./Get-AzApplicationGatewayBackendHttpSetting.md) -[New-AzApplicationGatewayBackendHttpSettings](./New-AzApplicationGatewayBackendHttpSettings.md) +[New-AzApplicationGatewayBackendHttpSetting](./New-AzApplicationGatewayBackendHttpSetting.md) -[Remove-AzApplicationGatewayBackendHttpSettings](./Remove-AzApplicationGatewayBackendHttpSettings.md) +[Remove-AzApplicationGatewayBackendHttpSetting](./Remove-AzApplicationGatewayBackendHttpSetting.md) diff --git a/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 b/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 index 6f9f6088e788..80af13b09fb1 100644 --- a/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 +++ b/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.NotificationHubs.dll' @@ -74,19 +74,19 @@ NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll') FunctionsToExport = @() # 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 = 'Get-AzNotificationHub', 'Get-AzNotificationHubAuthorizationRules', - 'Get-AzNotificationHubListKeys', - 'Get-AzNotificationHubPNSCredentials', 'New-AzNotificationHub', - 'New-AzNotificationHubAuthorizationRules', +CmdletsToExport = 'Get-AzNotificationHub', 'Get-AzNotificationHubAuthorizationRule', + 'Get-AzNotificationHubListKey', + 'Get-AzNotificationHubPNSCredential', 'New-AzNotificationHub', + 'New-AzNotificationHubAuthorizationRule', 'New-AzNotificationHubKey', 'Remove-AzNotificationHub', - 'Remove-AzNotificationHubAuthorizationRules', - 'Set-AzNotificationHub', 'Set-AzNotificationHubAuthorizationRules', - 'Get-AzNotificationHubsNamespaceAuthorizationRules', - 'Get-AzNotificationHubsNamespaceListKeys', - 'New-AzNotificationHubsNamespaceAuthorizationRules', + 'Remove-AzNotificationHubAuthorizationRule', + 'Set-AzNotificationHub', 'Set-AzNotificationHubAuthorizationRule', + 'Get-AzNotificationHubsNamespaceAuthorizationRule', + 'Get-AzNotificationHubsNamespaceListKey', + 'New-AzNotificationHubsNamespaceAuthorizationRule', 'New-AzNotificationHubsNamespaceKey', - 'Remove-AzNotificationHubsNamespaceAuthorizationRules', - 'Set-AzNotificationHubsNamespaceAuthorizationRules', + 'Remove-AzNotificationHubsNamespaceAuthorizationRule', + 'Set-AzNotificationHubsNamespaceAuthorizationRule', 'Get-AzNotificationHubsNamespace', 'New-AzNotificationHubsNamespace', 'Remove-AzNotificationHubsNamespace', @@ -96,7 +96,13 @@ CmdletsToExport = 'Get-AzNotificationHub', 'Get-AzNotificationHubAuthorizationRu # VariablesToExport = @() # Aliases 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 aliases to export. -AliasesToExport = @() +AliasesToExport = 'Get-AzNotificationHubAuthorizationRules', 'Get-AzNotificationHubListKeys', + 'Get-AzNotificationHubPNSCredentials', 'Get-AzNotificationHubsNamespaceAuthorizationRules', + 'Get-AzNotificationHubsNamespaceListKeys', 'New-AzNotificationHubAuthorizationRules', + 'New-AzNotificationHubsNamespaceAuthorizationRules', 'Remove-AzNotificationHubAuthorizationRules', + 'Remove-AzNotificationHubsNamespaceAuthorizationRules', 'Set-AzNotificationHubAuthorizationRules', + 'Set-AzNotificationHubsNamespaceAuthorizationRules' + # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/NotificationHubs/NotificationHubs/ChangeLog.md b/src/NotificationHubs/NotificationHubs/ChangeLog.md index 4d796e5ef557..cec6904461f4 100644 --- a/src/NotificationHubs/NotificationHubs/ChangeLog.md +++ b/src/NotificationHubs/NotificationHubs/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.0.0 * General availability of `Az.NotificationHubs` module \ No newline at end of file diff --git a/src/NotificationHubs/NotificationHubs/Commands/Namespace/GetAzureNotificationHubsNamespaceAuthorizationRules.cs b/src/NotificationHubs/NotificationHubs/Commands/Namespace/GetAzureNotificationHubsNamespaceAuthorizationRules.cs index ae93dfad81c8..d110e9c8240b 100644 --- a/src/NotificationHubs/NotificationHubs/Commands/Namespace/GetAzureNotificationHubsNamespaceAuthorizationRules.cs +++ b/src/NotificationHubs/NotificationHubs/Commands/Namespace/GetAzureNotificationHubsNamespaceAuthorizationRules.cs @@ -14,14 +14,16 @@ using Microsoft.Azure.Commands.NotificationHubs.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Collections.Generic; using System.Linq; using System.Management.Automation; namespace Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace { - - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubsNamespaceAuthorizationRules"), OutputType(typeof(SharedAccessAuthorizationRuleAttributes))] + [GenericBreakingChange("Get-AzNotificationHubsNamespaceAuthorizationRules alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubsNamespaceAuthorizationRule"), OutputType(typeof(SharedAccessAuthorizationRuleAttributes))] + [Alias("Get-AzNotificationHubsNamespaceAuthorizationRules")] public class GetAzureNotificationHubsNamespaceAuthorizationRules : AzureNotificationHubsCmdletBase { [Parameter(Mandatory = true, diff --git a/src/NotificationHubs/NotificationHubs/Commands/Namespace/GetAzureNotificationHubsNamespaceListKeys.cs b/src/NotificationHubs/NotificationHubs/Commands/Namespace/GetAzureNotificationHubsNamespaceListKeys.cs index 8584528afd7e..a9827fc067c7 100644 --- a/src/NotificationHubs/NotificationHubs/Commands/Namespace/GetAzureNotificationHubsNamespaceListKeys.cs +++ b/src/NotificationHubs/NotificationHubs/Commands/Namespace/GetAzureNotificationHubsNamespaceListKeys.cs @@ -14,12 +14,14 @@ using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Management.NotificationHubs.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace { - - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubsNamespaceListKeys"), OutputType(typeof(ResourceListKeys))] + [GenericBreakingChange("Get-AzNotificationHubsNamespaceListKeys alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubsNamespaceListKey"), OutputType(typeof(ResourceListKeys))] + [Alias("Get-AzNotificationHubsNamespaceListKeys")] public class GetAzureNotificationHubsNamespaceListKeys : AzureNotificationHubsCmdletBase { [Parameter(Mandatory = true, diff --git a/src/NotificationHubs/NotificationHubs/Commands/Namespace/NewAzureNotificationHubsNamespaceAuthorizationRules.cs b/src/NotificationHubs/NotificationHubs/Commands/Namespace/NewAzureNotificationHubsNamespaceAuthorizationRules.cs index 1b11d26e6720..0cec53afe57c 100644 --- a/src/NotificationHubs/NotificationHubs/Commands/Namespace/NewAzureNotificationHubsNamespaceAuthorizationRules.cs +++ b/src/NotificationHubs/NotificationHubs/Commands/Namespace/NewAzureNotificationHubsNamespaceAuthorizationRules.cs @@ -14,12 +14,14 @@ using Microsoft.Azure.Commands.NotificationHubs.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace { - - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubsNamespaceAuthorizationRules", SupportsShouldProcess = true), OutputType(typeof(SharedAccessAuthorizationRuleAttributes))] + [GenericBreakingChange("New-AzNotificationHubsNamespaceAuthorizationRules alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubsNamespaceAuthorizationRule", SupportsShouldProcess = true), OutputType(typeof(SharedAccessAuthorizationRuleAttributes))] + [Alias("New-AzNotificationHubsNamespaceAuthorizationRules")] public class NewAzureNotificationHubsNamespaceAuthorizationRules : AzureNotificationHubsCmdletBase { [Parameter(Mandatory = true, diff --git a/src/NotificationHubs/NotificationHubs/Commands/Namespace/RemoveAzureNotificationHubsNamespaceAuthorizationRules.cs b/src/NotificationHubs/NotificationHubs/Commands/Namespace/RemoveAzureNotificationHubsNamespaceAuthorizationRules.cs index 2a50d8a13f17..6753503e650f 100644 --- a/src/NotificationHubs/NotificationHubs/Commands/Namespace/RemoveAzureNotificationHubsNamespaceAuthorizationRules.cs +++ b/src/NotificationHubs/NotificationHubs/Commands/Namespace/RemoveAzureNotificationHubsNamespaceAuthorizationRules.cs @@ -13,13 +13,15 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Globalization; using System.Management.Automation; namespace Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace { - - [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubsNamespaceAuthorizationRules", SupportsShouldProcess = true), OutputType(typeof(bool))] + [GenericBreakingChange("Remove-AzNotificationHubsNamespaceAuthorizationRules alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubsNamespaceAuthorizationRule", SupportsShouldProcess = true), OutputType(typeof(bool))] + [Alias("Remove-AzNotificationHubsNamespaceAuthorizationRules")] public class RemoveAzureNotificationHubsNamespaceAuthorizationRules : AzureNotificationHubsCmdletBase { [Parameter(Mandatory = true, diff --git a/src/NotificationHubs/NotificationHubs/Commands/Namespace/SetAzureNotificationHubsNamespaceAuthorizationRules.cs b/src/NotificationHubs/NotificationHubs/Commands/Namespace/SetAzureNotificationHubsNamespaceAuthorizationRules.cs index c8f7a2fdf906..3673fe3737a0 100644 --- a/src/NotificationHubs/NotificationHubs/Commands/Namespace/SetAzureNotificationHubsNamespaceAuthorizationRules.cs +++ b/src/NotificationHubs/NotificationHubs/Commands/Namespace/SetAzureNotificationHubsNamespaceAuthorizationRules.cs @@ -17,11 +17,13 @@ using System.Globalization; using System; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace { - - [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubsNamespaceAuthorizationRules", SupportsShouldProcess = true), OutputType(typeof(SharedAccessAuthorizationRuleAttributes))] + [GenericBreakingChange("Set-AzNotificationHubsNamespaceAuthorizationRules alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubsNamespaceAuthorizationRule", SupportsShouldProcess = true), OutputType(typeof(SharedAccessAuthorizationRuleAttributes))] + [Alias("Set-AzNotificationHubsNamespaceAuthorizationRules")] public class SetAzureNotificationHubsNamespaceAuthorizationRules : AzureNotificationHubsCmdletBase { [Parameter(Mandatory = true, diff --git a/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/GetAzureNotificationHubAuthorizationRules.cs b/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/GetAzureNotificationHubAuthorizationRules.cs index 4ea63628735a..dacb2f052e6a 100644 --- a/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/GetAzureNotificationHubAuthorizationRules.cs +++ b/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/GetAzureNotificationHubAuthorizationRules.cs @@ -14,14 +14,16 @@ using Microsoft.Azure.Commands.NotificationHubs.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Collections.Generic; using System.Linq; using System.Management.Automation; namespace Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub { - - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubAuthorizationRules"), OutputType(typeof(SharedAccessAuthorizationRuleAttributes))] + [GenericBreakingChange("Get-AzNotificationHubAuthorizationRules alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubAuthorizationRule"), OutputType(typeof(SharedAccessAuthorizationRuleAttributes))] + [Alias("Get-AzNotificationHubAuthorizationRules")] public class GetAzureNotificationHubAuthorizationRules : AzureNotificationHubsCmdletBase { [Parameter(Mandatory = true, diff --git a/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/GetAzureNotificationHubListKeys.cs b/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/GetAzureNotificationHubListKeys.cs index 53f1cf06f7ee..fd2293afa2a4 100644 --- a/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/GetAzureNotificationHubListKeys.cs +++ b/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/GetAzureNotificationHubListKeys.cs @@ -14,12 +14,14 @@ using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Management.NotificationHubs.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub { - - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubListKeys"), OutputType(typeof(ResourceListKeys))] + [GenericBreakingChange("Get-AzNotificationHubListKeys alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubListKey"), OutputType(typeof(ResourceListKeys))] + [Alias("Get-AzNotificationHubListKeys")] public class GetAzureNotificationHubListKeys : AzureNotificationHubsCmdletBase { [Parameter(Mandatory = true, diff --git a/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/GetAzureNotificationHubPNSCredentials.cs b/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/GetAzureNotificationHubPNSCredentials.cs index 8313b4dafffd..7692fbc67f3a 100644 --- a/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/GetAzureNotificationHubPNSCredentials.cs +++ b/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/GetAzureNotificationHubPNSCredentials.cs @@ -14,12 +14,14 @@ using Microsoft.Azure.Commands.NotificationHubs.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub { - - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubPNSCredentials"), OutputType(typeof(NotificationHubAttributes))] + [GenericBreakingChange("Get-AzNotificationHubPNSCredentials alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubPNSCredential"), OutputType(typeof(NotificationHubAttributes))] + [Alias("Get-AzNotificationHubPNSCredentials")] public class GetAzureNotificationHubPNSCredentials : AzureNotificationHubsCmdletBase { [Parameter(Mandatory = true, diff --git a/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/NewAzureNotificationHubAuthorizationRules.cs b/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/NewAzureNotificationHubAuthorizationRules.cs index 0b82b4dec550..4c05484d210d 100644 --- a/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/NewAzureNotificationHubAuthorizationRules.cs +++ b/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/NewAzureNotificationHubAuthorizationRules.cs @@ -14,12 +14,14 @@ using Microsoft.Azure.Commands.NotificationHubs.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub { - - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubAuthorizationRules", SupportsShouldProcess = true), OutputType(typeof(SharedAccessAuthorizationRuleAttributes))] + [GenericBreakingChange("New-AzNotificationHubAuthorizationRules alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubAuthorizationRule", SupportsShouldProcess = true), OutputType(typeof(SharedAccessAuthorizationRuleAttributes))] + [Alias("New-AzNotificationHubAuthorizationRules")] public class NewAzureNotificationHubAuthorizationRules : AzureNotificationHubsCmdletBase { [Parameter(Mandatory = true, diff --git a/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/RemoveAzureNotificationHubAuthorizationRules.cs b/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/RemoveAzureNotificationHubAuthorizationRules.cs index 15dc031f15ea..9e418874cfc4 100644 --- a/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/RemoveAzureNotificationHubAuthorizationRules.cs +++ b/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/RemoveAzureNotificationHubAuthorizationRules.cs @@ -13,13 +13,15 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Globalization; using System.Management.Automation; namespace Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub { - - [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubAuthorizationRules", SupportsShouldProcess = true), OutputType(typeof(void))] + [GenericBreakingChange("Remove-AzNotificationHubAuthorizationRules alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubAuthorizationRule", SupportsShouldProcess = true), OutputType(typeof(void))] + [Alias("Remove-AzNotificationHubAuthorizationRules")] public class RemoveAzureNotificationHubAuthorizationRules : AzureNotificationHubsCmdletBase { [Parameter(Mandatory = true, diff --git a/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/SetAzureNotificationHubAuthorizationRules.cs b/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/SetAzureNotificationHubAuthorizationRules.cs index 7a8934492aec..f81e0947aeaa 100644 --- a/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/SetAzureNotificationHubAuthorizationRules.cs +++ b/src/NotificationHubs/NotificationHubs/Commands/NotificationHub/SetAzureNotificationHubAuthorizationRules.cs @@ -17,11 +17,13 @@ using System.Globalization; using System; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub { - - [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubAuthorizationRules", SupportsShouldProcess = true), OutputType(typeof(SharedAccessAuthorizationRuleAttributes))] + [GenericBreakingChange("Set-AzNotificationHubAuthorizationRules alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NotificationHubAuthorizationRule", SupportsShouldProcess = true), OutputType(typeof(SharedAccessAuthorizationRuleAttributes))] + [Alias("Set-AzNotificationHubAuthorizationRules")] public class SetAzureNotificationHubAuthorizationRules : AzureNotificationHubsCmdletBase { [Parameter(Mandatory = true, diff --git a/src/NotificationHubs/NotificationHubs/help/Az.NotificationHubs.md b/src/NotificationHubs/NotificationHubs/help/Az.NotificationHubs.md index 32e88d55876d..a40ae6795c65 100644 --- a/src/NotificationHubs/NotificationHubs/help/Az.NotificationHubs.md +++ b/src/NotificationHubs/NotificationHubs/help/Az.NotificationHubs.md @@ -14,28 +14,28 @@ This topic displays help topics for the Azure Notification Hub cmdlets. Notifica ### [Get-AzNotificationHub](Get-AzNotificationHub.md) Gets information about your notification hubs. -### [Get-AzNotificationHubAuthorizationRules](Get-AzNotificationHubAuthorizationRules.md) +### [Get-AzNotificationHubAuthorizationRule](Get-AzNotificationHubAuthorizationRule.md) Gets information about the authorization rules associated with a notification hub. -### [Get-AzNotificationHubListKeys](Get-AzNotificationHubListKeys.md) +### [Get-AzNotificationHubListKey](Get-AzNotificationHubListKey.md) Gets the primary and secondary connection strings associated with a notification hub authorization rule. -### [Get-AzNotificationHubPNSCredentials](Get-AzNotificationHubPNSCredentials.md) +### [Get-AzNotificationHubPNSCredential](Get-AzNotificationHubPNSCredential.md) Gets the PNS credentials for a notification hub. ### [Get-AzNotificationHubsNamespace](Get-AzNotificationHubsNamespace.md) Gets information about a notification hub namespace. -### [Get-AzNotificationHubsNamespaceAuthorizationRules](Get-AzNotificationHubsNamespaceAuthorizationRules.md) +### [Get-AzNotificationHubsNamespaceAuthorizationRule](Get-AzNotificationHubsNamespaceAuthorizationRule.md) Gets information about the authorization rules associated with a notification hub namespace. -### [Get-AzNotificationHubsNamespaceListKeys](Get-AzNotificationHubsNamespaceListKeys.md) +### [Get-AzNotificationHubsNamespaceListKey](Get-AzNotificationHubsNamespaceListKey.md) Gets the primary and secondary connection strings associated with a notification hub namespace authorization rule. ### [New-AzNotificationHub](New-AzNotificationHub.md) Creates a notification hub. -### [New-AzNotificationHubAuthorizationRules](New-AzNotificationHubAuthorizationRules.md) +### [New-AzNotificationHubAuthorizationRule](New-AzNotificationHubAuthorizationRule.md) Creates an authorization rule and assigns the rule to a notification hub. ### [New-AzNotificationHubKey](New-AzNotificationHubKey.md) @@ -44,7 +44,7 @@ Regenerate the Authorization Rule Key for a NotificationHub . ### [New-AzNotificationHubsNamespace](New-AzNotificationHubsNamespace.md) Creates a notification hub namespace. -### [New-AzNotificationHubsNamespaceAuthorizationRules](New-AzNotificationHubsNamespaceAuthorizationRules.md) +### [New-AzNotificationHubsNamespaceAuthorizationRule](New-AzNotificationHubsNamespaceAuthorizationRule.md) Creates an authorization rule and assigns that rule to a notification hub namespace. ### [New-AzNotificationHubsNamespaceKey](New-AzNotificationHubsNamespaceKey.md) @@ -53,24 +53,24 @@ Regenerate the Authorization Rule Key for a Namespace. ### [Remove-AzNotificationHub](Remove-AzNotificationHub.md) Removes an existing notification hub. -### [Remove-AzNotificationHubAuthorizationRules](Remove-AzNotificationHubAuthorizationRules.md) +### [Remove-AzNotificationHubAuthorizationRule](Remove-AzNotificationHubAuthorizationRule.md) Removes an authorization rule from a notification hub. ### [Remove-AzNotificationHubsNamespace](Remove-AzNotificationHubsNamespace.md) Removes a notification hub namespace. -### [Remove-AzNotificationHubsNamespaceAuthorizationRules](Remove-AzNotificationHubsNamespaceAuthorizationRules.md) +### [Remove-AzNotificationHubsNamespaceAuthorizationRule](Remove-AzNotificationHubsNamespaceAuthorizationRule.md) Removes an authorization rule from a notification hub namespace. ### [Set-AzNotificationHub](Set-AzNotificationHub.md) Sets property values for a notification hub. -### [Set-AzNotificationHubAuthorizationRules](Set-AzNotificationHubAuthorizationRules.md) +### [Set-AzNotificationHubAuthorizationRule](Set-AzNotificationHubAuthorizationRule.md) Sets authorization rules for a notification hub. ### [Set-AzNotificationHubsNamespace](Set-AzNotificationHubsNamespace.md) Sets property values for a notification hub namespace. -### [Set-AzNotificationHubsNamespaceAuthorizationRules](Set-AzNotificationHubsNamespaceAuthorizationRules.md) +### [Set-AzNotificationHubsNamespaceAuthorizationRule](Set-AzNotificationHubsNamespaceAuthorizationRule.md) Sets authorization rules for a notification hub namespace. diff --git a/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubAuthorizationRules.md b/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubAuthorizationRule.md similarity index 77% rename from src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubAuthorizationRules.md rename to src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubAuthorizationRule.md index 8cf675172471..854b01b545a9 100644 --- a/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubAuthorizationRules.md +++ b/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubAuthorizationRule.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll-Help.xml Module Name: Az.NotificationHubs ms.assetid: 7A9D8F5A-6035-411B-8FDB-96ABFEED05A2 -online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/get-aznotificationhubauthorizationrules +online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/get-aznotificationhubauthorizationrule schema: 2.0.0 --- -# Get-AzNotificationHubAuthorizationRules +# Get-AzNotificationHubAuthorizationRule ## SYNOPSIS Gets information about the authorization rules associated with a notification hub. @@ -14,26 +14,26 @@ Gets information about the authorization rules associated with a notification hu ## SYNTAX ``` -Get-AzNotificationHubAuthorizationRules [-ResourceGroup] [-Namespace] +Get-AzNotificationHubAuthorizationRule [-ResourceGroup] [-Namespace] [-NotificationHub] [[-AuthorizationRule] ] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzNotificationHubAuthorizationRules** cmdlet gets information about the Shared Access Signature (SAS) authorization rules associated with a notification hub. +The **Get-AzNotificationHubAuthorizationRule** cmdlet gets information about the Shared Access Signature (SAS) authorization rules associated with a notification hub. The cmdlet returns information about all the rules associated with a hub or, by including the *AuthorizationRule* parameter, gets information about a specific rule. Authorization rules manage access to your notification hubs. An authorization rule will create links, as a URI, based on different permission levels. Clients are directed to one of these URIs based on the appropriate permission level. For instance, a client with the Listen permission will be directed to the URI for that permission. -The **Get-AzNotificationHubAuthorizationRules** cmdlet only gets information about the authorization rules associated with a notification hub. +The **Get-AzNotificationHubAuthorizationRule** cmdlet only gets information about the authorization rules associated with a notification hub. To get information about the hub itself, use Get-AzNotificationHub. ## EXAMPLES ### Example 1: Get information for all authorization rules assigned to a notification hub ``` -PS C:\>Get-AzNotificationHubAuthorizationRules -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" -NotificationHub "ContosoInternalHub" +PS C:\>Get-AzNotificationHubAuthorizationRule -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" -NotificationHub "ContosoInternalHub" ``` This command gets information for all the authorization rules assigned to the notification hub named ContosoInternalHub in the namespace ContosoNamespace. @@ -41,7 +41,7 @@ You must specify the namespace where the hub is located as well as the resource ### Example 2: Get information for an authorization rules assigned to a notification hub ``` -PS C:\>Get-AzNotificationHubAuthorizationRules -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" -NotificationHub "ContosoInternalHub" -AuthorizationRule "ListenRule" +PS C:\>Get-AzNotificationHubAuthorizationRule -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" -NotificationHub "ContosoInternalHub" -AuthorizationRule "ListenRule" ``` This command gets information for all the authorization rules assigned to the notification hub named ContosoInternalHub in the namespace ContosoNamespace. @@ -143,12 +143,12 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzNotificationHubsNamespaceAuthorizationRules](./Get-AzNotificationHubsNamespaceAuthorizationRules.md) +[Get-AzNotificationHubsNamespaceAuthorizationRule](./Get-AzNotificationHubsNamespaceAuthorizationRule.md) -[New-AzNotificationHubAuthorizationRules](./New-AzNotificationHubAuthorizationRules.md) +[New-AzNotificationHubAuthorizationRule](./New-AzNotificationHubAuthorizationRule.md) -[Remove-AzNotificationHubAuthorizationRules](./Remove-AzNotificationHubAuthorizationRules.md) +[Remove-AzNotificationHubAuthorizationRule](./Remove-AzNotificationHubAuthorizationRule.md) -[Set-AzNotificationHubAuthorizationRules](./Set-AzNotificationHubAuthorizationRules.md) +[Set-AzNotificationHubAuthorizationRule](./Set-AzNotificationHubAuthorizationRule.md) diff --git a/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubListKeys.md b/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubListKey.md similarity index 87% rename from src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubListKeys.md rename to src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubListKey.md index d05ff4b44d14..1ee486999006 100644 --- a/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubListKeys.md +++ b/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubListKey.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll-Help.xml Module Name: Az.NotificationHubs ms.assetid: 326C87EB-EC3B-4B04-B593-EAC56FFA854A -online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/get-aznotificationhublistkeys +online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/get-aznotificationhublistkey schema: 2.0.0 --- -# Get-AzNotificationHubListKeys +# Get-AzNotificationHubListKey ## SYNOPSIS Gets the primary and secondary connection strings associated with a notification hub authorization rule. @@ -14,12 +14,12 @@ Gets the primary and secondary connection strings associated with a notification ## SYNTAX ``` -Get-AzNotificationHubListKeys [-ResourceGroup] [-Namespace] [-NotificationHub] +Get-AzNotificationHubListKey [-ResourceGroup] [-Namespace] [-NotificationHub] [-AuthorizationRule] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzNotificationHubListKeys** cmdlet returns the primary and secondary connection strings of a notification hub Shared Access Signature (SAS) authorization rule. +The **Get-AzNotificationHubListKey** cmdlet returns the primary and secondary connection strings of a notification hub Shared Access Signature (SAS) authorization rule. Authorization rules manage user rights to the hub. Each rule includes a primary and a secondary connection string. These connection strings (URIs) perform the following: @@ -31,7 +31,7 @@ One of these parameters, the signature, is used to authenticate the user and pro ### Example 1: Get the primary and secondary connection strings for an authorization rule ``` -PS C:\>Get-AzNotificationHubListKeys -Namespace "ContosoNamespace" -NotificationHub "ContosoInternalHub" -ResourceGroup "ContosoNotificationsGroup" -AuthorizationRule "ListenRule" +PS C:\>Get-AzNotificationHubListKey -Namespace "ContosoNamespace" -NotificationHub "ContosoInternalHub" -ResourceGroup "ContosoNotificationsGroup" -AuthorizationRule "ListenRule" ``` This command gets the primary and secondary connection strings for the authorization rule ListenRule, a rule assigned to the ContosoInternalHub notification hub. diff --git a/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubPNSCredentials.md b/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubPNSCredential.md similarity index 86% rename from src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubPNSCredentials.md rename to src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubPNSCredential.md index c1cdc2f0a61d..7cec32f4d7c3 100644 --- a/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubPNSCredentials.md +++ b/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubPNSCredential.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll-Help.xml Module Name: Az.NotificationHubs ms.assetid: 2CCDF339-9D6E-4B0C-9201-BE641C8827F6 -online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/get-aznotificationhubpnscredentials +online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/get-aznotificationhubpnscredential schema: 2.0.0 --- -# Get-AzNotificationHubPNSCredentials +# Get-AzNotificationHubPNSCredential ## SYNOPSIS Gets the PNS credentials for a notification hub. @@ -14,12 +14,12 @@ Gets the PNS credentials for a notification hub. ## SYNTAX ``` -Get-AzNotificationHubPNSCredentials [-ResourceGroup] [-Namespace] [-NotificationHub] +Get-AzNotificationHubPNSCredential [-ResourceGroup] [-Namespace] [-NotificationHub] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzNotificationHubPNSCredentials** cmdlet gets the platform notification service (PNS) credentials for a notification hub. +The **Get-AzNotificationHubPNSCredential** cmdlet gets the platform notification service (PNS) credentials for a notification hub. Each notification hub has a single set of PNS credentials. These credentials are applied to individual push notification services such as, but not limited to; the iOS push notification service, the Android push notification service, and Windows Phone 8. @@ -27,7 +27,7 @@ These credentials are applied to individual push notification services such as, ### Example 1: Get PNS credentials for a specific notification hub ``` -PS C:\>Get-AzNotificationHubPNSCredentials -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" -NotificationHub "ContosoInternalHub" +PS C:\>Get-AzNotificationHubPNSCredential -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" -NotificationHub "ContosoInternalHub" ``` This command gets the PNS credentials for the notification hub named ContosoInternalHub that belongs to the resource group named ContosoNotificationsGroup. diff --git a/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubsNamespaceAuthorizationRules.md b/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubsNamespaceAuthorizationRule.md similarity index 86% rename from src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubsNamespaceAuthorizationRules.md rename to src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubsNamespaceAuthorizationRule.md index 1ba259dc2ff6..26df88d53f43 100644 --- a/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubsNamespaceAuthorizationRules.md +++ b/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubsNamespaceAuthorizationRule.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll-Help.xml Module Name: Az.NotificationHubs ms.assetid: 08D03498-D18D-47FE-8916-702FA2E7D719 -online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/get-aznotificationhubsnamespaceauthorizationrules +online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/get-aznotificationhubsnamespaceauthorizationrule schema: 2.0.0 --- -# Get-AzNotificationHubsNamespaceAuthorizationRules +# Get-AzNotificationHubsNamespaceAuthorizationRule ## SYNOPSIS Gets information about the authorization rules associated with a notification hub namespace. @@ -14,12 +14,12 @@ Gets information about the authorization rules associated with a notification hu ## SYNTAX ``` -Get-AzNotificationHubsNamespaceAuthorizationRules [-ResourceGroup] [-Namespace] +Get-AzNotificationHubsNamespaceAuthorizationRule [-ResourceGroup] [-Namespace] [[-AuthorizationRule] ] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzNotificationHubsNamespaceAuthorizationRules** cmdlet returns information about the Shared Access Signature (SAS) authorization rules associated with a notification hub namespace. +The **Get-AzNotificationHubsNamespaceAuthorizationRule** cmdlet returns information about the Shared Access Signature (SAS) authorization rules associated with a notification hub namespace. You can return information about all the rules associated with the namespace. Alternatively, and by including the *AuthorizationRule* parameter, you can return information for a specific rule. Authorization rules manage access to namespaces. @@ -37,14 +37,14 @@ To get information about the namespace itself, use Get-AzNotificationHubsNamespa ### Example 1: Get information about all authorization rules assigned to namespaces ``` -PS C:\>Get-AzNotificationHubsNamespaceAuthorizationRules -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" +PS C:\>Get-AzNotificationHubsNamespaceAuthorizationRule -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" ``` This command gets information about all the authorization rules assigned to both the namespace ContosoNamespace and the ContosoNotificationsGroup resource group. ### Example 2: Get information about an authorization rule ``` -PS C:\>Get-AzNotificationHubsNamespaceAuthorizationRules -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" -AuthorizationRule "ListenRule" +PS C:\>Get-AzNotificationHubsNamespaceAuthorizationRule -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" -AuthorizationRule "ListenRule" ``` This command gets information about a single namespace authorization rule named ListenRule. diff --git a/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubsNamespaceListKeys.md b/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubsNamespaceListKey.md similarity index 85% rename from src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubsNamespaceListKeys.md rename to src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubsNamespaceListKey.md index 01363f6e266e..e0593190f866 100644 --- a/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubsNamespaceListKeys.md +++ b/src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHubsNamespaceListKey.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll-Help.xml Module Name: Az.NotificationHubs ms.assetid: F769A8AB-E025-49EE-AEA4-0D27EAEE341F -online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/get-aznotificationhubsnamespacelistkeys +online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/get-aznotificationhubsnamespacelistkey schema: 2.0.0 --- -# Get-AzNotificationHubsNamespaceListKeys +# Get-AzNotificationHubsNamespaceListKey ## SYNOPSIS Gets the primary and secondary connection strings associated with a notification hub namespace authorization rule. @@ -14,12 +14,12 @@ Gets the primary and secondary connection strings associated with a notification ## SYNTAX ``` -Get-AzNotificationHubsNamespaceListKeys [-ResourceGroup] [-Namespace] +Get-AzNotificationHubsNamespaceListKey [-ResourceGroup] [-Namespace] [-AuthorizationRule] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzNotificationHubsNamespaceListKeys** cmdlet returns the primary and secondary connection strings for a Shared Access Signature (SAS) authorization rule assigned to a notification hub namespace. +The **Get-AzNotificationHubsNamespaceListKey** cmdlet returns the primary and secondary connection strings for a Shared Access Signature (SAS) authorization rule assigned to a notification hub namespace. Authorization rules manage user rights to a notification hub namespace. Each rule includes a primary and a secondary connection string. @@ -27,7 +27,7 @@ Each rule includes a primary and a secondary connection string. ### Example 1: Get the primary and secondary connection strings for an authorization rule ``` -PS C:\>Get-AzNotificationHubsNamespaceListKeys -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" -AuthorizationRule "ListenRule" +PS C:\>Get-AzNotificationHubsNamespaceListKey -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" -AuthorizationRule "ListenRule" ``` This command returns the primary and secondary connection strings for the authorization rule named ListenRule assigned to the ContosoNamespace namespace. diff --git a/src/NotificationHubs/NotificationHubs/help/New-AzNotificationHubAuthorizationRules.md b/src/NotificationHubs/NotificationHubs/help/New-AzNotificationHubAuthorizationRule.md similarity index 83% rename from src/NotificationHubs/NotificationHubs/help/New-AzNotificationHubAuthorizationRules.md rename to src/NotificationHubs/NotificationHubs/help/New-AzNotificationHubAuthorizationRule.md index 66ae20cd9dd5..9613ebec4754 100644 --- a/src/NotificationHubs/NotificationHubs/help/New-AzNotificationHubAuthorizationRules.md +++ b/src/NotificationHubs/NotificationHubs/help/New-AzNotificationHubAuthorizationRule.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll-Help.xml Module Name: Az.NotificationHubs ms.assetid: 7E9CBEE9-DD5F-4552-9187-ECBBEF6174B0 -online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/new-aznotificationhubauthorizationrules +online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/new-aznotificationhubauthorizationrule schema: 2.0.0 --- -# New-AzNotificationHubAuthorizationRules +# New-AzNotificationHubAuthorizationRule ## SYNOPSIS Creates an authorization rule and assigns the rule to a notification hub. @@ -15,20 +15,20 @@ Creates an authorization rule and assigns the rule to a notification hub. ### InputFileParameterSet ``` -New-AzNotificationHubAuthorizationRules [-ResourceGroup] [-Namespace] +New-AzNotificationHubAuthorizationRule [-ResourceGroup] [-Namespace] [-NotificationHub] [-InputFile] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### SASRuleParameterSet ``` -New-AzNotificationHubAuthorizationRules [-ResourceGroup] [-Namespace] +New-AzNotificationHubAuthorizationRule [-ResourceGroup] [-Namespace] [-NotificationHub] [-SASRule] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **New-AzNotificationHubAuthorizationRules** cmdlet creates a notification hub Shared Access Signature (SAS) authorization rule. +The **New-AzNotificationHubAuthorizationRule** cmdlet creates a notification hub Shared Access Signature (SAS) authorization rule. Authorization rules are used to manage access to your notification hubs. This is done by the creation of links, as URIs, based on different permission levels. Clients are directed to one of these URIs based on the appropriate permission level. @@ -38,7 +38,7 @@ For example, a client given the Listen permission will be directed to the URI fo ### Example 1: Create a notification hub authorization rule ``` -PS C:\>New-AzNotificationHubAuthorizationRules -Namespace "ContosoNamespace" -NotificationHub "ContosoInternalHub" -ResourceGroup "ContosoNotificationsGroup" -InputFile "C:\Configuration\ExternalAccessRule.json" +PS C:\>New-AzNotificationHubAuthorizationRule -Namespace "ContosoNamespace" -NotificationHub "ContosoInternalHub" -ResourceGroup "ContosoNotificationsGroup" -InputFile "C:\Configuration\ExternalAccessRule.json" ``` This command creates a new authorization rule and assigns it to the notification hub named ContosoInternalHub. @@ -97,7 +97,7 @@ Accept wildcard characters: False Specifies the notification hub that the authorization rules will be assigned to. Notification hubs are used to send push notifications to multiple clients regardless of the platform used by those clients. Note that you must specify the name of an existing notification hub. -The **New-AzNotificationHubAuthorizationRules** cmdlet cannot create new notification hubs. +The **New-AzNotificationHubAuthorizationRule** cmdlet cannot create new notification hubs. ```yaml Type: System.String @@ -186,10 +186,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzNotificationHubAuthorizationRules](./Get-AzNotificationHubAuthorizationRules.md) +[Get-AzNotificationHubAuthorizationRule](./Get-AzNotificationHubAuthorizationRule.md) -[Remove-AzNotificationHubAuthorizationRules](./Remove-AzNotificationHubAuthorizationRules.md) +[Remove-AzNotificationHubAuthorizationRule](./Remove-AzNotificationHubAuthorizationRule.md) -[Set-AzNotificationHubAuthorizationRules](./Set-AzNotificationHubAuthorizationRules.md) +[Set-AzNotificationHubAuthorizationRule](./Set-AzNotificationHubAuthorizationRule.md) diff --git a/src/NotificationHubs/NotificationHubs/help/New-AzNotificationHubsNamespaceAuthorizationRules.md b/src/NotificationHubs/NotificationHubs/help/New-AzNotificationHubsNamespaceAuthorizationRule.md similarity index 82% rename from src/NotificationHubs/NotificationHubs/help/New-AzNotificationHubsNamespaceAuthorizationRules.md rename to src/NotificationHubs/NotificationHubs/help/New-AzNotificationHubsNamespaceAuthorizationRule.md index 5c6fb0a9dc8c..1aa490f2e4d6 100644 --- a/src/NotificationHubs/NotificationHubs/help/New-AzNotificationHubsNamespaceAuthorizationRules.md +++ b/src/NotificationHubs/NotificationHubs/help/New-AzNotificationHubsNamespaceAuthorizationRule.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll-Help.xml Module Name: Az.NotificationHubs ms.assetid: 3F59F7E8-CD32-40CB-9DE0-3FB044439DD0 -online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/new-aznotificationhubsnamespaceauthorizationrules +online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/new-aznotificationhubsnamespaceauthorizationrule schema: 2.0.0 --- -# New-AzNotificationHubsNamespaceAuthorizationRules +# New-AzNotificationHubsNamespaceAuthorizationRule ## SYNOPSIS Creates an authorization rule and assigns that rule to a notification hub namespace. @@ -15,19 +15,19 @@ Creates an authorization rule and assigns that rule to a notification hub namesp ### InputFileParameterSet ``` -New-AzNotificationHubsNamespaceAuthorizationRules [-ResourceGroup] [-Namespace] +New-AzNotificationHubsNamespaceAuthorizationRule [-ResourceGroup] [-Namespace] [-InputFile] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### SASRuleParameterSet ``` -New-AzNotificationHubsNamespaceAuthorizationRules [-ResourceGroup] [-Namespace] +New-AzNotificationHubsNamespaceAuthorizationRule [-ResourceGroup] [-Namespace] [-SASRule] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **New-AzNotificationHubsNamespaceAuthorizationRules** cmdlet creates a Shared Access Signature (SAS) authorization rule and assigns it to a notification hub namespace. +The **New-AzNotificationHubsNamespaceAuthorizationRule** cmdlet creates a Shared Access Signature (SAS) authorization rule and assigns it to a notification hub namespace. Authorization rules manage user rights to the namespace and to the notification hubs contained with that namespace. This cmdlet provides two ways to create a new authorization rule and assign it to a namespace. You can create an instance of the **SharedAccessAuthorizationRuleAttributes** object and then configure that object with the property values you want the new rule to possess. @@ -43,7 +43,7 @@ A JSON file is a text file that uses syntax similar to the following: "Send" \] } -When used in conjunction with the **New-AzNotificationHubsNamespaceAuthorizationRules** cmdlet, the preceding JSON sample creates an authorization rule named ContosoAuthorizationRule that gives users Listen and Send rights to the namespace. +When used in conjunction with the **New-AzNotificationHubsNamespaceAuthorizationRule** cmdlet, the preceding JSON sample creates an authorization rule named ContosoAuthorizationRule that gives users Listen and Send rights to the namespace. The *PrimaryKey* that is used for authentication, can be randomly generated by using the following Windows PowerShell command: \[Convert\]::ToBase64String((1..32 |% { \[byte/](Get-Random -Minimum 0 -Maximum 255) })) @@ -51,7 +51,7 @@ The *PrimaryKey* that is used for authentication, can be randomly generated by u ### Example 1: Create an authorization rule and assign it to a namespace ``` -PS C:\>New-AzNotificationHubAuthorizationRules -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" -InputFile "C:\Configuration\NamespaceAuthorizationRules.json" +PS C:\>New-AzNotificationHubAuthorizationRule -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" -InputFile "C:\Configuration\NamespaceAuthorizationRules.json" ``` This command creates an authorization rule and assigns that rule to the namespace ContosoNamespace. @@ -94,7 +94,7 @@ Accept wildcard characters: False Specifies the namespace to which the authorization rules will be assigned. Namespaces provide a way to group and categorize notification hubs. The new rules must be assigned to an existing namespace. -The **New-AzNotificationHubsNamespaceAuthorizationRules** cmdlet cannot create a new namespace. +The **New-AzNotificationHubsNamespaceAuthorizationRule** cmdlet cannot create a new namespace. ```yaml Type: System.String @@ -186,10 +186,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzNotificationHubAuthorizationRules](./Get-AzNotificationHubAuthorizationRules.md) +[Get-AzNotificationHubAuthorizationRule](./Get-AzNotificationHubAuthorizationRule.md) -[Remove-AzNotificationHubAuthorizationRules](./Remove-AzNotificationHubAuthorizationRules.md) +[Remove-AzNotificationHubAuthorizationRule](./Remove-AzNotificationHubAuthorizationRule.md) -[Set-AzNotificationHubAuthorizationRules](./Set-AzNotificationHubAuthorizationRules.md) +[Set-AzNotificationHubAuthorizationRule](./Set-AzNotificationHubAuthorizationRule.md) diff --git a/src/NotificationHubs/NotificationHubs/help/Remove-AzNotificationHubAuthorizationRules.md b/src/NotificationHubs/NotificationHubs/help/Remove-AzNotificationHubAuthorizationRule.md similarity index 85% rename from src/NotificationHubs/NotificationHubs/help/Remove-AzNotificationHubAuthorizationRules.md rename to src/NotificationHubs/NotificationHubs/help/Remove-AzNotificationHubAuthorizationRule.md index 2dfc55d97dc5..8b3e3e2ed366 100644 --- a/src/NotificationHubs/NotificationHubs/help/Remove-AzNotificationHubAuthorizationRules.md +++ b/src/NotificationHubs/NotificationHubs/help/Remove-AzNotificationHubAuthorizationRule.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll-Help.xml Module Name: Az.NotificationHubs ms.assetid: 715F8821-BBD1-440A-AD54-E960939E288A -online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/remove-aznotificationhubauthorizationrules +online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/remove-aznotificationhubauthorizationrule schema: 2.0.0 --- -# Remove-AzNotificationHubAuthorizationRules +# Remove-AzNotificationHubAuthorizationRule ## SYNOPSIS Removes an authorization rule from a notification hub. @@ -14,13 +14,13 @@ Removes an authorization rule from a notification hub. ## SYNTAX ``` -Remove-AzNotificationHubAuthorizationRules [-ResourceGroup] [-Namespace] +Remove-AzNotificationHubAuthorizationRule [-ResourceGroup] [-Namespace] [-NotificationHub] [-AuthorizationRule] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Remove-AzNotificationHubAuthorizationRules** cmdlet removes a Shared Access Signature (SAS) authorization rule from a notification hub. +The **Remove-AzNotificationHubAuthorizationRule** cmdlet removes a Shared Access Signature (SAS) authorization rule from a notification hub. Authorization rules manage access to your notification hubs through the creation of links, as URIs, based on different permission levels. Permission levels can be one of the following: - Listen @@ -34,7 +34,7 @@ Removing an authorization rule also removes the corresponding user permission. ### Example 1: Remove an authorization rule from a notification hub ``` -PS C:\>Remove-AzNotificationHubAuthorizationRules -Namespace "ContosoNamespace" -NotificationHub "ContosoExternalHub" -ResourceGroup "ContosoNotificationsGroup" -AuthorizationRule "ListenRule" +PS C:\>Remove-AzNotificationHubAuthorizationRule -Namespace "ContosoNamespace" -NotificationHub "ContosoExternalHub" -ResourceGroup "ContosoNotificationsGroup" -AuthorizationRule "ListenRule" ``` This command removes the authorization rule named ListenRule from the notification hub named ContosoExternalHub. @@ -180,10 +180,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzNotificationHubAuthorizationRules](./Get-AzNotificationHubAuthorizationRules.md) +[Get-AzNotificationHubAuthorizationRule](./Get-AzNotificationHubAuthorizationRule.md) -[New-AzNotificationHubAuthorizationRules](./New-AzNotificationHubAuthorizationRules.md) +[New-AzNotificationHubAuthorizationRule](./New-AzNotificationHubAuthorizationRule.md) -[Set-AzNotificationHubAuthorizationRules](./Set-AzNotificationHubAuthorizationRules.md) +[Set-AzNotificationHubAuthorizationRule](./Set-AzNotificationHubAuthorizationRule.md) diff --git a/src/NotificationHubs/NotificationHubs/help/Remove-AzNotificationHubsNamespaceAuthorizationRules.md b/src/NotificationHubs/NotificationHubs/help/Remove-AzNotificationHubsNamespaceAuthorizationRule.md similarity index 83% rename from src/NotificationHubs/NotificationHubs/help/Remove-AzNotificationHubsNamespaceAuthorizationRules.md rename to src/NotificationHubs/NotificationHubs/help/Remove-AzNotificationHubsNamespaceAuthorizationRule.md index a643767525b1..3cf1b4f96a52 100644 --- a/src/NotificationHubs/NotificationHubs/help/Remove-AzNotificationHubsNamespaceAuthorizationRules.md +++ b/src/NotificationHubs/NotificationHubs/help/Remove-AzNotificationHubsNamespaceAuthorizationRule.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll-Help.xml Module Name: Az.NotificationHubs ms.assetid: 860AB403-3F99-45FA-8E6A-8C9872C121E8 -online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/remove-aznotificationhubsnamespaceauthorizationrules +online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/remove-aznotificationhubsnamespaceauthorizationrule schema: 2.0.0 --- -# Remove-AzNotificationHubsNamespaceAuthorizationRules +# Remove-AzNotificationHubsNamespaceAuthorizationRule ## SYNOPSIS Removes an authorization rule from a notification hub namespace. @@ -14,13 +14,13 @@ Removes an authorization rule from a notification hub namespace. ## SYNTAX ``` -Remove-AzNotificationHubsNamespaceAuthorizationRules [-ResourceGroup] [-Namespace] +Remove-AzNotificationHubsNamespaceAuthorizationRule [-ResourceGroup] [-Namespace] [-AuthorizationRule] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Remove-AzNotificationHubsNamespaceAuthorizationRules** cmdlet removes a Shared Access Signature (SAS) authorization rule from a notification hub namespace. +The **Remove-AzNotificationHubsNamespaceAuthorizationRule** cmdlet removes a Shared Access Signature (SAS) authorization rule from a notification hub namespace. Authorization rules manage access to a namespace. This is done by through the creation of links, as URIs, based on different permission levels. Permission levels can be of the following: @@ -35,7 +35,7 @@ Removing an authorization rule also removes the corresponding user permission. ### Example 1: Remove an authorization rule from a namespace ``` -PS C:\>Remove-AzNotificationHubNamespaceAuthorizationRules -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" -AuthorizationRule "ListenRule" +PS C:\>Remove-AzNotificationHubNamespaceAuthorizationRule -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" -AuthorizationRule "ListenRule" ``` This command removes the authorization rule named ListenRule from the namespace named ContosoNamespace. @@ -165,10 +165,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzNotificationHubsNamespaceAuthorizationRules](./Get-AzNotificationHubsNamespaceAuthorizationRules.md) +[Get-AzNotificationHubsNamespaceAuthorizationRule](./Get-AzNotificationHubsNamespaceAuthorizationRule.md) -[New-AzNotificationHubsNamespaceAuthorizationRules](./New-AzNotificationHubsNamespaceAuthorizationRules.md) +[New-AzNotificationHubsNamespaceAuthorizationRule](./New-AzNotificationHubsNamespaceAuthorizationRule.md) -[Set-AzNotificationHubsNamespaceAuthorizationRules](./Set-AzNotificationHubsNamespaceAuthorizationRules.md) +[Set-AzNotificationHubsNamespaceAuthorizationRule](./Set-AzNotificationHubsNamespaceAuthorizationRule.md) diff --git a/src/NotificationHubs/NotificationHubs/help/Set-AzNotificationHubAuthorizationRules.md b/src/NotificationHubs/NotificationHubs/help/Set-AzNotificationHubAuthorizationRule.md similarity index 85% rename from src/NotificationHubs/NotificationHubs/help/Set-AzNotificationHubAuthorizationRules.md rename to src/NotificationHubs/NotificationHubs/help/Set-AzNotificationHubAuthorizationRule.md index f80187759ed6..f06c31c711ca 100644 --- a/src/NotificationHubs/NotificationHubs/help/Set-AzNotificationHubAuthorizationRules.md +++ b/src/NotificationHubs/NotificationHubs/help/Set-AzNotificationHubAuthorizationRule.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll-Help.xml Module Name: Az.NotificationHubs ms.assetid: BD311CEF-378B-463E-8998-CC3E9A5B3A7B -online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/set-aznotificationhubauthorizationrules +online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/set-aznotificationhubauthorizationrule schema: 2.0.0 --- -# Set-AzNotificationHubAuthorizationRules +# Set-AzNotificationHubAuthorizationRule ## SYNOPSIS Sets authorization rules for a notification hub. @@ -15,20 +15,20 @@ Sets authorization rules for a notification hub. ### InputFileParameterSet ``` -Set-AzNotificationHubAuthorizationRules [-ResourceGroup] [-Namespace] +Set-AzNotificationHubAuthorizationRule [-ResourceGroup] [-Namespace] [-NotificationHub] [-InputFile] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### SASRuleParameterSet ``` -Set-AzNotificationHubAuthorizationRules [-ResourceGroup] [-Namespace] +Set-AzNotificationHubAuthorizationRule [-ResourceGroup] [-Namespace] [-NotificationHub] [-SASRule] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Set-AzNotificationHubAuthorizationRules** cmdlet modifies a Shared Access Signature (SAS) authorization rule assigned to a notification hub. +The **Set-AzNotificationHubAuthorizationRule** cmdlet modifies a Shared Access Signature (SAS) authorization rule assigned to a notification hub. Authorization rules manage access to your notification hubs by the creation of links, as URIs, based on different permission levels. Permission levels can be one of the following: - Listen @@ -49,13 +49,13 @@ A JSON file is a text file that uses syntax similar to this: "Send" \] } -When used in conjunction with the New-AzNotificationHubAuthorizationRules cmdlet, the preceding JSON sample modifies an authorization rule named ContosoAuthorizationRule in order to give users Listen and Send rights to the hub. +When used in conjunction with the New-AzNotificationHubAuthorizationRule cmdlet, the preceding JSON sample modifies an authorization rule named ContosoAuthorizationRule in order to give users Listen and Send rights to the hub. ## EXAMPLES ### Example 1: Modify an authorization rule assigned to a notification hub ``` -PS C:\>Set-AzNotificationHubAuthorizationRules -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationGroup" -NotificationHub "ContosoExternalHub" -InputFile "C:\Configuration\AuthorizationRules.json" +PS C:\>Set-AzNotificationHubAuthorizationRule -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationGroup" -NotificationHub "ContosoExternalHub" -InputFile "C:\Configuration\AuthorizationRules.json" ``` This command modifies an authorization rule assigned to the notification hub named ContosoExternalHub. @@ -218,10 +218,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzNotificationHubAuthorizationRules](./Get-AzNotificationHubAuthorizationRules.md) +[Get-AzNotificationHubAuthorizationRule](./Get-AzNotificationHubAuthorizationRule.md) -[New-AzNotificationHubAuthorizationRules](./New-AzNotificationHubAuthorizationRules.md) +[New-AzNotificationHubAuthorizationRule](./New-AzNotificationHubAuthorizationRule.md) -[Remove-AzNotificationHubAuthorizationRules](./Remove-AzNotificationHubAuthorizationRules.md) +[Remove-AzNotificationHubAuthorizationRule](./Remove-AzNotificationHubAuthorizationRule.md) diff --git a/src/NotificationHubs/NotificationHubs/help/Set-AzNotificationHubsNamespaceAuthorizationRules.md b/src/NotificationHubs/NotificationHubs/help/Set-AzNotificationHubsNamespaceAuthorizationRule.md similarity index 83% rename from src/NotificationHubs/NotificationHubs/help/Set-AzNotificationHubsNamespaceAuthorizationRules.md rename to src/NotificationHubs/NotificationHubs/help/Set-AzNotificationHubsNamespaceAuthorizationRule.md index bed0b9fc1f35..d787ac23297c 100644 --- a/src/NotificationHubs/NotificationHubs/help/Set-AzNotificationHubsNamespaceAuthorizationRules.md +++ b/src/NotificationHubs/NotificationHubs/help/Set-AzNotificationHubsNamespaceAuthorizationRule.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll-Help.xml Module Name: Az.NotificationHubs ms.assetid: F0981A7A-1B17-4141-A267-927E5B78BE5F -online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/set-aznotificationhubsnamespaceauthorizationrules +online version: https://docs.microsoft.com/en-us/powershell/module/az.notificationhubs/set-aznotificationhubsnamespaceauthorizationrule schema: 2.0.0 --- -# Set-AzNotificationHubsNamespaceAuthorizationRules +# Set-AzNotificationHubsNamespaceAuthorizationRule ## SYNOPSIS Sets authorization rules for a notification hub namespace. @@ -15,20 +15,20 @@ Sets authorization rules for a notification hub namespace. ### InputFileParameterSet ``` -Set-AzNotificationHubsNamespaceAuthorizationRules [-ResourceGroup] [-Namespace] +Set-AzNotificationHubsNamespaceAuthorizationRule [-ResourceGroup] [-Namespace] [-InputFile] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### SASRuleParameterSet ``` -Set-AzNotificationHubsNamespaceAuthorizationRules [-ResourceGroup] [-Namespace] +Set-AzNotificationHubsNamespaceAuthorizationRule [-ResourceGroup] [-Namespace] [-SASRule] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Set-AzNotificationHubsNamespaceAuthorizationRules** cmdlet modifies a Shared Access Signature (SAS) authorization rule assigned to a notification hub namespace. +The **Set-AzNotificationHubsNamespaceAuthorizationRule** cmdlet modifies a Shared Access Signature (SAS) authorization rule assigned to a notification hub namespace. Authorization rules manage user rights to the namespace and to the notification hubs contained in that namespace. This cmdlet provides two ways to modify an authorization rule assigned to a namespace. For one, you can create an instance of the **SharedAccessAuthorizationRuleAttributes** object and then configure that object with the property values you want the rule to possess. @@ -44,13 +44,13 @@ A JSON file is a text file that uses syntax similar to this: "Send" \] } -When used in conjunction with the **Set-AzNotificationHubsNamespaceAuthorizationRules** cmdlet, the preceding JSON sample modifies an authorization rule named ContosoAuthorizationRule to give users Listen and Send rights to the namespace. +When used in conjunction with the **Set-AzNotificationHubsNamespaceAuthorizationRule** cmdlet, the preceding JSON sample modifies an authorization rule named ContosoAuthorizationRule to give users Listen and Send rights to the namespace. ## EXAMPLES ### Example 1: Modify an authorization rule assigned to a namespace ``` -PS C:\>Set-AzNotificationHubsNamespaceAuthorizationRules -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationGroup" -InputFile "C:\Configuration\AuthorizationRules.json" +PS C:\>Set-AzNotificationHubsNamespaceAuthorizationRule -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationGroup" -InputFile "C:\Configuration\AuthorizationRules.json" ``` This command modifies an authorization rule assigned to the namespace named ContosoNamespace. @@ -197,10 +197,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzNotificationHubsNamespaceAuthorizationRules](./Get-AzNotificationHubsNamespaceAuthorizationRules.md) +[Get-AzNotificationHubsNamespaceAuthorizationRule](./Get-AzNotificationHubsNamespaceAuthorizationRule.md) -[New-AzNotificationHubsNamespaceAuthorizationRules](./New-AzNotificationHubsNamespaceAuthorizationRules.md) +[New-AzNotificationHubsNamespaceAuthorizationRule](./New-AzNotificationHubsNamespaceAuthorizationRule.md) -[Remove-AzNotificationHubsNamespaceAuthorizationRules](./Remove-AzNotificationHubsNamespaceAuthorizationRules.md) +[Remove-AzNotificationHubsNamespaceAuthorizationRule](./Remove-AzNotificationHubsNamespaceAuthorizationRule.md) diff --git a/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 b/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 index 3964049a23bd..950bc9bc3eca 100644 --- a/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 +++ b/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.OperationalInsights.dll', @@ -89,9 +89,9 @@ CmdletsToExport = 'New-AzOperationalInsightsAzureActivityLogDataSource', 'Disable-AzOperationalInsightsLinuxSyslogCollection', 'New-AzOperationalInsightsWindowsEventDataSource', 'Get-AzOperationalInsightsSavedSearch', - 'Get-AzOperationalInsightsSavedSearchResults', + 'Get-AzOperationalInsightsSavedSearchResult', 'Get-AzOperationalInsightsSchema', - 'Get-AzOperationalInsightsSearchResults', + 'Get-AzOperationalInsightsSearchResult', 'New-AzOperationalInsightsComputerGroup', 'New-AzOperationalInsightsSavedSearch', 'Set-AzOperationalInsightsSavedSearch', @@ -104,11 +104,11 @@ CmdletsToExport = 'New-AzOperationalInsightsAzureActivityLogDataSource', 'New-AzOperationalInsightsStorageInsight', 'Remove-AzOperationalInsightsStorageInsight', 'Set-AzOperationalInsightsIntelligencePack', - 'Get-AzOperationalInsightsIntelligencePacks', - 'Get-AzOperationalInsightsWorkspaceManagementGroups', - 'Get-AzOperationalInsightsLinkTargets', + 'Get-AzOperationalInsightsIntelligencePack', + 'Get-AzOperationalInsightsWorkspaceManagementGroup', + 'Get-AzOperationalInsightsLinkTarget', 'Get-AzOperationalInsightsWorkspaceUsage', - 'Get-AzOperationalInsightsWorkspaceSharedKeys', + 'Get-AzOperationalInsightsWorkspaceSharedKey', 'Get-AzOperationalInsightsWorkspace', 'New-AzOperationalInsightsWorkspace', 'Remove-AzOperationalInsightsWorkspace', @@ -119,7 +119,10 @@ CmdletsToExport = 'New-AzOperationalInsightsAzureActivityLogDataSource', # VariablesToExport = @() # Aliases 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 aliases to export. -AliasesToExport = 'New-AzOperationalInsightsAzureAuditDataSource' +AliasesToExport = 'New-AzOperationalInsightsAzureAuditDataSource', 'Get-AzOperationalInsightsIntelligencePacks', + 'Get-AzOperationalInsightsLinkTargets', 'Get-AzOperationalInsightsSavedSearchResults', + 'Get-AzOperationalInsightsSearchResults', 'Get-AzOperationalInsightsWorkspaceManagementGroups', + 'Get-AzOperationalInsightsWorkspaceSharedKeys' # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/OperationalInsights/OperationalInsights/ChangeLog.md b/src/OperationalInsights/OperationalInsights/ChangeLog.md index c894db91f965..818c1f221d47 100644 --- a/src/OperationalInsights/OperationalInsights/ChangeLog.md +++ b/src/OperationalInsights/OperationalInsights/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.1.0 * Additional support for New and Get ApplicationInsights data source. diff --git a/src/OperationalInsights/OperationalInsights/Search/GetAzureOperationalInsightsSavedSearchResultsCommand.cs b/src/OperationalInsights/OperationalInsights/Search/GetAzureOperationalInsightsSavedSearchResultsCommand.cs index 313899625b64..404f736b0077 100644 --- a/src/OperationalInsights/OperationalInsights/Search/GetAzureOperationalInsightsSavedSearchResultsCommand.cs +++ b/src/OperationalInsights/OperationalInsights/Search/GetAzureOperationalInsightsSavedSearchResultsCommand.cs @@ -14,11 +14,14 @@ using Microsoft.Azure.Commands.OperationalInsights.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.OperationalInsights { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "OperationalInsightsSavedSearchResults"), OutputType(typeof(PSSearchGetSearchResultsResponse))] + [GenericBreakingChange("Get-AzOperationalInsightsSavedSearchResults alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "OperationalInsightsSavedSearchResult"), OutputType(typeof(PSSearchGetSearchResultsResponse))] + [Alias("Get-AzOperationalInsightsSavedSearchResults")] public class GetAzureOperationalInsightsSavedSearchResultsCommand : OperationalInsightsBaseCmdlet { [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, diff --git a/src/OperationalInsights/OperationalInsights/Search/GetAzureOperationalInsightsSearchResultsCommand.cs b/src/OperationalInsights/OperationalInsights/Search/GetAzureOperationalInsightsSearchResultsCommand.cs index 6259bf7c93ee..c8dbf0c6fc9f 100644 --- a/src/OperationalInsights/OperationalInsights/Search/GetAzureOperationalInsightsSearchResultsCommand.cs +++ b/src/OperationalInsights/OperationalInsights/Search/GetAzureOperationalInsightsSearchResultsCommand.cs @@ -14,12 +14,15 @@ using Microsoft.Azure.Commands.OperationalInsights.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System; using System.Management.Automation; namespace Microsoft.Azure.Commands.OperationalInsights { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "OperationalInsightsSearchResults"), OutputType(typeof(PSSearchGetSearchResultsResponse))] + [GenericBreakingChange("Get-AzOperationalInsightsSearchResults alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "OperationalInsightsSearchResult"), OutputType(typeof(PSSearchGetSearchResultsResponse))] + [Alias("Get-AzOperationalInsightsSearchResults")] public class GetAzureOperationalInsightsSearchResultsCommand : OperationalInsightsBaseCmdlet { [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, diff --git a/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsIntelligencePacksCommand.cs b/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsIntelligencePacksCommand.cs index 9c9a5d404196..75d8ebbaddda 100644 --- a/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsIntelligencePacksCommand.cs +++ b/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsIntelligencePacksCommand.cs @@ -14,12 +14,15 @@ using Microsoft.Azure.Commands.OperationalInsights.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Collections.Generic; using System.Management.Automation; namespace Microsoft.Azure.Commands.OperationalInsights { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "OperationalInsightsIntelligencePacks"), OutputType(typeof(PSIntelligencePack))] + [GenericBreakingChange("Get-AzOperationalInsightsIntelligencePacks alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "OperationalInsightsIntelligencePack"), OutputType(typeof(PSIntelligencePack))] + [Alias("Get-AzOperationalInsightsIntelligencePacks")] public class GetAzureOperationalInsightsIntelligencePacksCommand : OperationalInsightsBaseCmdlet { [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, diff --git a/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsLinkTargetsCommand.cs b/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsLinkTargetsCommand.cs index d169dc8583b7..2da52ba7d3c7 100644 --- a/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsLinkTargetsCommand.cs +++ b/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsLinkTargetsCommand.cs @@ -13,12 +13,15 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.OperationalInsights.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Collections.Generic; using System.Management.Automation; namespace Microsoft.Azure.Commands.OperationalInsights { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "OperationalInsightsLinkTargets"), OutputType(typeof(PSAccount))] + [GenericBreakingChange("Get-AzOperationalInsightsLinkTargets alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "OperationalInsightsLinkTarget"), OutputType(typeof(PSAccount))] + [Alias("Get-AzOperationalInsightsLinkTargets")] public class GetAzureOperationalInsightsLinkTargetsCommand : OperationalInsightsBaseCmdlet { public override void ExecuteCmdlet() diff --git a/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsWorkspaceManagementGroupsCommand.cs b/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsWorkspaceManagementGroupsCommand.cs index a25ceeacca42..ec1007a2e938 100644 --- a/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsWorkspaceManagementGroupsCommand.cs +++ b/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsWorkspaceManagementGroupsCommand.cs @@ -14,12 +14,15 @@ using Microsoft.Azure.Commands.OperationalInsights.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Collections.Generic; using System.Management.Automation; namespace Microsoft.Azure.Commands.OperationalInsights { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "OperationalInsightsWorkspaceManagementGroups"), OutputType(typeof(PSManagementGroup))] + [GenericBreakingChange("Get-AzOperationalInsightsWorkspaceManagementGroups alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "OperationalInsightsWorkspaceManagementGroup"), OutputType(typeof(PSManagementGroup))] + [Alias("Get-AzOperationalInsightsWorkspaceManagementGroups")] public class GetAzureOperationalInsightsWorkspaceManagementGroupsCommand : OperationalInsightsBaseCmdlet { [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, diff --git a/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsWorkspaceSharedKeysCommand.cs b/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsWorkspaceSharedKeysCommand.cs index 0a3c41c8a17b..0dd9b0842b99 100644 --- a/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsWorkspaceSharedKeysCommand.cs +++ b/src/OperationalInsights/OperationalInsights/Workspaces/GetAzureOperationalInsightsWorkspaceSharedKeysCommand.cs @@ -14,11 +14,14 @@ using Microsoft.Azure.Commands.OperationalInsights.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.OperationalInsights { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "OperationalInsightsWorkspaceSharedKeys"), OutputType(typeof(PSWorkspaceKeys))] + [GenericBreakingChange("Get-AzOperationalInsightsWorkspaceSharedKeys alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "OperationalInsightsWorkspaceSharedKey"), OutputType(typeof(PSWorkspaceKeys))] + [Alias("Get-AzOperationalInsightsWorkspaceSharedKeys")] public class GetAzureOperationalInsightsWorkspaceSharedKeysCommand : OperationalInsightsBaseCmdlet { [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, diff --git a/src/OperationalInsights/OperationalInsights/help/Az.OperationalInsights.md b/src/OperationalInsights/OperationalInsights/help/Az.OperationalInsights.md index c995e4737610..31a437073bce 100644 --- a/src/OperationalInsights/OperationalInsights/help/Az.OperationalInsights.md +++ b/src/OperationalInsights/OperationalInsights/help/Az.OperationalInsights.md @@ -38,22 +38,22 @@ Starts collection of syslog data from Linux computers. ### [Get-AzOperationalInsightsDataSource](Get-AzOperationalInsightsDataSource.md) Get datasources under Azure Log Analytics workspace. -### [Get-AzOperationalInsightsIntelligencePacks](Get-AzOperationalInsightsIntelligencePacks.md) +### [Get-AzOperationalInsightsIntelligencePack](Get-AzOperationalInsightsIntelligencePack.md) Gets the available Intelligence Packs. -### [Get-AzOperationalInsightsLinkTargets](Get-AzOperationalInsightsLinkTargets.md) +### [Get-AzOperationalInsightsLinkTarget](Get-AzOperationalInsightsLinkTarget.md) Gets accounts that are not associated with a subscription. ### [Get-AzOperationalInsightsSavedSearch](Get-AzOperationalInsightsSavedSearch.md) Returns all of the saved searches for a specified workspace. -### [Get-AzOperationalInsightsSavedSearchResults](Get-AzOperationalInsightsSavedSearchResults.md) +### [Get-AzOperationalInsightsSavedSearchResult](Get-AzOperationalInsightsSavedSearchResult.md) Returns the results from a query. ### [Get-AzOperationalInsightsSchema](Get-AzOperationalInsightsSchema.md) Returns the schema associated with a workspace. -### [Get-AzOperationalInsightsSearchResults](Get-AzOperationalInsightsSearchResults.md) +### [Get-AzOperationalInsightsSearchResult](Get-AzOperationalInsightsSearchResult.md) Returns search results based on the specified parameters. ### [Get-AzOperationalInsightsStorageInsight](Get-AzOperationalInsightsStorageInsight.md) @@ -62,10 +62,10 @@ Gets information about a Storage Insight. ### [Get-AzOperationalInsightsWorkspace](Get-AzOperationalInsightsWorkspace.md) Gets information about a workspace. -### [Get-AzOperationalInsightsWorkspaceManagementGroups](Get-AzOperationalInsightsWorkspaceManagementGroups.md) +### [Get-AzOperationalInsightsWorkspaceManagementGroup](Get-AzOperationalInsightsWorkspaceManagementGroup.md) Gets details of management groups connected to a workspace. -### [Get-AzOperationalInsightsWorkspaceSharedKeys](Get-AzOperationalInsightsWorkspaceSharedKeys.md) +### [Get-AzOperationalInsightsWorkspaceSharedKey](Get-AzOperationalInsightsWorkspaceSharedKey.md) Gets the shared keys for a workspace. ### [Get-AzOperationalInsightsWorkspaceUsage](Get-AzOperationalInsightsWorkspaceUsage.md) diff --git a/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsIntelligencePacks.md b/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsIntelligencePack.md similarity index 90% rename from src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsIntelligencePacks.md rename to src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsIntelligencePack.md index daadb1707753..c943d0327c29 100644 --- a/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsIntelligencePacks.md +++ b/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsIntelligencePack.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll-Help.xml Module Name: Az.OperationalInsights ms.assetid: 0F9D72C1-2E42-4A67-9FDE-6344F5DE6C30 -online version: https://docs.microsoft.com/en-us/powershell/module/az.operationalinsights/get-azoperationalinsightsintelligencepacks +online version: https://docs.microsoft.com/en-us/powershell/module/az.operationalinsights/get-azoperationalinsightsintelligencepack schema: 2.0.0 --- -# Get-AzOperationalInsightsIntelligencePacks +# Get-AzOperationalInsightsIntelligencePack ## SYNOPSIS Gets the available Intelligence Packs. @@ -14,12 +14,12 @@ Gets the available Intelligence Packs. ## SYNTAX ``` -Get-AzOperationalInsightsIntelligencePacks [-ResourceGroupName] [-WorkspaceName] +Get-AzOperationalInsightsIntelligencePack [-ResourceGroupName] [-WorkspaceName] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzOperationalInsightsIntelligencePacks** cmdlet gets the available Intelligence Packs. +The **Get-AzOperationalInsightsIntelligencePack** cmdlet gets the available Intelligence Packs. ## EXAMPLES diff --git a/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsLinkTargets.md b/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsLinkTarget.md similarity index 80% rename from src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsLinkTargets.md rename to src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsLinkTarget.md index 0766f3a89f31..130a8a316acf 100644 --- a/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsLinkTargets.md +++ b/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsLinkTarget.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll-Help.xml Module Name: Az.OperationalInsights ms.assetid: 35C6E85B-E5E1-44E8-86E8-F18E197F69DC -online version: https://docs.microsoft.com/en-us/powershell/module/az.operationalinsights/get-azoperationalinsightslinktargets +online version: https://docs.microsoft.com/en-us/powershell/module/az.operationalinsights/get-azoperationalinsightslinktarget schema: 2.0.0 --- -# Get-AzOperationalInsightsLinkTargets +# Get-AzOperationalInsightsLinkTarget ## SYNOPSIS Gets accounts that are not associated with a subscription. @@ -14,18 +14,18 @@ Gets accounts that are not associated with a subscription. ## SYNTAX ``` -Get-AzOperationalInsightsLinkTargets [-DefaultProfile ] [] +Get-AzOperationalInsightsLinkTarget [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzOperationalInsightsLinkTargets** cmdlet lists existing accounts that are not associated with an Azure subscription. +The **Get-AzOperationalInsightsLinkTarget** cmdlet lists existing accounts that are not associated with an Azure subscription. To link a new workspace to an existing account, use a customer ID returned by this operation in the customer ID property of a new workspace. ## EXAMPLES ### Example 1: Get unlinked accounts ``` -PS C:\>Get-AzOperationalInsightsLinkTargets +PS C:\>Get-AzOperationalInsightsLinkTarget ``` This command gets unlinked accounts that are owned by the caller's ID. diff --git a/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsSavedSearchResults.md b/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsSavedSearchResult.md similarity index 84% rename from src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsSavedSearchResults.md rename to src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsSavedSearchResult.md index fe75d30f709f..612ce23b932b 100644 --- a/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsSavedSearchResults.md +++ b/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsSavedSearchResult.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll-Help.xml Module Name: Az.OperationalInsights ms.assetid: AA3EF369-C724-4D32-A56E-503CBE191320 -online version: https://docs.microsoft.com/en-us/powershell/module/az.operationalinsights/get-azoperationalinsightssavedsearchresults +online version: https://docs.microsoft.com/en-us/powershell/module/az.operationalinsights/get-azoperationalinsightssavedsearchresult schema: 2.0.0 --- -# Get-AzOperationalInsightsSavedSearchResults +# Get-AzOperationalInsightsSavedSearchResult ## SYNOPSIS Returns the results from a query. @@ -14,18 +14,18 @@ Returns the results from a query. ## SYNTAX ``` -Get-AzOperationalInsightsSavedSearchResults [-ResourceGroupName] [-WorkspaceName] +Get-AzOperationalInsightsSavedSearchResult [-ResourceGroupName] [-WorkspaceName] [-SavedSearchId] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzOperationalInsightsSavedSearchResults** cmdlet returns the results from the query specified by the search ID. +The **Get-AzOperationalInsightsSavedSearchResult** cmdlet returns the results from the query specified by the search ID. ## EXAMPLES ### Example 1: Get all of the search results for a saved search ``` -PS C:\>Get-AzOperationalInsightSavedSearchResults -ResourceGroupName "ContosoResourceGroup" -WorkspaceName "ContosoWorkspace" -SavedSearchId "ContosoSavedSearchId" +PS C:\>Get-AzOperationalInsightSavedSearchResult -ResourceGroupName "ContosoResourceGroup" -WorkspaceName "ContosoWorkspace" -SavedSearchId "ContosoSavedSearchId" ``` This command gets all of the search results for a saved search. diff --git a/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsSearchResults.md b/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsSearchResult.md similarity index 84% rename from src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsSearchResults.md rename to src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsSearchResult.md index 0b28d1a2388c..b11249207f9d 100644 --- a/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsSearchResults.md +++ b/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsSearchResult.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll-Help.xml Module Name: Az.OperationalInsights ms.assetid: 438F549D-1AF6-49FE-83AC-B45BAB701AB6 -online version: https://docs.microsoft.com/en-us/powershell/module/az.operationalinsights/get-azoperationalinsightssearchresults +online version: https://docs.microsoft.com/en-us/powershell/module/az.operationalinsights/get-azoperationalinsightssearchresult schema: 2.0.0 --- -# Get-AzOperationalInsightsSearchResults +# Get-AzOperationalInsightsSearchResult ## SYNOPSIS Returns search results based on the specified parameters. @@ -14,13 +14,13 @@ Returns search results based on the specified parameters. ## SYNTAX ``` -Get-AzOperationalInsightsSearchResults [-ResourceGroupName] [-WorkspaceName] [[-Top] ] +Get-AzOperationalInsightsSearchResult [-ResourceGroupName] [-WorkspaceName] [[-Top] ] [[-PreHighlight] ] [[-PostHighlight] ] [[-Query] ] [[-Start] ] [[-End] ] [[-Id] ] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzOperationalInsightsSearchResults** cmdlet returns the search results based on the specified parameters. +The **Get-AzOperationalInsightsSearchResult** cmdlet returns the search results based on the specified parameters. You can access the status of the search in the Metadata property of the returned object. If the status is Pending, then the search has not completed, and the results will be from the archive. You can retrieve the results of the search from the Value property of the returned object. @@ -29,14 +29,14 @@ You can retrieve the results of the search from the Value property of the return ### Example 1: Get search results using a query ``` -PS C:\>Get-AzOperationalInsightsSearchResults -ResourceGroupName "ContosoResourceGroup" -WorkspaceName "ContosoWorkspace" -Query "Type=Event" -Top 100 +PS C:\>Get-AzOperationalInsightsSearchResult -ResourceGroupName "ContosoResourceGroup" -WorkspaceName "ContosoWorkspace" -Query "Type=Event" -Top 100 ``` This command gets all search results by using a query. ### Example 2: Get search results using an ID ``` -PS C:\>Get-AzOperationalInsightsSearchResults -ResourceGroupName "ContosoResourceGroup" -WorkspaceName "ContosoWorkspace" -Id "ContosoSearchId" +PS C:\>Get-AzOperationalInsightsSearchResult -ResourceGroupName "ContosoResourceGroup" -WorkspaceName "ContosoWorkspace" -Id "ContosoSearchId" ``` This command gets search results by using an ID. @@ -54,7 +54,7 @@ $wrkspace = "ContosoWorkspace" $query = "Type=Event" # Get Initial response -$response = Get-AzOperationalInsightsSearchResults -WorkspaceName $wrkspace -ResourceGroupName $resGroup -Query $query -Top 15000 +$response = Get-AzOperationalInsightsSearchResult -WorkspaceName $wrkspace -ResourceGroupName $resGroup -Query $query -Top 15000 $elapsedTime = $(get-date) - $script:StartTime Write-Host "Elapsed: " $elapsedTime "Status: " $response.Metadata.Status @@ -64,7 +64,7 @@ $reqId = $reqIdParts[$reqIdParts.Count -1] # Poll if pending while($response.Metadata.Status -eq "Pending" -and $error.Count -eq 0) { - $response = Get-AzOperationalInsightsSearchResults -WorkspaceName $wrkspace -ResourceGroupName $resGroup -Id $reqId + $response = Get-AzOperationalInsightsSearchResult -WorkspaceName $wrkspace -ResourceGroupName $resGroup -Id $reqId $elapsedTime = $(get-date) - $script:StartTime Write-Host "Elapsed: " $elapsedTime "Status: " $response.Metadata.Status } @@ -242,6 +242,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzOperationalInsightsSavedSearchResults](./Get-AzOperationalInsightsSavedSearchResults.md) +[Get-AzOperationalInsightsSavedSearchResult](./Get-AzOperationalInsightsSavedSearchResult.md) diff --git a/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsWorkspaceManagementGroups.md b/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsWorkspaceManagementGroup.md similarity index 85% rename from src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsWorkspaceManagementGroups.md rename to src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsWorkspaceManagementGroup.md index 456228f0ff14..f33bdaaaeb93 100644 --- a/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsWorkspaceManagementGroups.md +++ b/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsWorkspaceManagementGroup.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll-Help.xml Module Name: Az.OperationalInsights ms.assetid: F29E0B9C-2479-44FB-B196-EAF97B69E6A6 -online version: https://docs.microsoft.com/en-us/powershell/module/az.operationalinsights/get-azoperationalinsightsworkspacemanagementgroups +online version: https://docs.microsoft.com/en-us/powershell/module/az.operationalinsights/get-azoperationalinsightsworkspacemanagementgroup schema: 2.0.0 --- -# Get-AzOperationalInsightsWorkspaceManagementGroups +# Get-AzOperationalInsightsWorkspaceManagementGroup ## SYNOPSIS Gets details of management groups connected to a workspace. @@ -14,25 +14,25 @@ Gets details of management groups connected to a workspace. ## SYNTAX ``` -Get-AzOperationalInsightsWorkspaceManagementGroups [-ResourceGroupName] [-Name] +Get-AzOperationalInsightsWorkspaceManagementGroup [-ResourceGroupName] [-Name] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzOperationalInsightsWorkspaceManagementGroups** cmdlet lists the management groups that are connected to a workspace. +The **Get-AzOperationalInsightsWorkspaceManagementGroup** cmdlet lists the management groups that are connected to a workspace. ## EXAMPLES ### Example 1: Get management groups by workspace name ``` -PS C:\>Get-AzOperationalInsightsWorkspaceManagementGroups -ResourceGroupName "ContosoResourceGroup" -Name "MyWorkspace" +PS C:\>Get-AzOperationalInsightsWorkspaceManagementGroup -ResourceGroupName "ContosoResourceGroup" -Name "MyWorkspace" ``` This command gets the management groups for the workspace named MyWorkspace in the resource group named ContosoResourceGroup. ### Example 2: Get management groups by using the pipeline ``` -PS C:\>Get-AzOperationalInsightsWorkspace -ResourceGroupName "ContosoResourceGroup" -Name "MyWorkspace" | Get-AzOperationalInsightsWorkspaceManagementGroups +PS C:\>Get-AzOperationalInsightsWorkspace -ResourceGroupName "ContosoResourceGroup" -Name "MyWorkspace" | Get-AzOperationalInsightsWorkspaceManagementGroup ``` This command uses the Get-AzOperationalInsightsWorkspace cmdlet to get the workspace named MyWorkspace, and then passes the workspace to the current cmdlet, which gets the management groups for that workspace. diff --git a/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsWorkspaceSharedKeys.md b/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsWorkspaceSharedKey.md similarity index 85% rename from src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsWorkspaceSharedKeys.md rename to src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsWorkspaceSharedKey.md index 0d5982ada434..ac8cc74c9a03 100644 --- a/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsWorkspaceSharedKeys.md +++ b/src/OperationalInsights/OperationalInsights/help/Get-AzOperationalInsightsWorkspaceSharedKey.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll-Help.xml Module Name: Az.OperationalInsights ms.assetid: 112D5C69-3F4F-4BB6-9DA4-52757146B0EF -online version: https://docs.microsoft.com/en-us/powershell/module/az.operationalinsights/get-azoperationalinsightsworkspacesharedkeys +online version: https://docs.microsoft.com/en-us/powershell/module/az.operationalinsights/get-azoperationalinsightsworkspacesharedkey schema: 2.0.0 --- -# Get-AzOperationalInsightsWorkspaceSharedKeys +# Get-AzOperationalInsightsWorkspaceSharedKey ## SYNOPSIS Gets the shared keys for a workspace. @@ -14,29 +14,29 @@ Gets the shared keys for a workspace. ## SYNTAX ``` -Get-AzOperationalInsightsWorkspaceSharedKeys [-ResourceGroupName] [-Name] +Get-AzOperationalInsightsWorkspaceSharedKey [-ResourceGroupName] [-Name] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzOperationalInsightsWorkspaceSharedKeys** cmdlet lists the shared keys for a workspace. +The **Get-AzOperationalInsightsWorkspaceSharedKey** cmdlet lists the shared keys for a workspace. The keys are used to connect Operational Insights agents to the workspace. ## EXAMPLES ### Example 1: Get shared keys by workspace name ``` -PS C:\>Get-AzOperationalInsightsWorkspaceSharedKeys -ResourceGroupName "ContosoResourceGroup" -Name "MyWorkspace" +PS C:\>Get-AzOperationalInsightsWorkspaceSharedKey -ResourceGroupName "ContosoResourceGroup" -Name "MyWorkspace" ``` This command gets the shared keys for the workspace named MyWorkspace in the resource group named ContosoResourceGroup. ### Example 2: Get shared keys by using the pipeline ``` -PS C:\>Get-AzOperationalInsightsWorkspace -ResourceGroupName "ContosoResourceGroup" -Name "MyWorkspace" | Get-AzOperationalInsightsWorkspaceSharedKeys +PS C:\>Get-AzOperationalInsightsWorkspace -ResourceGroupName "ContosoResourceGroup" -Name "MyWorkspace" | Get-AzOperationalInsightsWorkspaceSharedKey ``` -This command gets the workspace named MyWorkspace using the Get-AzOperationalInsightsWorkspace cmdlet, and then passes the workspace to the **Get-AzOperationalInsightsWorkspaceSharedKeys** cmdlet. +This command gets the workspace named MyWorkspace using the Get-AzOperationalInsightsWorkspace cmdlet, and then passes the workspace to the **Get-AzOperationalInsightsWorkspaceSharedKey** cmdlet. The command gets the shared keys for that workspace. ## PARAMETERS diff --git a/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 b/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 index dc9112632f89..f2823d11d58d 100644 --- a/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 +++ b/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.PolicyInsights.dll' diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 b/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 index 254388fcbae8..21fa6980842c 100644 --- a/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 +++ b/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.PowerBIEmbedded.dll', @@ -78,9 +78,9 @@ FunctionsToExport = @() # 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 = 'Remove-AzPowerBIWorkspaceCollection', 'Get-AzPowerBIWorkspaceCollection', - 'Get-AzPowerBIWorkspaceCollectionAccessKeys', + 'Get-AzPowerBIWorkspaceCollectionAccessKey', 'Get-AzPowerBIWorkspace', 'New-AzPowerBIWorkspaceCollection', - 'Reset-AzPowerBIWorkspaceCollectionAccessKeys', + 'Reset-AzPowerBIWorkspaceCollectionAccessKey', 'Resume-AzPowerBIEmbeddedCapacity', 'Suspend-AzPowerBIEmbeddedCapacity', 'Get-AzPowerBIEmbeddedCapacity', 'Remove-AzPowerBIEmbeddedCapacity', @@ -91,7 +91,7 @@ CmdletsToExport = 'Remove-AzPowerBIWorkspaceCollection', # VariablesToExport = @() # Aliases 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 aliases to export. -AliasesToExport = @() +AliasesToExport = 'Get-AzPowerBIWorkspaceCollectionAccessKeys', 'Reset-AzPowerBIWorkspaceCollectionAccessKeys' # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md b/src/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md index 5c6c63a4c25f..fb3781f466dc 100644 --- a/src/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md +++ b/src/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.0.0 * General availability of `Az.PowerBIEmbedded` module \ No newline at end of file diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/WorkspaceCollection/GetWorkspaceCollectionAccessKeys.cs b/src/PowerBIEmbedded/PowerBIEmbedded/WorkspaceCollection/GetWorkspaceCollectionAccessKeys.cs index f8a3897bb453..d4b69de6f7f6 100644 --- a/src/PowerBIEmbedded/PowerBIEmbedded/WorkspaceCollection/GetWorkspaceCollectionAccessKeys.cs +++ b/src/PowerBIEmbedded/PowerBIEmbedded/WorkspaceCollection/GetWorkspaceCollectionAccessKeys.cs @@ -16,10 +16,13 @@ using Microsoft.Azure.Commands.Management.PowerBIEmbedded.Models; using Microsoft.Azure.Management.PowerBIEmbedded; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Management.PowerBIEmbedded.WorkspaceCollection { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "PowerBIWorkspaceCollectionAccessKeys"), OutputType(typeof(PSWorkspaceCollectionAccessKey))] + [GenericBreakingChange("Get-AzPowerBIWorkspaceCollectionAccessKeys alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "PowerBIWorkspaceCollectionAccessKey"), OutputType(typeof(PSWorkspaceCollectionAccessKey))] + [Alias("Get-AzPowerBIWorkspaceCollectionAccessKeys")] public class GetWorkspaceCollectionAccessKeys : WorkspaceCollectionBaseCmdlet { [Parameter( diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/WorkspaceCollection/ResetWorkspaceCollectionAccessKeys.cs b/src/PowerBIEmbedded/PowerBIEmbedded/WorkspaceCollection/ResetWorkspaceCollectionAccessKeys.cs index f51f21fd464c..3915b97270ca 100644 --- a/src/PowerBIEmbedded/PowerBIEmbedded/WorkspaceCollection/ResetWorkspaceCollectionAccessKeys.cs +++ b/src/PowerBIEmbedded/PowerBIEmbedded/WorkspaceCollection/ResetWorkspaceCollectionAccessKeys.cs @@ -21,10 +21,13 @@ using Microsoft.Azure.Management.PowerBIEmbedded; using Microsoft.Azure.Management.PowerBIEmbedded.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Management.PowerBIEmbedded.WorkspaceCollection { - [Cmdlet("Reset", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "PowerBIWorkspaceCollectionAccessKeys", SupportsShouldProcess = true), OutputType(typeof(PSWorkspaceCollectionAccessKey))] + [GenericBreakingChange("Reset-AzPowerBIWorkspaceCollectionAccessKeys alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Reset", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "PowerBIWorkspaceCollectionAccessKey", SupportsShouldProcess = true), OutputType(typeof(PSWorkspaceCollectionAccessKey))] + [Alias("Reset-AzPowerBIWorkspaceCollectionAccessKeys")] public class ResetWorkspaceCollectionAccessKeys : WorkspaceCollectionBaseCmdlet { [Parameter( diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/help/Az.PowerBIEmbedded.md b/src/PowerBIEmbedded/PowerBIEmbedded/help/Az.PowerBIEmbedded.md index 294979f28c50..48b73f953306 100644 --- a/src/PowerBIEmbedded/PowerBIEmbedded/help/Az.PowerBIEmbedded.md +++ b/src/PowerBIEmbedded/PowerBIEmbedded/help/Az.PowerBIEmbedded.md @@ -20,7 +20,7 @@ Gets the workspaces in a Power BI workspace collection. ### [Get-AzPowerBIWorkspaceCollection](Get-AzPowerBIWorkspaceCollection.md) Gets Power BI workspace collections. -### [Get-AzPowerBIWorkspaceCollectionAccessKeys](Get-AzPowerBIWorkspaceCollectionAccessKeys.md) +### [Get-AzPowerBIWorkspaceCollectionAccessKey](Get-AzPowerBIWorkspaceCollectionAccessKey.md) Gets the current access keys associated with a Power BI workspace collection. ### [New-AzPowerBIEmbeddedCapacity](New-AzPowerBIEmbeddedCapacity.md) @@ -35,7 +35,7 @@ Deletes an instance of PowerBI Embedded Capacity. ### [Remove-AzPowerBIWorkspaceCollection](Remove-AzPowerBIWorkspaceCollection.md) Removes a Power BI workspace collection. -### [Reset-AzPowerBIWorkspaceCollectionAccessKeys](Reset-AzPowerBIWorkspaceCollectionAccessKeys.md) +### [Reset-AzPowerBIWorkspaceCollectionAccessKey](Reset-AzPowerBIWorkspaceCollectionAccessKey.md) Resets the specified access key. ### [Resume-AzPowerBIEmbeddedCapacity](Resume-AzPowerBIEmbeddedCapacity.md) diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/help/Get-AzPowerBIWorkspaceCollectionAccessKeys.md b/src/PowerBIEmbedded/PowerBIEmbedded/help/Get-AzPowerBIWorkspaceCollectionAccessKey.md similarity index 78% rename from src/PowerBIEmbedded/PowerBIEmbedded/help/Get-AzPowerBIWorkspaceCollectionAccessKeys.md rename to src/PowerBIEmbedded/PowerBIEmbedded/help/Get-AzPowerBIWorkspaceCollectionAccessKey.md index 3632f2c8cf20..1e071c42690c 100644 --- a/src/PowerBIEmbedded/PowerBIEmbedded/help/Get-AzPowerBIWorkspaceCollectionAccessKeys.md +++ b/src/PowerBIEmbedded/PowerBIEmbedded/help/Get-AzPowerBIWorkspaceCollectionAccessKey.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.PowerBIEmbedded.dll-Help.xml Module Name: Az.PowerBIEmbedded ms.assetid: 3FED0088-47DA-4565-B9F0-DACF9B2DC0C7 -online version: https://docs.microsoft.com/en-us/powershell/module/az.powerbiembedded/get-azpowerbiworkspacecollectionaccesskeys +online version: https://docs.microsoft.com/en-us/powershell/module/az.powerbiembedded/get-azpowerbiworkspacecollectionaccesskey schema: 2.0.0 --- -# Get-AzPowerBIWorkspaceCollectionAccessKeys +# Get-AzPowerBIWorkspaceCollectionAccessKey ## SYNOPSIS Gets the current access keys associated with a Power BI workspace collection. @@ -14,18 +14,18 @@ Gets the current access keys associated with a Power BI workspace collection. ## SYNTAX ``` -Get-AzPowerBIWorkspaceCollectionAccessKeys [-ResourceGroupName] [-WorkspaceCollectionName] +Get-AzPowerBIWorkspaceCollectionAccessKey [-ResourceGroupName] [-WorkspaceCollectionName] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzPowerBIWorkspaceCollectionAccessKeys** cmdlet gets the current access keys associated with a Power BI workspace collection. +The **Get-AzPowerBIWorkspaceCollectionAccessKey** cmdlet gets the current access keys associated with a Power BI workspace collection. ## EXAMPLES ### Example 1: Get access keys ``` -PS C:\>Get-AzPowerBIWorkspaceCollectionAccessKeys -ResourceGroupName "ResourceGroup17" -WorkspaceCollectionName "WCN11" +PS C:\>Get-AzPowerBIWorkspaceCollectionAccessKey -ResourceGroupName "ResourceGroup17" -WorkspaceCollectionName "WCN11" ``` This command gets access keys for the workspace collection named WCN11 in the specified resource group. @@ -92,6 +92,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Reset-AzPowerBIWorkspaceCollectionAccessKeys](./Reset-AzPowerBIWorkspaceCollectionAccessKeys.md) +[Reset-AzPowerBIWorkspaceCollectionAccessKey](./Reset-AzPowerBIWorkspaceCollectionAccessKey.md) diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/help/Reset-AzPowerBIWorkspaceCollectionAccessKeys.md b/src/PowerBIEmbedded/PowerBIEmbedded/help/Reset-AzPowerBIWorkspaceCollectionAccessKey.md similarity index 86% rename from src/PowerBIEmbedded/PowerBIEmbedded/help/Reset-AzPowerBIWorkspaceCollectionAccessKeys.md rename to src/PowerBIEmbedded/PowerBIEmbedded/help/Reset-AzPowerBIWorkspaceCollectionAccessKey.md index f41deec08620..bcf1e65f86aa 100644 --- a/src/PowerBIEmbedded/PowerBIEmbedded/help/Reset-AzPowerBIWorkspaceCollectionAccessKeys.md +++ b/src/PowerBIEmbedded/PowerBIEmbedded/help/Reset-AzPowerBIWorkspaceCollectionAccessKey.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.PowerBIEmbedded.dll-Help.xml Module Name: Az.PowerBIEmbedded ms.assetid: 8FB2D9A0-BF7A-482D-B3A2-566FCA8C62A1 -online version: https://docs.microsoft.com/en-us/powershell/module/az.powerbiembedded/reset-azpowerbiworkspacecollectionaccesskeys +online version: https://docs.microsoft.com/en-us/powershell/module/az.powerbiembedded/reset-azpowerbiworkspacecollectionaccesskey schema: 2.0.0 --- -# Reset-AzPowerBIWorkspaceCollectionAccessKeys +# Reset-AzPowerBIWorkspaceCollectionAccessKey ## SYNOPSIS Resets the specified access key. @@ -14,18 +14,18 @@ Resets the specified access key. ## SYNTAX ``` -Reset-AzPowerBIWorkspaceCollectionAccessKeys [-ResourceGroupName] [-WorkspaceCollectionName] +Reset-AzPowerBIWorkspaceCollectionAccessKey [-ResourceGroupName] [-WorkspaceCollectionName] [-Key1] [-Key2] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Reset-AzPowerBIWorkspaceCollectionAccessKeys** cmdlet resets the specified access key in your Power BI workspace collection. +The **Reset-AzPowerBIWorkspaceCollectionAccessKey** cmdlet resets the specified access key in your Power BI workspace collection. ## EXAMPLES ### Example 1: Reset the primary access key ``` -PS C:\>Reset-AzPowerBIWorkspaceCollectionAccessKeys -ResourceGroupName "ResourceGroup17" -WorkspaceCollectionName "WCN11" -Key1 +PS C:\>Reset-AzPowerBIWorkspaceCollectionAccessKey -ResourceGroupName "ResourceGroup17" -WorkspaceCollectionName "WCN11" -Key1 ``` This command resets the primary access key for the workspace collection named WCN11 in the specified resource group. @@ -153,6 +153,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzPowerBIWorkspaceCollectionAccessKeys](./Get-AzPowerBIWorkspaceCollectionAccessKeys.md) +[Get-AzPowerBIWorkspaceCollectionAccessKey](./Get-AzPowerBIWorkspaceCollectionAccessKey.md) diff --git a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Jobs/GetAzureRmRecoveryServicesBackupJobDetails.cs b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Jobs/GetAzureRmRecoveryServicesBackupJobDetails.cs index 6e5d4b959060..3ed23c544e23 100644 --- a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Jobs/GetAzureRmRecoveryServicesBackupJobDetails.cs +++ b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Jobs/GetAzureRmRecoveryServicesBackupJobDetails.cs @@ -16,13 +16,16 @@ using Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models; using Microsoft.Azure.Commands.RecoveryServices.Backup.Helpers; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets { /// /// Gets detailed information about a particular job. /// - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RecoveryServicesBackupJobDetails", DefaultParameterSetName = JobFilterSet), OutputType(typeof(JobBase))] + [GenericBreakingChange("Get-AzRecoveryServicesBackupJobDetails alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RecoveryServicesBackupJobDetail", DefaultParameterSetName = JobFilterSet), OutputType(typeof(JobBase))] + [Alias("Get-AzRecoveryServicesBackupJobDetails")] public class GetAzureRmRecoveryServicesBackupJobDetails : RSBackupVaultCmdletBase { protected const string IdFilterSet = "IdFilterSet"; diff --git a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 index 3301cdfb3bb7..bbfdf440c83a 100644 --- a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 +++ b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\AutoMapper.dll', @@ -150,7 +150,7 @@ CmdletsToExport = 'Get-AzRecoveryServicesBackupProperty', 'Update-AzRecoveryServicesAsrRecoveryPlan', 'Update-AzRecoveryServicesAsrServicesProvider', 'Update-AzRecoveryServicesAsrvCenter', - 'Set-AzRecoveryServicesBackupProperties', + 'Set-AzRecoveryServicesBackupProperty', 'Set-AzRecoveryServicesVaultContext', 'Backup-AzRecoveryServicesBackupItem', 'Get-AzRecoveryServicesBackupManagementServer', @@ -165,7 +165,7 @@ CmdletsToExport = 'Get-AzRecoveryServicesBackupProperty', 'Get-AzRecoveryServicesBackupProtectableItem', 'Initialize-AzRecoveryServicesBackupProtectableItem', 'Get-AzRecoveryServicesBackupJob', - 'Get-AzRecoveryServicesBackupJobDetails', + 'Get-AzRecoveryServicesBackupJobDetail', 'Stop-AzRecoveryServicesBackupJob', 'Wait-AzRecoveryServicesBackupJob', 'Get-AzRecoveryServicesBackupProtectionPolicy', @@ -222,7 +222,8 @@ AliasesToExport = 'Get-AzRecoveryServicesBackupProperties', 'Edit-ASRRP', 'Start-ASRTestFailoverJob', 'Start-ASRUnplannedFailoverJob', 'Stop-ASRJob', 'Update-ASRMobilityService', 'Update-ASRPolicy', 'Update-ASRProtectionDirection', 'Update-ASRRecoveryPlan', - 'Update-ASRServicesProvider', 'Update-ASRvCenter' + 'Update-ASRServicesProvider', 'Update-ASRvCenter', + 'Set-AzRecoveryServicesBackupProperties', 'Get-AzRecoveryServicesBackupJobDetails' # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/RecoveryServices/RecoveryServices/ChangeLog.md b/src/RecoveryServices/RecoveryServices/ChangeLog.md index a23ee6ff3296..2ed475deb94a 100644 --- a/src/RecoveryServices/RecoveryServices/ChangeLog.md +++ b/src/RecoveryServices/RecoveryServices/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.2.0 * Added SnapshotRetentionInDays in Azure VM policy to support Instant RP diff --git a/src/RecoveryServices/RecoveryServices/Vault/SetAzureRmRecoveryServicesBackupProperties.cs b/src/RecoveryServices/RecoveryServices/Vault/SetAzureRmRecoveryServicesBackupProperties.cs index 136ed8a54daa..ef8a61e9cafe 100644 --- a/src/RecoveryServices/RecoveryServices/Vault/SetAzureRmRecoveryServicesBackupProperties.cs +++ b/src/RecoveryServices/RecoveryServices/Vault/SetAzureRmRecoveryServicesBackupProperties.cs @@ -18,13 +18,16 @@ using System.Management.Automation; using Microsoft.Azure.Commands.RecoveryServices.Properties; using Microsoft.Azure.Management.RecoveryServices.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.RecoveryServices { /// /// Sets Azure Recovery Services Vault Backup Properties. /// - [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RecoveryServicesBackupProperties", SupportsShouldProcess = true), OutputType(typeof(void))] + [GenericBreakingChange("Set-AzRecoveryServicesBackupProperties alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RecoveryServicesBackupProperty", SupportsShouldProcess = true), OutputType(typeof(void))] + [Alias("Set-AzRecoveryServicesBackupProperties")] public class SetAzureRmRecoveryServicesBackupProperties : RecoveryServicesCmdletBase { #region Parameters diff --git a/src/RecoveryServices/RecoveryServices/help/Az.RecoveryServices.md b/src/RecoveryServices/RecoveryServices/help/Az.RecoveryServices.md index eb9058b1e9e2..f01cb3745c42 100644 --- a/src/RecoveryServices/RecoveryServices/help/Az.RecoveryServices.md +++ b/src/RecoveryServices/RecoveryServices/help/Az.RecoveryServices.md @@ -95,7 +95,7 @@ Gets the items from a container in Backup. ### [Get-AzRecoveryServicesBackupJob](Get-AzRecoveryServicesBackupJob.md) Gets Backup jobs. -### [Get-AzRecoveryServicesBackupJobDetails](Get-AzRecoveryServicesBackupJobDetails.md) +### [Get-AzRecoveryServicesBackupJobDetail](Get-AzRecoveryServicesBackupJobDetail.md) Gets details for a Backup job. ### [Get-AzRecoveryServicesBackupManagementServer](Get-AzRecoveryServicesBackupManagementServer.md) @@ -239,7 +239,7 @@ Sets recovery properties such as target network and virtual machine size for the ### [Set-AzRecoveryServicesAsrVaultContext](Set-AzRecoveryServicesAsrVaultContext.md) Sets the Recovery Services vault context to be used for subsequent Azure Site Recovery operations in the current PowerShell session. -### [Set-AzRecoveryServicesBackupProperties](Set-AzRecoveryServicesBackupProperties.md) +### [Set-AzRecoveryServicesBackupProperty](Set-AzRecoveryServicesBackupProperty.md) Sets the properties for backup management. ### [Set-AzRecoveryServicesBackupProtectionPolicy](Set-AzRecoveryServicesBackupProtectionPolicy.md) diff --git a/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesBackupJobDetails.md b/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesBackupJobDetail.md similarity index 87% rename from src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesBackupJobDetails.md rename to src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesBackupJobDetail.md index d3f1a9fee07b..6f2f38df66d8 100644 --- a/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesBackupJobDetails.md +++ b/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesBackupJobDetail.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll-Help.xml Module Name: Az.RecoveryServices ms.assetid: 707A3E57-AF46-44B3-A491-89554900EF03 -online version: https://docs.microsoft.com/en-us/powershell/module/az.recoveryservices/get-azrecoveryservicesbackupjobdetails +online version: https://docs.microsoft.com/en-us/powershell/module/az.recoveryservices/get-azrecoveryservicesbackupjobdetail schema: 2.0.0 --- -# Get-AzRecoveryServicesBackupJobDetails +# Get-AzRecoveryServicesBackupJobDetail ## SYNOPSIS Gets details for a Backup job. @@ -15,18 +15,18 @@ Gets details for a Backup job. ### JobFilterSet (Default) ``` -Get-AzRecoveryServicesBackupJobDetails [-Job] [-VaultId ] +Get-AzRecoveryServicesBackupJobDetail [-Job] [-VaultId ] [-DefaultProfile ] [] ``` ### IdFilterSet ``` -Get-AzRecoveryServicesBackupJobDetails [-JobId] [-VaultId ] +Get-AzRecoveryServicesBackupJobDetail [-JobId] [-VaultId ] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzRecoveryServicesBackupJobDetails** cmdlet gets Azure Backup job details for a specified job. +The **Get-AzRecoveryServicesBackupJobDetail** cmdlet gets Azure Backup job details for a specified job. Set the vault context by using the Set-AzRecoveryServicesVaultContext cmdlet before you use the current cmdlet. ## EXAMPLES @@ -34,7 +34,7 @@ Set the vault context by using the Set-AzRecoveryServicesVaultContext cmdlet bef ### Example 1: Get Backup job details for failed jobs ``` PS C:\>$Jobs = Get-AzRecoveryServicesBackupJob -Status Failed -PS C:\> $JobDetails = Get-AzRecoveryServicesBackupJobDetails -Job $Jobs[0] +PS C:\> $JobDetails = Get-AzRecoveryServicesBackupJobDetail -Job $Jobs[0] PS C:\> $JobDetails.ErrorDetails ``` diff --git a/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProperties.md b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProperty.md similarity index 86% rename from src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProperties.md rename to src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProperty.md index 6e85db2c3760..f70d58055cda 100644 --- a/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProperties.md +++ b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProperty.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll-Help.xml Module Name: Az.RecoveryServices ms.assetid: C635D723-0F03-4EF8-9435-24DBE0859899 -online version: https://docs.microsoft.com/en-us/powershell/module/az.recoveryservices/set-azrecoveryservicesbackupproperties +online version: https://docs.microsoft.com/en-us/powershell/module/az.recoveryservices/set-azrecoveryservicesbackupproperty schema: 2.0.0 --- -# Set-AzRecoveryServicesBackupProperties +# Set-AzRecoveryServicesBackupProperty ## SYNOPSIS Sets the properties for backup management. @@ -14,20 +14,20 @@ Sets the properties for backup management. ## SYNTAX ``` -Set-AzRecoveryServicesBackupProperties -Vault +Set-AzRecoveryServicesBackupProperty -Vault [-BackupStorageRedundancy ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Set-AzRecoveryServicesBackupProperties** cmdlet sets backup storage properties for a Recovery Services vault. +The **Set-AzRecoveryServicesBackupProperty** cmdlet sets backup storage properties for a Recovery Services vault. ## EXAMPLES ### Example 1: Set GeoRedundant storage for a vault ``` PS C:\> $Vault01 = Get-AzRecoveryServicesVault -Name "TestVault" -PS C:\> Set-AzRecoveryServicesBackupProperties -Vault $Vault01 -BackupStorageRedundancy GeoRedundant +PS C:\> Set-AzRecoveryServicesBackupProperty -Vault $Vault01 -BackupStorageRedundancy GeoRedundant ``` The first command gets the vault named TestVault, and then stores it in the $Vault01 variable. @@ -127,7 +127,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzRecoveryServicesBackupProperties](./Get-AzRecoveryServicesBackupProperties.md) +[Get-AzRecoveryServicesBackupProperty](./Get-AzRecoveryServicesBackupProperty.md) [Get-AzRecoveryServicesVault](./Get-AzRecoveryServicesVault.md) diff --git a/src/RedisCache/RedisCache/Az.RedisCache.psd1 b/src/RedisCache/RedisCache/Az.RedisCache.psd1 index 71a2785e3e62..a36257a9e1e4 100644 --- a/src/RedisCache/RedisCache/Az.RedisCache.psd1 +++ b/src/RedisCache/RedisCache/Az.RedisCache.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Insights.dll', @@ -78,7 +78,7 @@ FunctionsToExport = @() CmdletsToExport = 'Remove-AzRedisCachePatchSchedule', 'New-AzRedisCacheScheduleEntry', 'Get-AzRedisCachePatchSchedule', 'New-AzRedisCachePatchSchedule', 'Reset-AzRedisCache', 'Export-AzRedisCache', 'Import-AzRedisCache', - 'Remove-AzRedisCacheDiagnostics', 'Set-AzRedisCacheDiagnostics', + 'Remove-AzRedisCacheDiagnostic', 'Set-AzRedisCacheDiagnostic', 'Set-AzRedisCache', 'New-AzRedisCacheKey', 'Get-AzRedisCacheKey', 'Get-AzRedisCache', 'Remove-AzRedisCache', 'New-AzRedisCache', 'New-AzRedisCacheLink', 'Remove-AzRedisCacheLink', @@ -89,7 +89,7 @@ CmdletsToExport = 'Remove-AzRedisCachePatchSchedule', 'New-AzRedisCacheScheduleE # VariablesToExport = @() # Aliases 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 aliases to export. -AliasesToExport = @() +AliasesToExport = 'Set-AzRedisCacheDiagnostics', 'Remove-AzRedisCacheDiagnostics' # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/RedisCache/RedisCache/ChangeLog.md b/src/RedisCache/RedisCache/ChangeLog.md index e15e47219671..8b35ff9ebdc6 100644 --- a/src/RedisCache/RedisCache/ChangeLog.md +++ b/src/RedisCache/RedisCache/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.0.0 * General availability of `Az.RedisCache` module \ No newline at end of file diff --git a/src/RedisCache/RedisCache/Commands/RemoveAzureRedisCacheDiagnostics.cs b/src/RedisCache/RedisCache/Commands/RemoveAzureRedisCacheDiagnostics.cs index a113ec33409c..2b9cd65471c1 100644 --- a/src/RedisCache/RedisCache/Commands/RemoveAzureRedisCacheDiagnostics.cs +++ b/src/RedisCache/RedisCache/Commands/RemoveAzureRedisCacheDiagnostics.cs @@ -18,10 +18,13 @@ namespace Microsoft.Azure.Commands.RedisCache { using Microsoft.Azure.Commands.RedisCache.Models; using Microsoft.Azure.Commands.RedisCache.Properties; + using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using ResourceManager.Common.ArgumentCompleters; using System.Management.Automation; - [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCacheDiagnostics", SupportsShouldProcess = true),OutputType(typeof(void))] + [GenericBreakingChange("Remove-AzRedisCacheDiagnostics alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCacheDiagnostic", SupportsShouldProcess = true),OutputType(typeof(void))] + [Alias("Remove-AzRedisCacheDiagnostics")] public class RemoveAzureRedisCacheDiagnostics : RedisCacheCmdletBase { [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Name of resource group under which cache exists.")] diff --git a/src/RedisCache/RedisCache/Commands/SetAzureRedisCacheDiagnostics.cs b/src/RedisCache/RedisCache/Commands/SetAzureRedisCacheDiagnostics.cs index cd9bfc5c496e..a4520cc369d1 100644 --- a/src/RedisCache/RedisCache/Commands/SetAzureRedisCacheDiagnostics.cs +++ b/src/RedisCache/RedisCache/Commands/SetAzureRedisCacheDiagnostics.cs @@ -16,11 +16,14 @@ namespace Microsoft.Azure.Commands.RedisCache { using Microsoft.Azure.Commands.RedisCache.Models; using Microsoft.Azure.Commands.RedisCache.Properties; + using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using ResourceManager.Common.ArgumentCompleters; using System; using System.Management.Automation; - [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCacheDiagnostics", SupportsShouldProcess = true), OutputType(typeof(void))] + [GenericBreakingChange("Set-AzRedisCacheDiagnostics alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCacheDiagnostic", SupportsShouldProcess = true), OutputType(typeof(void))] + [Alias("Set-AzRedisCacheDiagnostics")] public class SetAzureRedisCacheDiagnostics : RedisCacheCmdletBase { [Parameter(ValueFromPipelineByPropertyName = true, Mandatory = false, HelpMessage = "Name of resource group under which cache exists.")] diff --git a/src/RedisCache/RedisCache/help/Az.RedisCache.md b/src/RedisCache/RedisCache/help/Az.RedisCache.md index 04d8c41d78d9..da99f74c607d 100644 --- a/src/RedisCache/RedisCache/help/Az.RedisCache.md +++ b/src/RedisCache/RedisCache/help/Az.RedisCache.md @@ -53,7 +53,7 @@ Creates a schedule entry. ### [Remove-AzRedisCache](Remove-AzRedisCache.md) Removes a Redis Cache. -### [Remove-AzRedisCacheDiagnostics](Remove-AzRedisCacheDiagnostics.md) +### [Remove-AzRedisCacheDiagnostic](Remove-AzRedisCacheDiagnostic.md) Disables diagnostics on an Azure Redis Cache. ### [Remove-AzRedisCacheFirewallRule](Remove-AzRedisCacheFirewallRule.md) @@ -71,6 +71,6 @@ Restarts nodes of a cache. ### [Set-AzRedisCache](Set-AzRedisCache.md) Modifies a Redis Cache. -### [Set-AzRedisCacheDiagnostics](Set-AzRedisCacheDiagnostics.md) +### [Set-AzRedisCacheDiagnostic](Set-AzRedisCacheDiagnostic.md) Enables diagnostics on an Azure Redis Cache. diff --git a/src/RedisCache/RedisCache/help/Remove-AzRedisCacheDiagnostics.md b/src/RedisCache/RedisCache/help/Remove-AzRedisCacheDiagnostic.md similarity index 86% rename from src/RedisCache/RedisCache/help/Remove-AzRedisCacheDiagnostics.md rename to src/RedisCache/RedisCache/help/Remove-AzRedisCacheDiagnostic.md index 9b812862e892..a6a863da59d0 100644 --- a/src/RedisCache/RedisCache/help/Remove-AzRedisCacheDiagnostics.md +++ b/src/RedisCache/RedisCache/help/Remove-AzRedisCacheDiagnostic.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.RedisCache.dll-Help.xml Module Name: Az.RedisCache ms.assetid: BCF989AE-A718-4AFE-B7C0-8B148468D4EE -online version: https://docs.microsoft.com/en-us/powershell/module/az.rediscache/remove-azrediscachediagnostics +online version: https://docs.microsoft.com/en-us/powershell/module/az.rediscache/remove-azrediscachediagnostic schema: 2.0.0 --- -# Remove-AzRedisCacheDiagnostics +# Remove-AzRedisCacheDiagnostic ## SYNOPSIS Disables diagnostics on an Azure Redis Cache. @@ -14,18 +14,18 @@ Disables diagnostics on an Azure Redis Cache. ## SYNTAX ``` -Remove-AzRedisCacheDiagnostics [-ResourceGroupName ] -Name +Remove-AzRedisCacheDiagnostic [-ResourceGroupName ] -Name [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Remove-AzRedisCacheDiagnostics** cmdlet disables diagnostics on an Azure Redis Cache. +The **Remove-AzRedisCacheDiagnostic** cmdlet disables diagnostics on an Azure Redis Cache. ## EXAMPLES ### Example 1: Disable diagnostics ``` -PS C:\>Remove-AzRedisCacheDiagnostics -ResourceGroupName "ContosoResourceGroup" -Name "PeakCache" -Force +PS C:\>Remove-AzRedisCacheDiagnostic -ResourceGroupName "ContosoResourceGroup" -Name "PeakCache" -Force ``` This command disables diagnostics on specified Azure Redis Cache. @@ -125,6 +125,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Set-AzRedisCacheDiagnostics](./Set-AzRedisCacheDiagnostics.md) +[Set-AzRedisCacheDiagnostic](./Set-AzRedisCacheDiagnostic.md) diff --git a/src/RedisCache/RedisCache/help/Set-AzRedisCacheDiagnostics.md b/src/RedisCache/RedisCache/help/Set-AzRedisCacheDiagnostic.md similarity index 83% rename from src/RedisCache/RedisCache/help/Set-AzRedisCacheDiagnostics.md rename to src/RedisCache/RedisCache/help/Set-AzRedisCacheDiagnostic.md index 154a533d4d78..ed8f225582b4 100644 --- a/src/RedisCache/RedisCache/help/Set-AzRedisCacheDiagnostics.md +++ b/src/RedisCache/RedisCache/help/Set-AzRedisCacheDiagnostic.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.RedisCache.dll-Help.xml Module Name: Az.RedisCache ms.assetid: FA99C137-68E3-47D3-A0AC-FE33A481BE66 -online version: https://docs.microsoft.com/en-us/powershell/module/az.rediscache/set-azrediscachediagnostics +online version: https://docs.microsoft.com/en-us/powershell/module/az.rediscache/set-azrediscachediagnostic schema: 2.0.0 --- -# Set-AzRedisCacheDiagnostics +# Set-AzRedisCacheDiagnostic ## SYNOPSIS Enables diagnostics on an Azure Redis Cache. @@ -14,18 +14,18 @@ Enables diagnostics on an Azure Redis Cache. ## SYNTAX ``` -Set-AzRedisCacheDiagnostics [-ResourceGroupName ] -Name -StorageAccountId +Set-AzRedisCacheDiagnostic [-ResourceGroupName ] -Name -StorageAccountId [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Set-AzRedisCacheDiagnostics** cmdlet enables diagnostics for an Azure Redis Cache. +The **Set-AzRedisCacheDiagnostic** cmdlet enables diagnostics for an Azure Redis Cache. ## EXAMPLES ### Example 1: Enable diagnostics ``` -PS C:\>Set-AzRedisCacheDiagnostics -ResourceGroupName "ContosoResourceGroup" -Name "PeakCache" -StorageAccountId "/subscriptions/fffff139-aaaa-bbbb-cccc-21f21f35806e/resourcegroups/myresourcegroup/providers/Microsoft.Storage/storageAccounts/mystorageaccount" +PS C:\>Set-AzRedisCacheDiagnostic -ResourceGroupName "ContosoResourceGroup" -Name "PeakCache" -StorageAccountId "/subscriptions/fffff139-aaaa-bbbb-cccc-21f21f35806e/resourcegroups/myresourcegroup/providers/Microsoft.Storage/storageAccounts/mystorageaccount" ``` This command enables diagnostics for an Azure Redis cache. @@ -139,6 +139,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Remove-AzRedisCacheDiagnostics](./Remove-AzRedisCacheDiagnostics.md) +[Remove-AzRedisCacheDiagnostic](./Remove-AzRedisCacheDiagnostic.md) diff --git a/src/Relay/Relay/Az.Relay.psd1 b/src/Relay/Relay/Az.Relay.psd1 index a2abc8abac98..57143763c724 100644 --- a/src/Relay/Relay/Az.Relay.psd1 +++ b/src/Relay/Relay/Az.Relay.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Relay.dll' diff --git a/src/Reservations/Reservations/Az.Reservations.psd1 b/src/Reservations/Reservations/Az.Reservations.psd1 index 33fc13dad675..fda150e05457 100644 --- a/src/Reservations/Reservations/Az.Reservations.psd1 +++ b/src/Reservations/Reservations/Az.Reservations.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Reservations.dll' diff --git a/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 b/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 index b5dd5053e42c..ab55faf92d04 100644 --- a/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 +++ b/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.ResourceGraph.dll' diff --git a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs index 8c905b7991b6..8b839725a36d 100644 --- a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs +++ b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs @@ -116,69 +116,78 @@ protected ResourceWithParameterCmdletBase() [ValidateNotNullOrEmpty] public string TemplateUri { get; set; } + [Parameter(Mandatory = false, HelpMessage = "Skips the PowerShell dynamic parameter processing that checks if the provided template parameter contains all necessary parameters used by the template. " + + "This check would prompt the user to provide a value for the missing parameters, but providing the -SkipTemplateParameterPrompt will ignore this prompt and " + + "error out immediately if a parameter was found not to be bound in the template. For non-interactive scripts, -SkipTemplateParameterPrompt can be provided " + + "to provide a better error message in the case where not all required parameters are satisfied.")] + public SwitchParameter SkipTemplateParameterPrompt { get; set; } + public object GetDynamicParameters() { - if (TemplateObject != null && - TemplateObject != templateObject) - { - templateObject = TemplateObject; - if (string.IsNullOrEmpty(TemplateParameterUri)) - { - dynamicParameters = TemplateUtility.GetTemplateParametersFromFile( - TemplateObject, - TemplateParameterObject, - this.ResolvePath(TemplateParameterFile), - MyInvocation.MyCommand.Parameters.Keys.ToArray()); - } - else - { - dynamicParameters = TemplateUtility.GetTemplateParametersFromFile( - TemplateObject, - TemplateParameterObject, - TemplateParameterUri, - MyInvocation.MyCommand.Parameters.Keys.ToArray()); - } - } - else if (!string.IsNullOrEmpty(TemplateFile) && - !TemplateFile.Equals(templateFile, StringComparison.OrdinalIgnoreCase)) + if (!this.IsParameterBound(c => c.SkipTemplateParameterPrompt)) { - templateFile = TemplateFile; - if (string.IsNullOrEmpty(TemplateParameterUri)) - { - dynamicParameters = TemplateUtility.GetTemplateParametersFromFile( - this.ResolvePath(TemplateFile), - TemplateParameterObject, - this.ResolvePath(TemplateParameterFile), - MyInvocation.MyCommand.Parameters.Keys.ToArray()); - } - else + if (TemplateObject != null && + TemplateObject != templateObject) { - dynamicParameters = TemplateUtility.GetTemplateParametersFromFile( - this.ResolvePath(TemplateFile), - TemplateParameterObject, - TemplateParameterUri, - MyInvocation.MyCommand.Parameters.Keys.ToArray()); + templateObject = TemplateObject; + if (string.IsNullOrEmpty(TemplateParameterUri)) + { + dynamicParameters = TemplateUtility.GetTemplateParametersFromFile( + TemplateObject, + TemplateParameterObject, + this.ResolvePath(TemplateParameterFile), + MyInvocation.MyCommand.Parameters.Keys.ToArray()); + } + else + { + dynamicParameters = TemplateUtility.GetTemplateParametersFromFile( + TemplateObject, + TemplateParameterObject, + TemplateParameterUri, + MyInvocation.MyCommand.Parameters.Keys.ToArray()); + } } - } - else if (!string.IsNullOrEmpty(TemplateUri) && - !TemplateUri.Equals(templateUri, StringComparison.OrdinalIgnoreCase)) - { - templateUri = TemplateUri; - if (string.IsNullOrEmpty(TemplateParameterUri)) + else if (!string.IsNullOrEmpty(TemplateFile) && + !TemplateFile.Equals(templateFile, StringComparison.OrdinalIgnoreCase)) { - dynamicParameters = TemplateUtility.GetTemplateParametersFromFile( - TemplateUri, - TemplateParameterObject, - this.ResolvePath(TemplateParameterFile), - MyInvocation.MyCommand.Parameters.Keys.ToArray()); + templateFile = TemplateFile; + if (string.IsNullOrEmpty(TemplateParameterUri)) + { + dynamicParameters = TemplateUtility.GetTemplateParametersFromFile( + this.ResolvePath(TemplateFile), + TemplateParameterObject, + this.ResolvePath(TemplateParameterFile), + MyInvocation.MyCommand.Parameters.Keys.ToArray()); + } + else + { + dynamicParameters = TemplateUtility.GetTemplateParametersFromFile( + this.ResolvePath(TemplateFile), + TemplateParameterObject, + TemplateParameterUri, + MyInvocation.MyCommand.Parameters.Keys.ToArray()); + } } - else + else if (!string.IsNullOrEmpty(TemplateUri) && + !TemplateUri.Equals(templateUri, StringComparison.OrdinalIgnoreCase)) { - dynamicParameters = TemplateUtility.GetTemplateParametersFromFile( - TemplateUri, - TemplateParameterObject, - TemplateParameterUri, - MyInvocation.MyCommand.Parameters.Keys.ToArray()); + templateUri = TemplateUri; + if (string.IsNullOrEmpty(TemplateParameterUri)) + { + dynamicParameters = TemplateUtility.GetTemplateParametersFromFile( + TemplateUri, + TemplateParameterObject, + this.ResolvePath(TemplateParameterFile), + MyInvocation.MyCommand.Parameters.Keys.ToArray()); + } + else + { + dynamicParameters = TemplateUtility.GetTemplateParametersFromFile( + TemplateUri, + TemplateParameterObject, + TemplateParameterUri, + MyInvocation.MyCommand.Parameters.Keys.ToArray()); + } } } diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/TestAzureResourceGroupDeploymentCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/TestAzureResourceGroupDeploymentCmdlet.cs index 40c4055ca64e..9efc5c54fb4c 100644 --- a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/TestAzureResourceGroupDeploymentCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/TestAzureResourceGroupDeploymentCmdlet.cs @@ -43,6 +43,8 @@ public class TestAzureResourceGroupDeploymentCmdlet : ResourceWithParameterCmdle [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Rollback to the successful deployment with the given name in the resource group, should not be used if -RollbackToLastDeployment is used.")] public string RollBackDeploymentName { get; set; } + public string DeploymentName { get; set; } + public TestAzureResourceGroupDeploymentCmdlet() { this.Mode = DeploymentMode.Incremental; @@ -57,6 +59,7 @@ public override void ExecuteCmdlet() PSDeploymentCmdletParameters parameters = new PSDeploymentCmdletParameters() { + DeploymentName = DeploymentName ?? Guid.NewGuid().ToString(), ResourceGroupName = ResourceGroupName, TemplateFile = TemplateUri ?? this.ResolvePath(TemplateFile), TemplateObject = TemplateObject, diff --git a/src/Resources/ResourceManager/SdkClient/ResourceManagerSdkClient.cs b/src/Resources/ResourceManager/SdkClient/ResourceManagerSdkClient.cs index 6458deff1f23..580a864a4bdd 100644 --- a/src/Resources/ResourceManager/SdkClient/ResourceManagerSdkClient.cs +++ b/src/Resources/ResourceManager/SdkClient/ResourceManagerSdkClient.cs @@ -39,6 +39,7 @@ using ProjectResources = Microsoft.Azure.Commands.ResourceManager.Cmdlets.Properties.Resources; using Microsoft.Azure.Commands.ResourceManager.Common.Paging; using System.Management.Automation; +using Microsoft.Rest; namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkClient { @@ -465,11 +466,42 @@ private Deployment CreateBasicDeployment(PSDeploymentCmdletParameters parameters private TemplateValidationInfo CheckBasicDeploymentErrors(string resourceGroup, string deploymentName, Deployment deployment) { - DeploymentValidateResult validationResult = resourceGroup != null - ? ResourceManagementClient.Deployments.Validate(resourceGroup, deploymentName, deployment) - : ResourceManagementClient.Deployments.ValidateAtSubscriptionScope(deploymentName, deployment); + try + { + DeploymentValidateResult validationResult = resourceGroup != null + ? ResourceManagementClient.Deployments.Validate(resourceGroup, deploymentName, deployment) + : ResourceManagementClient.Deployments.ValidateAtSubscriptionScope(deploymentName, deployment); + + return new TemplateValidationInfo(validationResult); + } + catch (Exception ex) + { + var error = HandleError(ex).FirstOrDefault(); + return new TemplateValidationInfo(new DeploymentValidateResult(error)); + } + } + + private List HandleError(Exception ex) + { + if (ex == null) + { + return null; + } + + ResourceManagementErrorWithDetails error = null; + var innerException = HandleError(ex.InnerException); + if (ex is CloudException) + { + var cloudEx = ex as CloudException; + error = new ResourceManagementErrorWithDetails(cloudEx.Body?.Code, cloudEx.Body?.Message, cloudEx.Body?.Target, innerException); + } + else + { + error = new ResourceManagementErrorWithDetails(null, ex.Message, null, innerException); + } + + return new List { error }; - return new TemplateValidationInfo(validationResult); } private IPage ListDeploymentOperations(string resourceGroupName, string deploymentName) @@ -1071,7 +1103,8 @@ public virtual void CancelDeployment(string resourceGroup, string deploymentName public virtual List ValidateDeployment(PSDeploymentCmdletParameters parameters, DeploymentMode deploymentMode) { Deployment deployment = CreateBasicDeployment(parameters, deploymentMode, null); - TemplateValidationInfo validationInfo = CheckBasicDeploymentErrors(parameters.ResourceGroupName, Guid.NewGuid().ToString(), deployment); + var deploymentName = GenerateDeploymentName(parameters); + TemplateValidationInfo validationInfo = CheckBasicDeploymentErrors(parameters.ResourceGroupName, deploymentName, deployment); if (validationInfo.Errors.Count == 0) { diff --git a/src/Resources/ResourceManager/SdkModels/Deployments/TemplateValidationInfo.cs b/src/Resources/ResourceManager/SdkModels/Deployments/TemplateValidationInfo.cs index d2f1d8632000..74f325707870 100644 --- a/src/Resources/ResourceManager/SdkModels/Deployments/TemplateValidationInfo.cs +++ b/src/Resources/ResourceManager/SdkModels/Deployments/TemplateValidationInfo.cs @@ -24,7 +24,7 @@ public TemplateValidationInfo(DeploymentValidateResult validationResult) Errors = new List(); RequiredProviders = new List(); - + if (validationResult.Error != null) { Errors.Add(validationResult.Error); diff --git a/src/Resources/Resources.Test/ScenarioTests/Common.ps1 b/src/Resources/Resources.Test/ScenarioTests/Common.ps1 index fda210fccbad..01323ee6ff04 100644 --- a/src/Resources/Resources.Test/ScenarioTests/Common.ps1 +++ b/src/Resources/Resources.Test/ScenarioTests/Common.ps1 @@ -258,7 +258,7 @@ function New-AzADSpCredentialWithId ) $profile = [Microsoft.Azure.Commands.Common.Authentication.Abstractions.AzureRmProfileProvider]::Instance.Profile - $cmdlet = New-Object -TypeName Microsoft.Azure.Commands.ActiveDirectory.NewAzureADSpCredentialCommand + $cmdlet = New-Object -TypeName Microsoft.Azure.Commands.ActiveDirectory.NewAzureADSpCredentialCommand $cmdlet.DefaultProfile = $profile $cmdlet.CommandRuntime = $PSCmdlet.CommandRuntime @@ -297,5 +297,103 @@ function New-AzADSpCredentialWithId $cmdlet.KeyId = $KeyId } + $cmdlet.ExecuteCmdlet() +} + +function Test-AzResourceGroupDeploymentWithName +{ + [CmdletBinding()] + param( + [string] [Parameter()] $DeploymentName, + [string] [Parameter()] $ResourceGroupName, + [string] [Parameter()] $RollBackDeploymentName, + [string] [Parameter()] $TemplateFile, + [string] [Parameter()] $TemplateUri, + [string] [Parameter()] $TemplateParameterFile, + [string] [Parameter()] $TemplateParameterUri, + [string] [Parameter()] $ApiVersion, + [switch] [Parameter()] $RollbackToLastDeployment, + [switch] [Parameter()] $SkipTemplateParameterPrompt, + [switch] [Parameter()] $Pre, + [hashtable] [Parameter()] $TemplateObject, + [hashtable] [Parameter()] $TemplateParameterObject, + [Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode] [Parameter()] $Mode + ) + + $profile = [Microsoft.Azure.Commands.Common.Authentication.Abstractions.AzureRmProfileProvider]::Instance.Profile + $cmdlet = New-Object -TypeName Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet + $cmdlet.DefaultProfile = $profile + $cmdlet.CommandRuntime = $PSCmdlet.CommandRuntime + + if (-not ([string]::IsNullOrEmpty($DeploymentName))) + { + $cmdlet.DeploymentName = $DeploymentName + } + + if (-not ([string]::IsNullOrEmpty($ResourceGroupName))) + { + $cmdlet.ResourceGroupName = $ResourceGroupName + } + + if (-not ([string]::IsNullOrEmpty($RollBackDeploymentName))) + { + $cmdlet.RollBackDeploymentName = $RollBackDeploymentName + } + + if (-not ([string]::IsNullOrEmpty($TemplateFile))) + { + $cmdlet.TemplateFile = $TemplateFile + } + + if (-not ([string]::IsNullOrEmpty($TemplateUri))) + { + $cmdlet.TemplateUri = $TemplateUri + } + + if (-not ([string]::IsNullOrEmpty($TemplateParameterFile))) + { + $cmdlet.TemplateParameterFile = $TemplateParameterFile + } + + if (-not ([string]::IsNullOrEmpty($TemplateParameterUri))) + { + $cmdlet.TemplateParameterUri = $TemplateParameterUri + } + + if (-not ([string]::IsNullOrEmpty($ApiVersion))) + { + $cmdlet.ApiVersion = $ApiVersion + } + + if ($RollbackToLastDeployment.IsPresent) + { + $cmdlet.RollbackToLastDeployment = $true + } + + if ($SkipTemplateParameterPrompt.IsPresent) + { + $cmdlet.SkipTemplateParameterPrompt = $true + } + + if ($Pre.IsPresent) + { + $cmdlet.Pre = $true + } + + if ($TemplateObject -ne $null) + { + $cmdlet.TemplateObject = $TemplateObject + } + + if ($TemplateParameterObject -ne $null) + { + $cmdlet.TemplateParameterObject = $TemplateParameterObject + } + + if ($Mode -ne $null) + { + $cmdlet.Mode = $Mode + } + $cmdlet.ExecuteCmdlet() } \ No newline at end of file diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs index 3fc1961a9de6..03cc4cdf370c 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs @@ -41,11 +41,19 @@ public void TestNewDeploymentFromTemplateFile() [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.RunType, Category.CoreOnly)] public void TestNewDeploymentFromTemplateObject() { TestRunner.RunTestScript("Test-NewDeploymentFromTemplateObject"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestTestResourceGroupDeploymentErrors() + { + TestRunner.RunTestScript("Test-TestResourceGroupDeploymentErrors"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestNestedDeploymentFromTemplateFile() diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 index 97ee448c74a3..46f442692bb4 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 @@ -80,7 +80,9 @@ function Test-NewDeploymentFromTemplateObject $path = (Get-Item ".\").FullName $file = Join-Path $path "sampleDeploymentTemplate.json" - $templateObject = ConvertFrom-Json ([System.IO.File]::ReadAllText($file)) -AsHashtable + $json = ConvertFrom-Json ([System.IO.File]::ReadAllText($file)) + $templateObject = @{} + $json.PSObject.Properties | % { $templateObject[$_.Name] = $_.Value } $deployment = New-AzResourceGroupDeployment -Name $rname -ResourceGroupName $rgname -TemplateObject $templateObject -TemplateParameterFile sampleDeploymentTemplateParams.json # Assert @@ -99,6 +101,39 @@ function Test-NewDeploymentFromTemplateObject } } +function Test-TestResourceGroupDeploymentErrors +{ + # Catch exception when resource group doesn't exist + $rgname = "unknownresourcegroup" + $deploymentName = Get-ResourceName + $result = Test-AzResourceGroupDeploymentWithName -DeploymentName $deploymentName -ResourceGroupName $rgname -TemplateFile sampleDeploymentTemplate.json -TemplateParameterFile sampleDeploymentTemplateParams.json + Write-Debug "$result" + Assert-NotNull $result + Assert-AreEqual "ResourceGroupNotFound" $result.Code + Assert-AreEqual "Resource group '$rgname' could not be found." $result.Message + + # Setup + $rgname = Get-ResourceGroupName + $rname = Get-ResourceName + $rglocation = "West US 2" + + try + { + # Test + # Catch exception when parameter template is missing + New-AzResourceGroup -Name $rgname -Location $rglocation + $result = Test-AzResourceGroupDeploymentWithName -DeploymentName $deploymentName -ResourceGroupName $rgname -TemplateFile sampleDeploymentTemplate.json -SkipTemplateParameterPrompt + Assert-NotNull $result + Assert-AreEqual "InvalidTemplate" $result.Code + Assert-StartsWith "Deployment template validation failed" $result.Message + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + <# .SYNOPSIS Tests cross resource group deployment via template file. diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestTestResourceGroupDeploymentErrors.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestTestResourceGroupDeploymentErrors.json new file mode 100644 index 000000000000..4da5673b24a9 --- /dev/null +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestTestResourceGroupDeploymentErrors.json @@ -0,0 +1,638 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/unknownresourcegroup/providers/Microsoft.Resources/deployments/ps1693/validate?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3Vua25vd25yZXNvdXJjZWdyb3VwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzMTY5My92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_LRS\",\r\n \"allowedValues\": [\r\n \"Standard_LRS\",\r\n \"Standard_GRS\",\r\n \"Standard_ZRS\"\r\n ]\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"defaultValue\": \"East US\",\r\n \"allowedValues\": [\r\n \"West US\",\r\n \"East US\"\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('StorageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"accountType\": \"[parameters('storageAccountType')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"storageAccountInfo\": {\r\n \"value\": \"[reference(concat('Microsoft.Storage/storageAccounts/', parameters('StorageAccountName')),providers('Microsoft.Storage', 'storageAccounts').apiVersions[0])]\",\r\n \"type\": \"object\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"StorageAccountName\": {\r\n \"value\": \"testvivek52f323kdd255556\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d7b03a7-9406-450b-9294-86d09cfd0ad5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1519" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "74968414-7d23-4e85-8eda-e84c521f32af" + ], + "x-ms-correlation-request-id": [ + "74968414-7d23-4e85-8eda-e84c521f32af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190325T224829Z:74968414-7d23-4e85-8eda-e84c521f32af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 25 Mar 2019 22:48:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "112" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'unknownresourcegroup' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps8149?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzODE0OT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4086ed19-7de9-4b3e-9b62-49bdfc1ccff0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "d4c1dca7-a2ec-400b-9482-cbce99581f42" + ], + "x-ms-correlation-request-id": [ + "d4c1dca7-a2ec-400b-9482-cbce99581f42" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190325T224829Z:d4c1dca7-a2ec-400b-9482-cbce99581f42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 25 Mar 2019 22:48:29 GMT" + ], + "Content-Length": [ + "98" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps8149?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzODE0OT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0640ffcb-1b3b-4b4f-bdab-a08fb6a52db5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9e8dc4dd-3d52-4c7b-877b-a71422e87bfa" + ], + "x-ms-correlation-request-id": [ + "9e8dc4dd-3d52-4c7b-877b-a71422e87bfa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190325T224832Z:9e8dc4dd-3d52-4c7b-877b-a71422e87bfa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 25 Mar 2019 22:48:31 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps8149?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzODE0OT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e1362df-60a4-4c0d-b273-b8080abe0e85" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "7ce81e96-1efd-4e64-989b-79232919b6d4" + ], + "x-ms-correlation-request-id": [ + "7ce81e96-1efd-4e64-989b-79232919b6d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190325T224830Z:7ce81e96-1efd-4e64-989b-79232919b6d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 25 Mar 2019 22:48:29 GMT" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8149\",\r\n \"name\": \"ps8149\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps8149/providers/Microsoft.Resources/deployments/ps1693/validate?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzODE0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczE2OTMvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_LRS\",\r\n \"allowedValues\": [\r\n \"Standard_LRS\",\r\n \"Standard_GRS\",\r\n \"Standard_ZRS\"\r\n ]\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"defaultValue\": \"East US\",\r\n \"allowedValues\": [\r\n \"West US\",\r\n \"East US\"\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('StorageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"accountType\": \"[parameters('storageAccountType')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"storageAccountInfo\": {\r\n \"value\": \"[reference(concat('Microsoft.Storage/storageAccounts/', parameters('StorageAccountName')),providers('Microsoft.Storage', 'storageAccounts').apiVersions[0])]\",\r\n \"type\": \"object\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4a8c74e-51aa-4f91-ace1-b982eb2500c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1428" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "c9a4e259-a196-41aa-a5a3-e200ce4d8b6f" + ], + "x-ms-correlation-request-id": [ + "c9a4e259-a196-41aa-a5a3-e200ce4d8b6f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190325T224832Z:c9a4e259-a196-41aa-a5a3-e200ce4d8b6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 25 Mar 2019 22:48:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "265" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidTemplate\",\r\n \"message\": \"Deployment template validation failed: 'The value for the template parameter 'storageAccountName' at line '7' and column '31' is not provided. Please see https://aka.ms/arm-deploy/#parameter-file for usage details.'.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps8149?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzODE0OT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27527f7b-d552-4e75-9320-860ee64c8b7b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxNDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2018-05-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "27e34148-304d-434d-9e15-8a317f4bf87a" + ], + "x-ms-correlation-request-id": [ + "27e34148-304d-434d-9e15-8a317f4bf87a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190325T224832Z:27e34148-304d-434d-9e15-8a317f4bf87a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 25 Mar 2019 22:48:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxNDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxNDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2018-05-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "f600c9c4-76f2-44ba-a019-50b315f84d02" + ], + "x-ms-correlation-request-id": [ + "f600c9c4-76f2-44ba-a019-50b315f84d02" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190325T224847Z:f600c9c4-76f2-44ba-a019-50b315f84d02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 25 Mar 2019 22:48:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxNDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxNDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2018-05-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "ac8e5b3e-de9a-466a-bb30-b863a9937a20" + ], + "x-ms-correlation-request-id": [ + "ac8e5b3e-de9a-466a-bb30-b863a9937a20" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190325T224902Z:ac8e5b3e-de9a-466a-bb30-b863a9937a20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 25 Mar 2019 22:49:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxNDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "4db2137a-1afd-408f-872f-4ae04c20806c" + ], + "x-ms-correlation-request-id": [ + "4db2137a-1afd-408f-872f-4ae04c20806c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190325T224917Z:4db2137a-1afd-408f-872f-4ae04c20806c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 25 Mar 2019 22:49:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxNDktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE5Ea3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27129.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "22231c58-4602-4026-b24b-ff24f580a7bc" + ], + "x-ms-correlation-request-id": [ + "22231c58-4602-4026-b24b-ff24f580a7bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190325T224917Z:22231c58-4602-4026-b24b-ff24f580a7bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 25 Mar 2019 22:49:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-TestResourceGroupDeploymentErrors": [ + "ps1693", + "ps8149", + "ps743" + ] + }, + "Variables": { + "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb" + } +} \ No newline at end of file diff --git a/src/Resources/Resources/Az.Resources.psd1 b/src/Resources/Resources/Az.Resources.psd1 index bbf2dfa62a92..a0d55c0d1b84 100644 --- a/src/Resources/Resources/Az.Resources.psd1 +++ b/src/Resources/Resources/Az.Resources.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/20/2019 +# Generated on: 4/4/2019 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.2.1' +ModuleVersion = '1.3.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Authorization.dll', @@ -169,8 +169,12 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Update wildcard support for Get-AzResource and Get-AzResourceGroup -* Update credentials used when making generic calls to ARM' + ReleaseNotes = '* Improve handling of providers for ''Get-AzResource'' when providing ''-ResourceId'' or ''-ResourceGroupName'', ''-Name'' and ''-ResourceType'' parameters +* Improve error handling for for ''Test-AzDeployment'' and ''Test-AzResourceGroupDeployment'' + - Handle errors thrown outside of deployment validation and include them in output of command instead + - More information here: https://github.com/Azure/azure-powershell/issues/6856 +* Add ''-IgnoreDynamicParameters'' switch parameter to set of deployment cmdlets to skip prompt in script and job scenarios + - More information here: https://github.com/Azure/azure-powershell/issues/6856' # Prerelease string of this module # Prerelease = '' diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index 911f48d43d6c..ad906c5f01c0 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -18,7 +18,14 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.3.0 * Improve handling of providers for `Get-AzResource` when providing `-ResourceId` or `-ResourceGroupName`, `-Name` and `-ResourceType` parameters +* Improve error handling for for `Test-AzDeployment` and `Test-AzResourceGroupDeployment` + - Handle errors thrown outside of deployment validation and include them in output of command instead + - More information here: https://github.com/Azure/azure-powershell/issues/6856 +* Add `-IgnoreDynamicParameters` switch parameter to set of deployment cmdlets to skip prompt in script and job scenarios + - More information here: https://github.com/Azure/azure-powershell/issues/6856 ## Version 1.2.1 * Update wildcard support for Get-AzResource and Get-AzResourceGroup diff --git a/src/Resources/Resources/Properties/AssemblyInfo.cs b/src/Resources/Resources/Properties/AssemblyInfo.cs index 743d954de47d..4902de7db533 100644 --- a/src/Resources/Resources/Properties/AssemblyInfo.cs +++ b/src/Resources/Resources/Properties/AssemblyInfo.cs @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("e386b843-f3f0-4db3-8664-37d16b860dde")] -[assembly: AssemblyVersion("1.2.1")] -[assembly: AssemblyFileVersion("1.2.1")] +[assembly: AssemblyVersion("1.3.0")] +[assembly: AssemblyFileVersion("1.3.0")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")] #endif diff --git a/src/Resources/Resources/RoleAssignments/RemoveAzureRoleAssignmentCommand.cs b/src/Resources/Resources/RoleAssignments/RemoveAzureRoleAssignmentCommand.cs index ed87e747f70c..ab22e535664b 100644 --- a/src/Resources/Resources/RoleAssignments/RemoveAzureRoleAssignmentCommand.cs +++ b/src/Resources/Resources/RoleAssignments/RemoveAzureRoleAssignmentCommand.cs @@ -195,8 +195,8 @@ public override void ExecuteCmdlet() AuthorizationClient.ValidateScope(options.Scope, true); ConfirmAction( - ProjectResources.RemovingRoleAssignment, - string.Empty, + string.Format(ProjectResources.RemovingRoleAssignment, ObjectId, Scope, RoleDefinitionName), + ObjectId, () => { roleAssignments = PoliciesClient.RemoveRoleAssignment(options, diff --git a/src/Resources/Resources/help/New-AzDeployment.md b/src/Resources/Resources/help/New-AzDeployment.md index 4171a0de4fd2..c63902f528ff 100644 --- a/src/Resources/Resources/help/New-AzDeployment.md +++ b/src/Resources/Resources/help/New-AzDeployment.md @@ -15,85 +15,90 @@ Create a deployment ### ByTemplateFileWithNoParameters (Default) ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-AsJob] - -TemplateFile [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectAndParameterObject ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-AsJob] - -TemplateParameterObject -TemplateObject [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterObject -TemplateObject [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateFileAndParameterObject ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-AsJob] - -TemplateParameterObject -TemplateFile [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterObject -TemplateFile [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateUriAndParameterObject ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-AsJob] - -TemplateParameterObject -TemplateUri [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterObject -TemplateUri [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateObjectAndParameterFile ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-AsJob] - -TemplateParameterFile -TemplateObject [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterFile -TemplateObject [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateFileAndParameterFile ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-AsJob] - -TemplateParameterFile -TemplateFile [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterFile -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] + [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriAndParameterFile ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-AsJob] - -TemplateParameterFile -TemplateUri [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterFile -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] + [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectAndParameterUri ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-AsJob] - -TemplateParameterUri -TemplateObject [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterUri -TemplateObject [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateFileAndParameterUri ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-AsJob] - -TemplateParameterUri -TemplateFile [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterUri -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] + [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriAndParameterUri ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-AsJob] - -TemplateParameterUri -TemplateUri [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterUri -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] + [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectWithNoParameters ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-AsJob] - -TemplateObject [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + -TemplateObject [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriWithNoParameters ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-AsJob] - -TemplateUri [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -250,6 +255,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SkipTemplateParameterPrompt +Skips the PowerShell dynamic parameter processing that checks if the provided template parameter contains all necessary parameters used by the template. This check would prompt the user to provide a value for the missing parameters, but providing the -SkipTemplateParameterPrompt will ignore this prompt and error out immediately if a parameter was found not to be bound in the template. For non-interactive scripts, -SkipTemplateParameterPrompt can be provided to provide a better error message in the case where not all required parameters are satisfied. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -TemplateFile Local path to the template file. diff --git a/src/Resources/Resources/help/New-AzResourceGroupDeployment.md b/src/Resources/Resources/help/New-AzResourceGroupDeployment.md index cf2d5f058b3c..bbc91463d304 100644 --- a/src/Resources/Resources/help/New-AzResourceGroupDeployment.md +++ b/src/Resources/Resources/help/New-AzResourceGroupDeployment.md @@ -17,96 +17,105 @@ Adds an Azure deployment to a resource group. ``` New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Force] - [-AsJob] -TemplateFile [-ApiVersion ] [-Pre] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-AsJob] -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectAndParameterObject ``` New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Force] - [-AsJob] -TemplateParameterObject -TemplateObject [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-AsJob] -TemplateParameterObject -TemplateObject [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateFileAndParameterObject ``` New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Force] - [-AsJob] -TemplateParameterObject -TemplateFile [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-AsJob] -TemplateParameterObject -TemplateFile [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateUriAndParameterObject ``` New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Force] - [-AsJob] -TemplateParameterObject -TemplateUri [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-AsJob] -TemplateParameterObject -TemplateUri [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateObjectAndParameterFile ``` New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Force] - [-AsJob] -TemplateParameterFile -TemplateObject [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-AsJob] -TemplateParameterFile -TemplateObject [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateFileAndParameterFile ``` New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Force] - [-AsJob] -TemplateParameterFile -TemplateFile [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-AsJob] -TemplateParameterFile -TemplateFile [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateUriAndParameterFile ``` New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Force] - [-AsJob] -TemplateParameterFile -TemplateUri [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-AsJob] -TemplateParameterFile -TemplateUri [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateObjectAndParameterUri ``` New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Force] - [-AsJob] -TemplateParameterUri -TemplateObject [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-AsJob] -TemplateParameterUri -TemplateObject [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateFileAndParameterUri ``` New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Force] - [-AsJob] -TemplateParameterUri -TemplateFile [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-AsJob] -TemplateParameterUri -TemplateFile [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateUriAndParameterUri ``` New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Force] - [-AsJob] -TemplateParameterUri -TemplateUri [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-AsJob] -TemplateParameterUri -TemplateUri [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateObjectWithNoParameters ``` New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Force] - [-AsJob] -TemplateObject [-ApiVersion ] [-Pre] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-AsJob] -TemplateObject [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriWithNoParameters ``` New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Force] - [-AsJob] -TemplateUri [-ApiVersion ] [-Pre] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-AsJob] -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -235,10 +244,9 @@ Accept wildcard characters: False ### -Mode Specifies the deployment mode. The acceptable values for this parameter are: -- Complete -- Incremental -In complete mode, Resource Manager deletes resources that exist in the resource group but are not -specified in the template. In incremental mode, Resource Manager leaves unchanged resources that +- Complete: In complete mode, Resource Manager deletes resources that exist in the resource group but are not +specified in the template. +- Incremental: In incremental mode, Resource Manager leaves unchanged resources that exist in the resource group but are not specified in the template. ```yaml @@ -329,6 +337,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SkipTemplateParameterPrompt +Skips the PowerShell dynamic parameter processing that checks if the provided template parameter contains all necessary parameters used by the template. This check would prompt the user to provide a value for the missing parameters, but providing the -SkipTemplateParameterPrompt will ignore this prompt and error out immediately if a parameter was found not to be bound in the template. For non-interactive scripts, -SkipTemplateParameterPrompt can be provided to provide a better error message in the case where not all required parameters are satisfied. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -TemplateFile Specifies the full path of a JSON template file. This can be a custom template or a gallery template that is saved as a JSON file, such as one created by using the **Save-AzResourceGroupGalleryTemplate** cmdlet. diff --git a/src/Resources/Resources/help/Test-AzDeployment.md b/src/Resources/Resources/help/Test-AzDeployment.md index fb3b5a7638b9..df40a48cf12c 100644 --- a/src/Resources/Resources/help/Test-AzDeployment.md +++ b/src/Resources/Resources/help/Test-AzDeployment.md @@ -14,74 +14,83 @@ Validates a deployment. ### ByTemplateFileWithNoParameters (Default) ``` -Test-AzDeployment -Location -TemplateFile [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] +Test-AzDeployment -Location -TemplateFile [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterObject ``` Test-AzDeployment -Location -TemplateParameterObject -TemplateObject - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateFileAndParameterObject ``` Test-AzDeployment -Location -TemplateParameterObject -TemplateFile - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateUriAndParameterObject ``` Test-AzDeployment -Location -TemplateParameterObject -TemplateUri - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateObjectAndParameterFile ``` Test-AzDeployment -Location -TemplateParameterFile -TemplateObject - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateFileAndParameterFile ``` Test-AzDeployment -Location -TemplateParameterFile -TemplateFile - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateUriAndParameterFile ``` Test-AzDeployment -Location -TemplateParameterFile -TemplateUri - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateObjectAndParameterUri ``` Test-AzDeployment -Location -TemplateParameterUri -TemplateObject - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateFileAndParameterUri ``` Test-AzDeployment -Location -TemplateParameterUri -TemplateFile - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateUriAndParameterUri ``` Test-AzDeployment -Location -TemplateParameterUri -TemplateUri - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateObjectWithNoParameters ``` -Test-AzDeployment -Location -TemplateObject [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] +Test-AzDeployment -Location -TemplateObject [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriWithNoParameters ``` -Test-AzDeployment -Location -TemplateUri [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] +Test-AzDeployment -Location -TemplateUri [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -168,6 +177,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SkipTemplateParameterPrompt +Skips the PowerShell dynamic parameter processing that checks if the provided template parameter contains all necessary parameters used by the template. This check would prompt the user to provide a value for the missing parameters, but providing the -SkipTemplateParameterPrompt will ignore this prompt and error out immediately if a parameter was found not to be bound in the template. For non-interactive scripts, -SkipTemplateParameterPrompt can be provided to provide a better error message in the case where not all required parameters are satisfied. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -TemplateFile Local path to the template file. diff --git a/src/Resources/Resources/help/Test-AzResourceGroupDeployment.md b/src/Resources/Resources/help/Test-AzResourceGroupDeployment.md index c1388ee93ecc..618a44c82422 100644 --- a/src/Resources/Resources/help/Test-AzResourceGroupDeployment.md +++ b/src/Resources/Resources/help/Test-AzResourceGroupDeployment.md @@ -16,85 +16,94 @@ Validates a resource group deployment. ### ByTemplateFileWithNoParameters (Default) ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] - [-RollBackDeploymentName ] -TemplateFile [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + [-RollBackDeploymentName ] -TemplateFile [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterObject ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterObject -TemplateObject - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateFileAndParameterObject ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterObject -TemplateFile - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateUriAndParameterObject ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterObject -TemplateUri - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateObjectAndParameterFile ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterFile -TemplateObject - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateFileAndParameterFile ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterFile -TemplateFile - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateUriAndParameterFile ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterFile -TemplateUri - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateObjectAndParameterUri ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterUri -TemplateObject - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateFileAndParameterUri ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterUri -TemplateFile - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateUriAndParameterUri ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] - [-RollBackDeploymentName ] -TemplateParameterUri -TemplateUri [-ApiVersion ] - [-Pre] [-DefaultProfile ] [] + [-RollBackDeploymentName ] -TemplateParameterUri -TemplateUri + [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateObjectWithNoParameters ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] - [-RollBackDeploymentName ] -TemplateObject [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + [-RollBackDeploymentName ] -TemplateObject [-SkipTemplateParameterPrompt] + [-ApiVersion ] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriWithNoParameters ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] - [-RollBackDeploymentName ] -TemplateUri [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + [-RollBackDeploymentName ] -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] + [-Pre] [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -223,6 +232,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SkipTemplateParameterPrompt +Skips the PowerShell dynamic parameter processing that checks if the provided template parameter contains all necessary parameters used by the template. This check would prompt the user to provide a value for the missing parameters, but providing the -SkipTemplateParameterPrompt will ignore this prompt and error out immediately if a parameter was found not to be bound in the template. For non-interactive scripts, -SkipTemplateParameterPrompt can be provided to provide a better error message in the case where not all required parameters are satisfied. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -TemplateFile Specifies the full path of a JSON template file. diff --git a/src/Search/Search/Az.Search.psd1 b/src/Search/Search/Az.Search.psd1 index ed73c3285b76..858175fbfa11 100644 --- a/src/Search/Search/Az.Search.psd1 +++ b/src/Search/Search/Az.Search.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Search.dll' diff --git a/src/Security/Security/Az.Security.psd1 b/src/Security/Security/Az.Security.psd1 index 78d593788704..033f9ef88f49 100644 --- a/src/Security/Security/Az.Security.psd1 +++ b/src/Security/Security/Az.Security.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.SecurityCenter.dll' diff --git a/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 b/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 index e32c3983d8e1..717c12545ab6 100644 --- a/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 +++ b/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.ServiceBus.dll' diff --git a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 index 7987686c1d29..291779bbbc1e 100644 --- a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 +++ b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.KeyVault.dll', diff --git a/src/SignalR/SignalR/Az.SignalR.psd1 b/src/SignalR/SignalR/Az.SignalR.psd1 index af450d088875..340b3ff8cedd 100644 --- a/src/SignalR/SignalR/Az.SignalR.psd1 +++ b/src/SignalR/SignalR/Az.SignalR.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.SignalR.dll' diff --git a/src/Sql/Sql.Test/ScenarioTests/AdvisorTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/AdvisorTests.ps1 index b92233c1811d..89433ec87af1 100644 --- a/src/Sql/Sql.Test/ScenarioTests/AdvisorTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/AdvisorTests.ps1 @@ -56,7 +56,8 @@ function Test-ListServerAdvisorsExpanded { $response = Get-AzSqlServerAdvisor ` -ResourceGroupName $server.ResourceGroupName ` - -ServerName $server.ServerName -ExpandRecommendedActions + -ServerName $server.ServerName -ExpandRecommendedActions ` + -AdvisorName * Assert-NotNull $response ValidateAdvisorCount $response foreach($advisor in $response) @@ -141,7 +142,8 @@ function Test-ListDatabaseAdvisors $response = Get-AzSqlDatabaseAdvisor ` -ResourceGroupName $db.ResourceGroupName ` -ServerName $db.ServerName ` - -DatabaseName $db.DatabaseName + -DatabaseName $db.DatabaseName ` + -AdvisorName * Assert-NotNull $response ValidateAdvisorCount $response foreach($advisor in $response) @@ -260,7 +262,8 @@ function Test-ListElasticPoolAdvisors $response = Get-AzSqlElasticPoolAdvisor ` -ResourceGroupName $ep.ResourceGroupName` -ServerName $ep.ServerName` - -ElasticPoolName $ep.ElasticPoolName + -ElasticPoolName $ep.ElasticPoolName ` + -AdvisorName * Assert-NotNull $response ValidateAdvisorCount $response foreach($advisor in $response) diff --git a/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.ps1 index e207b7081367..0dd76a760c1f 100644 --- a/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/DataSyncTests.ps1 @@ -65,7 +65,7 @@ function Test-GetAndListSyncAgents Assert-AreEqual $saName $sa2.SyncAgentName # Get all sync agents - $all = Get-AzSqlSyncAgent -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName + $all = Get-AzSqlSyncAgent -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -SyncAgentName * Assert-NotNull $all Assert-AreEqual $all.Count 1 } @@ -262,7 +262,7 @@ function Test-GetAndListSyncGroups # List all sync groups $all = Get-AzSqlSyncGroup -ServerName $server.ServerName -ResourceGroupName $rg.ResourceGroupName ` - -DatabaseName $databaseName + -DatabaseName $databaseName -SyncGroupName * Assert-AreEqual $all.Count 1 Assert-AreEqual $params.intervalInSeconds $all[0].IntervalInSeconds Assert-AreEqual $params.conflictResolutionPolicy $all[0].ConflictResolutionPolicy @@ -444,7 +444,7 @@ function Test-GetAndListSyncMembers # List all sync members $all = Get-AzSqlSyncMember -ServerName $server.ServerName -ResourceGroupName $rg.ResourceGroupName ` - -DatabaseName $databaseName1 -SyncGroupName $sg.SyncGroupName + -DatabaseName $databaseName1 -SyncGroupName $sg.SyncGroupName -SyncMemberName * Assert-AreEqual 1 $all.Count Assert-AreEqual $smParams.syncDirection $all[0].SyncDirection Assert-AreEqual $smParams.databaseType $all[0].MemberDatabaseType diff --git a/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 index 0898d8651b97..08da4bfe4db8 100644 --- a/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 @@ -190,7 +190,7 @@ function Test-LongTermRetentionV2Backup($location = "westcentralus") # Can't assert because we can't guarantee that the subscription won't have any backups in the location. $backups = Get-AzSqlDatabaseLongTermRetentionBackup -Location $db.Location -ServerName $server.ServerName Assert-AreEqual $backups.Count 0 - $backups = Get-AzSqlDatabaseLongTermRetentionBackup -Location $db.Location -ServerName $server.ServerName -DatabaseName $databaseName + $backups = Get-AzSqlDatabaseLongTermRetentionBackup -Location $db.Location -ServerName $server.ServerName -DatabaseName $databaseName -BackupName * Assert-AreEqual $backups.Count 0 } finally diff --git a/src/Sql/Sql.Test/ScenarioTests/ElasticPoolCrudTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ElasticPoolCrudTests.ps1 index 642e416b4915..58ca1eab96b5 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ElasticPoolCrudTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ElasticPoolCrudTests.ps1 @@ -401,7 +401,7 @@ function Test-GetElasticPool Assert-AreEqual 0 $ep2.DatabaseCapacityMin Assert-AreEqual 100 $ep2.DatabaseCapacityMax - $all = $server | Get-AzSqlElasticPool + $all = $server | Get-AzSqlElasticPool -ElasticPoolName * Assert-AreEqual $all.Count 2 } finally diff --git a/src/Sql/Sql.Test/ScenarioTests/FailoverGroupTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/FailoverGroupTests.ps1 index 127fb01b9468..43608361c175 100644 --- a/src/Sql/Sql.Test/ScenarioTests/FailoverGroupTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/FailoverGroupTests.ps1 @@ -139,7 +139,7 @@ function Test-FailoverGroup() Validate-FailoverGroupWithGet $fg3 #Get Failover Group - $fgs = $serverObject | Get-AzSqlDatabaseFailoverGroup –ResourceGroupName $server.ResourceGroupName + $fgs = $serverObject | Get-AzSqlDatabaseFailoverGroup –ResourceGroupName $server.ResourceGroupName -FailoverGroupName * Assert-AreEqual 1 ($fgs | where { $_.FailoverGroupName.Equals($fg.FailoverGroupName) }).Count #Remove Failover Group diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.ps1 index a71278b6014a..601b37ec09f4 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedDatabaseCrudScenarioTests.ps1 @@ -97,7 +97,7 @@ function Test-GetManagedDatabase Assert-AreEqual $db1.Collation $gdb1.Collation # Test Get using ResourceGroupName and InstanceName - $all = Get-AzSqlInstanceDatabase -ResourceGroupName $managedInstance.ResourceGroupName -InstanceName $managedInstance.ManagedInstanceName + $all = Get-AzSqlInstanceDatabase -ResourceGroupName $managedInstance.ResourceGroupName -InstanceName $managedInstance.ManagedInstanceName -Name * Assert-NotNull $all Assert-AreEqual $all.Count 2 @@ -259,7 +259,7 @@ function Test-GetManagedDatabaseGeoBackup Assert-AreEqual $managedDatabaseName $gdb1.Name # Test Get using ResourceGroupName and InstanceName - $all = Get-AzSqlInstanceDatabaseGeoBackup -ResourceGroupName $rgName -InstanceName $managedInstanceName + $all = Get-AzSqlInstanceDatabaseGeoBackup -ResourceGroupName $rgName -InstanceName $managedInstanceName -Name * Assert-NotNull $all if($all.Count -le 1) diff --git a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 index b3c7e3c155ca..84910f3e5696 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ManagedInstanceCrudScenarioTests.ps1 @@ -221,11 +221,11 @@ function Test-GetManagedInstance Assert-AreEqual $managedInstance1.VCores $resp1.VCores Assert-AreEqual $managedInstance1.StorageSizeInGB $resp1.StorageSizeInGB - $all = Get-AzSqlInstance -ResourceGroupName $rg.ResourceGroupName + $all = Get-AzSqlInstance -ResourceGroupName $rg.ResourceGroupName -Name * Assert-AreEqual 1 $all.Count # Test getting all managedInstances in all resource groups - $all2 = Get-AzSqlInstance + $all2 = Get-AzSqlInstance -ResourceGroupName * # It is possible that there were existing managedInstances in the subscription when the test was recorded, so make sure # that the managedInstances that we created are retrieved and ignore the other ones. diff --git a/src/Sql/Sql.Test/ScenarioTests/ServerCommunicationLinkCrudTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ServerCommunicationLinkCrudTests.ps1 index 6c16f1f0cc15..a60928faf911 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ServerCommunicationLinkCrudTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ServerCommunicationLinkCrudTests.ps1 @@ -72,7 +72,7 @@ function Test-GetServerCommunicationLink Assert-AreEqual $linkName $gep1.Name Assert-AreEqual $server2.ServerName $gep1.PartnerServer - $all = $server1 | Get-AzSqlServerCommunicationLink + $all = $server1 | Get-AzSqlServerCommunicationLink -LinkName * Assert-AreEqual $all.Count 1 } finally diff --git a/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 index f0969a803a1e..b0d23ae9bf80 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ServerCrudTests.ps1 @@ -119,11 +119,11 @@ function Test-GetServer Assert-AreEqual $server2.SqlAdministratorLogin $resp2.SqlAdministratorLogin Assert-StartsWith ($server1.ServerName + ".") $server1.FullyQualifiedDomainName - $all = Get-AzSqlServer -ResourceGroupName $rg.ResourceGroupName + $all = Get-AzSqlServer -ResourceGroupName $rg.ResourceGroupName -Name * Assert-AreEqual 2 $all.Count # Test getting all servers in all resource groups - $all2 = Get-AzSqlServer + $all2 = Get-AzSqlServer -ResourceGroupName * # It is possible that there were existing servers in the subscription when the test was recorded, so make sure # that the servers that we created are retrieved and ignore the other ones. diff --git a/src/Sql/Sql.Test/ScenarioTests/ServerDnsAliasTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ServerDnsAliasTests.ps1 index 09fdf65c3ead..efd9d7a9f644 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ServerDnsAliasTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ServerDnsAliasTests.ps1 @@ -74,7 +74,7 @@ function Test-GetServerDNSAlias Assert-AreEqual $resp.DnsAliasName $serverDnsAliasName # Get list of server dns aliases for server - $resp = Get-AzSqlServerDnsAlias -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName + $resp = Get-AzSqlServerDnsAlias -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DnsAliasName * Assert-AreEqual $resp.Count 2 } finally diff --git a/src/Sql/Sql.Test/ScenarioTests/ServiceTierAdvisorTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/ServiceTierAdvisorTests.ps1 index d24d823da6f7..96ebb85fdedc 100644 --- a/src/Sql/Sql.Test/ScenarioTests/ServiceTierAdvisorTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/ServiceTierAdvisorTests.ps1 @@ -18,7 +18,7 @@ #> function Test-GetUpgradeDatabaseHint { - $response = Get-AzSqlDatabaseUpgradeHint -ResourceGroupName TestRg -ServerName test-srv-v1 + $response = Get-AzSqlDatabaseUpgradeHint -ResourceGroupName TestRg -ServerName test-srv-v1 -DatabaseName * Assert-NotNull $response Assert-AreEqual 1 $response.Count Assert-AreEqual test-db-v1 $response[0].Name diff --git a/src/Sql/Sql.Test/ScenarioTests/VirtualNetworkRuleTest.ps1 b/src/Sql/Sql.Test/ScenarioTests/VirtualNetworkRuleTest.ps1 index 747ea877eb2f..8404b7734438 100644 --- a/src/Sql/Sql.Test/ScenarioTests/VirtualNetworkRuleTest.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/VirtualNetworkRuleTest.ps1 @@ -107,7 +107,7 @@ function Test-GetVirtualNetworkRule Assert-AreEqual $resp.VirtualNetworkSubnetId $virtualNetworkSubnetId1 # Get list of rules - $resp = Get-AzSqlServerVirtualNetworkRule -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName + $resp = Get-AzSqlServerVirtualNetworkRule -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -VirtualNetworkRuleName * Assert-AreEqual $resp.Count 2 } finally diff --git a/src/Sql/Sql/Advisor/Cmdlet/GetAzureSqlDatabaseAdvisors.cs b/src/Sql/Sql/Advisor/Cmdlet/GetAzureSqlDatabaseAdvisor.cs similarity index 96% rename from src/Sql/Sql/Advisor/Cmdlet/GetAzureSqlDatabaseAdvisors.cs rename to src/Sql/Sql/Advisor/Cmdlet/GetAzureSqlDatabaseAdvisor.cs index fdb4d62e83ed..2cf81a5fa620 100644 --- a/src/Sql/Sql/Advisor/Cmdlet/GetAzureSqlDatabaseAdvisors.cs +++ b/src/Sql/Sql/Advisor/Cmdlet/GetAzureSqlDatabaseAdvisor.cs @@ -51,7 +51,7 @@ protected override IEnumerable GetEntity() { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("AdvisorName")) + if (MyInvocation.BoundParameters.ContainsKey("AdvisorName") && !WildcardPattern.ContainsWildcardCharacters(AdvisorName)) { results = new List(); results.Add(ModelAdapter.GetDatabaseAdvisor(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.AdvisorName, this.ExpandRecommendedActions)); @@ -61,7 +61,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListDatabaseAdvisors(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.ExpandRecommendedActions); } - return results; + return SubResourceWildcardFilter(AdvisorName, results); } /// diff --git a/src/Sql/Sql/Advisor/Cmdlet/GetAzureSqlElasticPoolAdvisors.cs b/src/Sql/Sql/Advisor/Cmdlet/GetAzureSqlElasticPoolAdvisors.cs index 3d8a49dea106..b78bbd31528e 100644 --- a/src/Sql/Sql/Advisor/Cmdlet/GetAzureSqlElasticPoolAdvisors.cs +++ b/src/Sql/Sql/Advisor/Cmdlet/GetAzureSqlElasticPoolAdvisors.cs @@ -51,7 +51,7 @@ protected override IEnumerable GetEntity() { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("AdvisorName")) + if (MyInvocation.BoundParameters.ContainsKey("AdvisorName") && !WildcardPattern.ContainsWildcardCharacters(AdvisorName)) { results = new List(); results.Add(ModelAdapter.GetElasticPoolAdvisor(this.ResourceGroupName, this.ServerName, this.ElasticPoolName, this.AdvisorName, this.ExpandRecommendedActions)); @@ -61,7 +61,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListElasticPoolAdvisors(this.ResourceGroupName, this.ServerName, this.ElasticPoolName, this.ExpandRecommendedActions); } - return results; + return SubResourceWildcardFilter(AdvisorName, results); } /// diff --git a/src/Sql/Sql/Advisor/Cmdlet/GetAzureSqlServerAdvisors.cs b/src/Sql/Sql/Advisor/Cmdlet/GetAzureSqlServerAdvisors.cs index be3893e814f8..7963b1697e46 100644 --- a/src/Sql/Sql/Advisor/Cmdlet/GetAzureSqlServerAdvisors.cs +++ b/src/Sql/Sql/Advisor/Cmdlet/GetAzureSqlServerAdvisors.cs @@ -51,7 +51,7 @@ protected override IEnumerable GetEntity() { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("AdvisorName")) + if (MyInvocation.BoundParameters.ContainsKey("AdvisorName") && !WildcardPattern.ContainsWildcardCharacters(AdvisorName)) { results = new List(); results.Add(ModelAdapter.GetServerAdvisor(this.ResourceGroupName, this.ServerName, this.AdvisorName, this.ExpandRecommendedActions)); @@ -61,7 +61,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListServerAdvisors(this.ResourceGroupName, this.ServerName, this.ExpandRecommendedActions); } - return results; + return SubResourceWildcardFilter(AdvisorName, results); } /// diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index def993b9d4b6..cdd677573350 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/21/2019 +# Generated on: 4/4/2019 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.7.0' +ModuleVersion = '1.8.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Sql.dll', @@ -92,7 +92,7 @@ CmdletsToExport = 'Get-AzSqlDatabaseTransparentDataEncryption', 'Get-AzSqlDatabaseReplicationLink', 'New-AzSqlDatabaseCopy', 'New-AzSqlDatabaseSecondary', 'Remove-AzSqlDatabaseSecondary', 'Set-AzSqlDatabaseSecondary', 'Get-AzSqlElasticPoolRecommendation', - 'Get-AzSqlDatabaseIndexRecommendations', + 'Get-AzSqlDatabaseIndexRecommendation', 'Start-AzSqlDatabaseExecuteIndexRecommendation', 'Stop-AzSqlDatabaseExecuteIndexRecommendation', 'Get-AzSqlServerFirewallRule', 'New-AzSqlServerFirewallRule', @@ -130,7 +130,7 @@ CmdletsToExport = 'Get-AzSqlDatabaseTransparentDataEncryption', 'Get-AzSqlDatabaseLongTermRetentionBackup', 'Remove-AzSqlDatabaseLongTermRetentionBackup', 'Get-AzSqlDeletedDatabaseBackup', 'Get-AzSqlDatabaseGeoBackup', - 'Restore-AzSqlDatabase', 'Get-AzSqlDatabaseRestorePoints', + 'Restore-AzSqlDatabase', 'Get-AzSqlDatabaseRestorePoint', 'Get-AzSqlDatabaseAuditing', 'Get-AzSqlServerAuditing', 'Set-AzSqlDatabaseAuditing', 'Set-AzSqlServerAuditing', 'Get-AzSqlDatabaseRecommendedAction', @@ -175,9 +175,9 @@ CmdletsToExport = 'Get-AzSqlDatabaseTransparentDataEncryption', 'Enable-AzSqlServerAdvancedThreatProtection', 'Disable-AzSqlServerAdvancedThreatProtection', 'Get-AzSqlServerAdvancedThreatProtectionPolicy', - 'Update-AzSqlDatabaseVulnerabilityAssessmentSettings', - 'Get-AzSqlDatabaseVulnerabilityAssessmentSettings', - 'Clear-AzSqlDatabaseVulnerabilityAssessmentSettings', + 'Update-AzSqlDatabaseVulnerabilityAssessmentSetting', + 'Get-AzSqlDatabaseVulnerabilityAssessmentSetting', + 'Clear-AzSqlDatabaseVulnerabilityAssessmentSetting', 'Set-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline', 'Get-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline', 'Clear-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline', @@ -188,9 +188,9 @@ CmdletsToExport = 'Get-AzSqlDatabaseTransparentDataEncryption', 'Set-AzSqlInstance', 'Get-AzSqlInstanceDatabase', 'New-AzSqlInstanceDatabase', 'Remove-AzSqlInstanceDatabase', 'Restore-AzSqlInstanceDatabase', - 'Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings', - 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings', - 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings', + 'Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', + 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', + 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting', 'Set-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline', 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline', 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline', @@ -204,12 +204,12 @@ CmdletsToExport = 'Get-AzSqlDatabaseTransparentDataEncryption', 'Get-AzSqlInstanceDatabaseBackupShortTermRetentionPolicy', 'Set-AzSqlInstanceDatabaseBackupShortTermRetentionPolicy', 'Get-AzSqlDeletedInstanceDatabaseBackup', - 'Update-AzSqlInstanceVulnerabilityAssessmentSettings', - 'Get-AzSqlInstanceVulnerabilityAssessmentSettings', - 'Clear-AzSqlInstanceVulnerabilityAssessmentSettings', - 'Update-AzSqlServerVulnerabilityAssessmentSettings', - 'Get-AzSqlServerVulnerabilityAssessmentSettings', - 'Clear-AzSqlServerVulnerabilityAssessmentSettings', + 'Update-AzSqlInstanceVulnerabilityAssessmentSetting', + 'Get-AzSqlInstanceVulnerabilityAssessmentSetting', + 'Clear-AzSqlInstanceVulnerabilityAssessmentSetting', + 'Update-AzSqlServerVulnerabilityAssessmentSetting', + 'Get-AzSqlServerVulnerabilityAssessmentSetting', + 'Clear-AzSqlServerVulnerabilityAssessmentSetting', 'Get-AzSqlDatabaseSensitivityClassification', 'Get-AzSqlInstanceDatabaseSensitivityClassification', 'Set-AzSqlDatabaseSensitivityClassification', @@ -229,7 +229,21 @@ AliasesToExport = 'Get-AzSqlDatabaseServerAuditingPolicy', 'Set-AzSqlDatabaseServerAuditingPolicy', 'Use-AzSqlDatabaseServerAuditingPolicy', 'Get-AzSqlDatabaseLongTermRetentionPolicy', - 'Set-AzSqlDatabaseLongTermRetentionPolicy' + 'Set-AzSqlDatabaseLongTermRetentionPolicy', + 'Update-AzSqlDatabaseVulnerabilityAssessmentSettings', + 'Get-AzSqlDatabaseVulnerabilityAssessmentSettings', + 'Clear-AzSqlDatabaseVulnerabilityAssessmentSettings', + 'Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings', + 'Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings', + 'Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings', + 'Get-AzSqlDatabaseIndexRecommendations', + 'Get-AzSqlDatabaseRestorePoints', + 'Update-AzSqlInstanceVulnerabilityAssessmentSettings', + 'Get-AzSqlInstanceVulnerabilityAssessmentSettings', + 'Clear-AzSqlInstanceVulnerabilityAssessmentSettings', + 'Update-AzSqlServerVulnerabilityAssessmentSettings', + 'Get-AzSqlServerVulnerabilityAssessmentSettings', + 'Clear-AzSqlServerVulnerabilityAssessmentSettings' # DSC resources to export from this module # DscResourcesToExport = @() @@ -258,7 +272,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Add Vulnerability Assessment cmdlets on Server and Managed Instance' + ReleaseNotes = '* Support Database Data Classification.' # Prerelease string of this module # Prerelease = '' diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index c44464d9ccdb..0c7f1beb4a3c 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -18,6 +18,9 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. + +## Version 1.8.0 * Support Database Data Classification. * Add Get/Remove AzSqlVirtualCluster cmdlets. diff --git a/src/Sql/Sql/Data Sync/Cmdlet/GetAzureSqlSyncAgent.cs b/src/Sql/Sql/Data Sync/Cmdlet/GetAzureSqlSyncAgent.cs index bc67122c6f59..4beca89f72ab 100644 --- a/src/Sql/Sql/Data Sync/Cmdlet/GetAzureSqlSyncAgent.cs +++ b/src/Sql/Sql/Data Sync/Cmdlet/GetAzureSqlSyncAgent.cs @@ -41,7 +41,7 @@ protected override IEnumerable GetEntity() { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("Name")) + if (MyInvocation.BoundParameters.ContainsKey("Name") && !WildcardPattern.ContainsWildcardCharacters(Name)) { results = new List(); results.Add(ModelAdapter.GetSyncAgent(this.ResourceGroupName, this.ServerName, this.Name)); @@ -50,7 +50,7 @@ protected override IEnumerable GetEntity() { results = ModelAdapter.ListSyncAgents(this.ResourceGroupName, this.ServerName); } - return results; + return SubResourceWildcardFilter(Name, results); } /// diff --git a/src/Sql/Sql/Data Sync/Cmdlet/GetAzureSqlSyncGroup.cs b/src/Sql/Sql/Data Sync/Cmdlet/GetAzureSqlSyncGroup.cs index 25bbdd430c70..59797d1e6d0f 100644 --- a/src/Sql/Sql/Data Sync/Cmdlet/GetAzureSqlSyncGroup.cs +++ b/src/Sql/Sql/Data Sync/Cmdlet/GetAzureSqlSyncGroup.cs @@ -42,7 +42,7 @@ protected override IEnumerable GetEntity() { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("Name")) + if (MyInvocation.BoundParameters.ContainsKey("Name") && !WildcardPattern.ContainsWildcardCharacters(Name)) { results = new List(); results.Add(ModelAdapter.GetSyncGroup(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.Name)); @@ -52,7 +52,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListSyncGroups(this.ResourceGroupName, this.ServerName, this.DatabaseName); } - return results; + return SubResourceWildcardFilter(Name, results); } /// diff --git a/src/Sql/Sql/Data Sync/Cmdlet/GetAzureSqlSyncMember.cs b/src/Sql/Sql/Data Sync/Cmdlet/GetAzureSqlSyncMember.cs index 7f2a9b8d7cf5..d7beaa174128 100644 --- a/src/Sql/Sql/Data Sync/Cmdlet/GetAzureSqlSyncMember.cs +++ b/src/Sql/Sql/Data Sync/Cmdlet/GetAzureSqlSyncMember.cs @@ -39,7 +39,7 @@ protected override IEnumerable GetEntity() { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("Name")) + if (MyInvocation.BoundParameters.ContainsKey("Name") && !WildcardPattern.ContainsWildcardCharacters(Name)) { results = new List(); results.Add(ModelAdapter.GetSyncMember(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.SyncGroupName, this.Name)); @@ -49,7 +49,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListSyncMembers(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.SyncGroupName); } - return results; + return SubResourceWildcardFilter(Name, results); } /// diff --git a/src/Sql/Sql/Database Backup/Cmdlet/GetAzureRMSqlDatabaseGeoBackup.cs b/src/Sql/Sql/Database Backup/Cmdlet/GetAzureRMSqlDatabaseGeoBackup.cs index 24a3ae69def3..795cf129ccae 100644 --- a/src/Sql/Sql/Database Backup/Cmdlet/GetAzureRMSqlDatabaseGeoBackup.cs +++ b/src/Sql/Sql/Database Backup/Cmdlet/GetAzureRMSqlDatabaseGeoBackup.cs @@ -30,7 +30,7 @@ protected override IEnumerable GetEntity() { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("DatabaseName")) + if (MyInvocation.BoundParameters.ContainsKey("DatabaseName") && !WildcardPattern.ContainsWildcardCharacters(DatabaseName)) { results = new List(); results.Add(ModelAdapter.GetGeoBackup(this.ResourceGroupName, this.ServerName, this.DatabaseName)); @@ -40,7 +40,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListGeoBackups(this.ResourceGroupName, this.ServerName); } - return results; + return SubResourceWildcardFilter(DatabaseName, results); } /// diff --git a/src/Sql/Sql/Database Backup/Cmdlet/GetAzureRmSqlDatabaseLongTermRetentionBackup.cs b/src/Sql/Sql/Database Backup/Cmdlet/GetAzureRmSqlDatabaseLongTermRetentionBackup.cs index 3936764b46ae..5c0555c4994a 100644 --- a/src/Sql/Sql/Database Backup/Cmdlet/GetAzureRmSqlDatabaseLongTermRetentionBackup.cs +++ b/src/Sql/Sql/Database Backup/Cmdlet/GetAzureRmSqlDatabaseLongTermRetentionBackup.cs @@ -230,13 +230,13 @@ protected override IEnumerable Get ServerName = identifier.ResourceName; } - return ModelAdapter.GetDatabaseLongTermRetentionBackups( + return SubResourceWildcardFilter(BackupName, ModelAdapter.GetDatabaseLongTermRetentionBackups( Location, ServerName, DatabaseName, BackupName, OnlyLatestPerDatabase.IsPresent, - DatabaseState); + DatabaseState)); } /// diff --git a/src/Sql/Sql/Database Backup/Cmdlet/GetAzureSqlDatabaseRestorePoints.cs b/src/Sql/Sql/Database Backup/Cmdlet/GetAzureSqlDatabaseRestorePoints.cs index 92db7e0d124f..b895e456bcf7 100644 --- a/src/Sql/Sql/Database Backup/Cmdlet/GetAzureSqlDatabaseRestorePoints.cs +++ b/src/Sql/Sql/Database Backup/Cmdlet/GetAzureSqlDatabaseRestorePoints.cs @@ -13,13 +13,16 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.Sql.Backup.Model; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Collections.Generic; using System.Management.Automation; namespace Microsoft.Azure.Commands.Sql.Backup.Cmdlet { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseRestorePoints", SupportsShouldProcess = true,ConfirmImpact = ConfirmImpact.None)] + [GenericBreakingChange("Get-AzSqlDatabaseRestorePoints alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseRestorePoint", SupportsShouldProcess = true,ConfirmImpact = ConfirmImpact.None)] [OutputType(typeof(AzureSqlDatabaseRestorePointModel))] + [Alias("Get-AzSqlDatabaseRestorePoints")] public class GetAzureSqlDatabaseRestorePoints : AzureSqlDatabaseRestorePointCmdletBase { /// diff --git a/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupAdapter.cs b/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupAdapter.cs index 78867769edf3..92adaeccb99d 100644 --- a/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupAdapter.cs +++ b/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupAdapter.cs @@ -24,6 +24,7 @@ using System.Collections.Generic; using System.Globalization; using System.Linq; +using System.Management.Automation; namespace Microsoft.Azure.Commands.Sql.Backup.Services { @@ -363,7 +364,7 @@ internal IEnumerable GetDatabaseLo bool? onlyLatestPerDatabase, string databaseState) { - if (!string.IsNullOrWhiteSpace(backupName)) + if (!string.IsNullOrWhiteSpace(backupName) && !WildcardPattern.ContainsWildcardCharacters(backupName)) { return new List() { diff --git a/src/Sql/Sql/Database/Cmdlet/GetAzureSqlDatabase.cs b/src/Sql/Sql/Database/Cmdlet/GetAzureSqlDatabase.cs index cd90873b4d97..310fd6d72ef7 100644 --- a/src/Sql/Sql/Database/Cmdlet/GetAzureSqlDatabase.cs +++ b/src/Sql/Sql/Database/Cmdlet/GetAzureSqlDatabase.cs @@ -43,7 +43,7 @@ protected override IEnumerable GetEntity() { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("DatabaseName")) + if (MyInvocation.BoundParameters.ContainsKey("DatabaseName") && !WildcardPattern.ContainsWildcardCharacters(DatabaseName)) { results = new List(); results.Add(ModelAdapter.GetDatabase(this.ResourceGroupName, this.ServerName, this.DatabaseName)); @@ -53,7 +53,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListDatabases(this.ResourceGroupName, this.ServerName); } - return results; + return SubResourceWildcardFilter(DatabaseName, results); } /// diff --git a/src/Sql/Sql/Database/Cmdlet/GetAzureSqlDatabaseExpanded.cs b/src/Sql/Sql/Database/Cmdlet/GetAzureSqlDatabaseExpanded.cs index f5529d782e3d..095602d6cf8c 100644 --- a/src/Sql/Sql/Database/Cmdlet/GetAzureSqlDatabaseExpanded.cs +++ b/src/Sql/Sql/Database/Cmdlet/GetAzureSqlDatabaseExpanded.cs @@ -66,7 +66,7 @@ protected override IEnumerable GetEntity() { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("DatabaseName")) + if (MyInvocation.BoundParameters.ContainsKey("DatabaseName") && !WildcardPattern.ContainsWildcardCharacters(DatabaseName)) { results = new List(); results.Add(ModelAdapter.GetDatabaseExpanded(this.ResourceGroupName, this.ServerName, this.DatabaseName)); @@ -76,7 +76,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListDatabasesExpanded(this.ResourceGroupName, this.ServerName); } - return results; + return SubResourceWildcardFilter(DatabaseName, results); } } } diff --git a/src/Sql/Sql/Elastic Pools/Cmdlet/GetAzureSqlElasticPool.cs b/src/Sql/Sql/Elastic Pools/Cmdlet/GetAzureSqlElasticPool.cs index 1e9291c50841..225b71810a9f 100644 --- a/src/Sql/Sql/Elastic Pools/Cmdlet/GetAzureSqlElasticPool.cs +++ b/src/Sql/Sql/Elastic Pools/Cmdlet/GetAzureSqlElasticPool.cs @@ -43,7 +43,7 @@ protected override IEnumerable GetEntity() { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("ElasticPoolName")) + if (MyInvocation.BoundParameters.ContainsKey("ElasticPoolName") && !WildcardPattern.ContainsWildcardCharacters(ElasticPoolName)) { results = new List(); results.Add(ModelAdapter.GetElasticPool(this.ResourceGroupName, this.ServerName, this.ElasticPoolName)); @@ -53,7 +53,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListElasticPools(this.ResourceGroupName, this.ServerName); } - return results; + return SubResourceWildcardFilter(ElasticPoolName, results); } /// diff --git a/src/Sql/Sql/Elastic Pools/Cmdlet/GetAzureSqlElasticPoolDatabase.cs b/src/Sql/Sql/Elastic Pools/Cmdlet/GetAzureSqlElasticPoolDatabase.cs index 4d81f01c6c70..18906c91178e 100644 --- a/src/Sql/Sql/Elastic Pools/Cmdlet/GetAzureSqlElasticPoolDatabase.cs +++ b/src/Sql/Sql/Elastic Pools/Cmdlet/GetAzureSqlElasticPoolDatabase.cs @@ -53,7 +53,7 @@ protected IEnumerable GetDatabase() { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("DatabaseName")) + if (MyInvocation.BoundParameters.ContainsKey("DatabaseName") && !WildcardPattern.ContainsWildcardCharacters(DatabaseName)) { results = new List(); results.Add(ModelAdapter.GetElasticPoolDatabase(this.ResourceGroupName, this.ServerName, this.ElasticPoolName, this.DatabaseName)); @@ -63,7 +63,7 @@ protected IEnumerable GetDatabase() results = ModelAdapter.ListElasticPoolDatabases(this.ResourceGroupName, this.ServerName, this.ElasticPoolName); } - return results; + return SubResourceWildcardFilter(DatabaseName, results); } /// diff --git a/src/Sql/Sql/Failover Group/Cmdlet/GetAzureSqlFailoverGroup.cs b/src/Sql/Sql/Failover Group/Cmdlet/GetAzureSqlFailoverGroup.cs index f3bb26b72fcc..8e5dbcf30d36 100644 --- a/src/Sql/Sql/Failover Group/Cmdlet/GetAzureSqlFailoverGroup.cs +++ b/src/Sql/Sql/Failover Group/Cmdlet/GetAzureSqlFailoverGroup.cs @@ -52,7 +52,7 @@ protected override IEnumerable GetEntity() { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("FailoverGroupName")) + if (MyInvocation.BoundParameters.ContainsKey("FailoverGroupName") && !WildcardPattern.ContainsWildcardCharacters(FailoverGroupName)) { results = new List(); results.Add(ModelAdapter.GetFailoverGroup(this.ResourceGroupName, this.ServerName, this.FailoverGroupName)); @@ -62,7 +62,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListFailoverGroups(this.ResourceGroupName, this.ServerName); } - return results; + return SubResourceWildcardFilter(FailoverGroupName, results); } /// diff --git a/src/Sql/Sql/FirewallRule/Cmdlet/GetAzureSqlServerFirewallRule.cs b/src/Sql/Sql/FirewallRule/Cmdlet/GetAzureSqlServerFirewallRule.cs index a97924415ec7..437342ee0f78 100644 --- a/src/Sql/Sql/FirewallRule/Cmdlet/GetAzureSqlServerFirewallRule.cs +++ b/src/Sql/Sql/FirewallRule/Cmdlet/GetAzureSqlServerFirewallRule.cs @@ -44,7 +44,7 @@ protected override IEnumerable GetEntity() { ICollection results = null; - if (this.MyInvocation.BoundParameters.ContainsKey("FirewallRuleName")) + if (this.MyInvocation.BoundParameters.ContainsKey("FirewallRuleName") && !WildcardPattern.ContainsWildcardCharacters(FirewallRuleName)) { results = new List(); results.Add(ModelAdapter.GetFirewallRule(this.ResourceGroupName, this.ServerName, this.FirewallRuleName)); @@ -54,7 +54,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListFirewallRules(this.ResourceGroupName, this.ServerName); } - return results; + return SubResourceWildcardFilter(FirewallRuleName, results); } /// diff --git a/src/Sql/Sql/Index Recommendations/Cmdlet/GetAzureSqlDatabaseIndexRecommendations.cs b/src/Sql/Sql/Index Recommendations/Cmdlet/GetAzureSqlDatabaseIndexRecommendations.cs index 92d36404b31a..0b50b2dc1c48 100644 --- a/src/Sql/Sql/Index Recommendations/Cmdlet/GetAzureSqlDatabaseIndexRecommendations.cs +++ b/src/Sql/Sql/Index Recommendations/Cmdlet/GetAzureSqlDatabaseIndexRecommendations.cs @@ -18,6 +18,7 @@ using Microsoft.Azure.Commands.Sql.Common; using Microsoft.Azure.Commands.Sql.Model; using Microsoft.Azure.Commands.Sql.Service; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Collections.Generic; using System.Linq; using System.Management.Automation; @@ -27,8 +28,10 @@ namespace Microsoft.Azure.Commands.Sql.Cmdlet /// /// Defines the Get-AzSqlDatabaseIndexRecommendations cmdlet /// - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseIndexRecommendations", ConfirmImpact = ConfirmImpact.None, SupportsShouldProcess = true)] + [GenericBreakingChange("Get-AzSqlDatabaseIndexRecommendations alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseIndexRecommendation", ConfirmImpact = ConfirmImpact.None, SupportsShouldProcess = true)] [OutputType(typeof(IndexRecommendation))] + [Alias("Get-AzSqlDatabaseIndexRecommendations")] public class GetAzureSqlDatabaseIndexRecommendations : AzureSqlCmdletBase, AzureSqlDatabaseIndexRecommendationAdapter> { /// diff --git a/src/Sql/Sql/ManagedDatabase/Cmdlet/GetAzureSqlRecoverableManagedDatabase.cs b/src/Sql/Sql/ManagedDatabase/Cmdlet/GetAzureSqlInstanceDatabaseGeoBackup.cs similarity index 93% rename from src/Sql/Sql/ManagedDatabase/Cmdlet/GetAzureSqlRecoverableManagedDatabase.cs rename to src/Sql/Sql/ManagedDatabase/Cmdlet/GetAzureSqlInstanceDatabaseGeoBackup.cs index 2fa32ecef822..b2469d8334c0 100644 --- a/src/Sql/Sql/ManagedDatabase/Cmdlet/GetAzureSqlRecoverableManagedDatabase.cs +++ b/src/Sql/Sql/ManagedDatabase/Cmdlet/GetAzureSqlInstanceDatabaseGeoBackup.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.Sql.ManagedDatabase.Cmdlet [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseGeoBackup", DefaultParameterSetName = GetByNameAndResourceGroupParameterSet), OutputType(typeof(AzureSqlRecoverableManagedDatabaseModel))] - public class GetAzureSqlRecoverableManagedDatabase : AzureSqlRecoverableManagedDatabaseCmdletBase> + public class GetAzureSqlInstanceDatabaseGeoBackup : AzureSqlRecoverableManagedDatabaseCmdletBase> { protected const string GetByNameAndResourceGroupParameterSet = "GetInstanceDatabaseFromInputParameters"; @@ -71,7 +71,7 @@ protected override IEnumerable GetEntit { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("Name")) + if (MyInvocation.BoundParameters.ContainsKey("Name") && !WildcardPattern.ContainsWildcardCharacters(Name)) { results = new List(); results.Add(ModelAdapter.GetRecoverableManagedDatabase(this.ResourceGroupName, this.InstanceName, this.Name)); @@ -81,7 +81,7 @@ protected override IEnumerable GetEntit results = ModelAdapter.ListRecoverableManagedDatabases(this.ResourceGroupName, this.InstanceName); } - return results; + return SubResourceWildcardFilter(Name, results); } /// diff --git a/src/Sql/Sql/ManagedDatabase/Cmdlet/GetAzureSqlManagedDatabase.cs b/src/Sql/Sql/ManagedDatabase/Cmdlet/GetAzureSqlManagedDatabase.cs index dcd31351cdd2..7b7188d13eb2 100644 --- a/src/Sql/Sql/ManagedDatabase/Cmdlet/GetAzureSqlManagedDatabase.cs +++ b/src/Sql/Sql/ManagedDatabase/Cmdlet/GetAzureSqlManagedDatabase.cs @@ -115,33 +115,15 @@ protected override IEnumerable GetEntity() ResourceGroupName = resourceInfo.ResourceGroupName; InstanceName = resourceInfo.ResourceName; - - if (MyInvocation.BoundParameters.ContainsKey("Name")) - { - results = new List(); - results.Add(ModelAdapter.GetManagedDatabase(this.ResourceGroupName, this.InstanceName, this.Name)); - } - else - { - results = ModelAdapter.ListManagedDatabases(this.ResourceGroupName, this.InstanceName); - } } else if (string.Equals(this.ParameterSetName, GetByInputObjectParameterSet, System.StringComparison.OrdinalIgnoreCase)) { ResourceGroupName = InstanceObject.ResourceGroupName; InstanceName = InstanceObject.ManagedInstanceName; - - if (MyInvocation.BoundParameters.ContainsKey("Name")) - { - results = new List(); - results.Add(ModelAdapter.GetManagedDatabase(this.ResourceGroupName, this.InstanceName, this.Name)); - } - else - { - results = ModelAdapter.ListManagedDatabases(this.ResourceGroupName, this.InstanceName); - } } - else if (MyInvocation.BoundParameters.ContainsKey("Name")) + + + if (MyInvocation.BoundParameters.ContainsKey("Name") && !WildcardPattern.ContainsWildcardCharacters(Name)) { results = new List(); results.Add(ModelAdapter.GetManagedDatabase(this.ResourceGroupName, this.InstanceName, this.Name)); @@ -151,7 +133,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListManagedDatabases(this.ResourceGroupName, this.InstanceName); } - return results; + return SubResourceWildcardFilter(Name, results); } /// diff --git a/src/Sql/Sql/ManagedInstance/Cmdlet/GetAzureSqlManagedInstance.cs b/src/Sql/Sql/ManagedInstance/Cmdlet/GetAzureSqlManagedInstance.cs index 1ff2bc405e85..3262baba34eb 100644 --- a/src/Sql/Sql/ManagedInstance/Cmdlet/GetAzureSqlManagedInstance.cs +++ b/src/Sql/Sql/ManagedInstance/Cmdlet/GetAzureSqlManagedInstance.cs @@ -23,22 +23,14 @@ namespace Microsoft.Azure.Commands.Sql.ManagedInstance.Cmdlet /// /// Defines the Get-AzSqlInstance cmdlet /// - [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstance", - DefaultParameterSetName = GetByResourceGroupParameterSet), + [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstance"), OutputType(typeof(AzureSqlManagedInstanceModel))] public class GetAzureSqlManagedInstance : ManagedInstanceCmdletBase { - protected const string GetByNameAndResourceGroupParameterSet = - "GetInstanceByNameAndResourceGroup"; - - protected const string GetByResourceGroupParameterSet = - "GetInstanceByResourceGroup"; - /// /// Gets or sets the name of the instance. /// - [Parameter(ParameterSetName = GetByNameAndResourceGroupParameterSet, - Mandatory = true, + [Parameter(Mandatory = false, Position = 0, HelpMessage = "The name of the instance.")] [Alias("InstanceName")] @@ -49,12 +41,7 @@ public class GetAzureSqlManagedInstance : ManagedInstanceCmdletBase /// /// Gets or sets the name of the resource group. /// - [Parameter(ParameterSetName = GetByNameAndResourceGroupParameterSet, - Mandatory = true, - Position = 1, - HelpMessage = "The name of the resource group.")] - [Parameter(ParameterSetName = GetByResourceGroupParameterSet, - Mandatory = false, + [Parameter(Mandatory = false, Position = 1, HelpMessage = "The name of the resource group.")] [ResourceGroupCompleter] @@ -69,24 +56,21 @@ protected override IEnumerable GetEntity() { ICollection results = null; - if (string.Equals(this.ParameterSetName, GetByNameAndResourceGroupParameterSet, System.StringComparison.OrdinalIgnoreCase)) + if (ShouldGetByName(ResourceGroupName, Name)) { results = new List(); results.Add(ModelAdapter.GetManagedInstance(this.ResourceGroupName, this.Name)); } - else if (string.Equals(this.ParameterSetName, GetByResourceGroupParameterSet, System.StringComparison.OrdinalIgnoreCase)) + else if (ShouldListByResourceGroup(ResourceGroupName, Name)) + { + results = ModelAdapter.ListManagedInstancesByResourceGroup(this.ResourceGroupName); + } + else { - if (MyInvocation.BoundParameters.ContainsKey("ResourceGroupName")) - { - results = ModelAdapter.ListManagedInstancesByResourceGroup(this.ResourceGroupName); - } - else - { - results = ModelAdapter.ListManagedInstances(); - } + results = ModelAdapter.ListManagedInstances(); } - return results; + return TopLevelWildcardFilter(ResourceGroupName, Name, results); } /// diff --git a/src/Sql/Sql/Properties/AssemblyInfo.cs b/src/Sql/Sql/Properties/AssemblyInfo.cs index 7160500f6079..70e0d84b484f 100644 --- a/src/Sql/Sql/Properties/AssemblyInfo.cs +++ b/src/Sql/Sql/Properties/AssemblyInfo.cs @@ -44,8 +44,8 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.7.0")] -[assembly: AssemblyFileVersion("1.7.0")] +[assembly: AssemblyVersion("1.8.0")] +[assembly: AssemblyFileVersion("1.8.0")] #if !SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")] #endif diff --git a/src/Sql/Sql/Replication/Cmdlet/GetAzureSqlDatabaseReplicationLink.cs b/src/Sql/Sql/Replication/Cmdlet/GetAzureSqlDatabaseReplicationLink.cs index 71108da6e606..0db88d26201e 100644 --- a/src/Sql/Sql/Replication/Cmdlet/GetAzureSqlDatabaseReplicationLink.cs +++ b/src/Sql/Sql/Replication/Cmdlet/GetAzureSqlDatabaseReplicationLink.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.Replication.Cmdlet { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseReplicationLink",DefaultParameterSetName = ByDatabaseName,ConfirmImpact = ConfirmImpact.None, SupportsShouldProcess = true)] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseReplicationLink", ConfirmImpact = ConfirmImpact.None, SupportsShouldProcess = true)] [OutputType(typeof(AzureReplicationLinkModel))] public class GetAzureSqlDatabaseReplicationLink : AzureSqlDatabaseSecondaryCmdletBase { @@ -58,7 +58,6 @@ public class GetAzureSqlDatabaseReplicationLink : AzureSqlDatabaseSecondaryCmdle /// Gets or sets the name of the Azure SQL Server that has the Azure SQL Database partner. /// [Parameter(Mandatory = false, - ParameterSetName = ByPartnerServerName, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the Azure SQL Server that has the Azure SQL Database partner.")] [ResourceNameCompleter("Microsoft.Sql/servers", "PartnerResourceGroupName")] @@ -73,7 +72,7 @@ protected override IEnumerable GetEntity() { ICollection results; - if (ParameterSetName == ByPartnerServerName) + if (MyInvocation.BoundParameters.ContainsKey(PartnerServerName) && !WildcardPattern.ContainsWildcardCharacters(PartnerServerName)) { results = new List(); results.Add(ModelAdapter.GetLink(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.PartnerResourceGroupName, this.PartnerServerName)); @@ -83,7 +82,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListLinks(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.PartnerResourceGroupName); } - return results; + return SubResourceWildcardFilter(PartnerServerName, results); } /// diff --git a/src/Sql/Sql/Server/Cmdlet/GetAzureSqlServer.cs b/src/Sql/Sql/Server/Cmdlet/GetAzureSqlServer.cs index 2eaba131c98b..ff3e466c0a2d 100644 --- a/src/Sql/Sql/Server/Cmdlet/GetAzureSqlServer.cs +++ b/src/Sql/Sql/Server/Cmdlet/GetAzureSqlServer.cs @@ -62,25 +62,21 @@ protected override IEnumerable GetEntity() { ICollection results = null; - if (MyInvocation.BoundParameters.ContainsKey("ServerName") && MyInvocation.BoundParameters.ContainsKey("ResourceGroupName")) + if (ShouldGetByName(ResourceGroupName, ServerName)) { results = new List(); results.Add(ModelAdapter.GetServer(this.ResourceGroupName, this.ServerName)); } - else if (MyInvocation.BoundParameters.ContainsKey("ResourceGroupName")) + else if (ShouldListByResourceGroup(ResourceGroupName, ServerName)) { results = ModelAdapter.ListServersByResourceGroup(this.ResourceGroupName); } - else if (!MyInvocation.BoundParameters.ContainsKey("ServerName")) - { - results = ModelAdapter.ListServers(); - } else { - throw new PSArgumentException("When specifying the serverName parameter the ResourceGroup parameter must also be used"); + results = ModelAdapter.ListServers(); } - return results; + return TopLevelWildcardFilter(ResourceGroupName, ServerName, results); } /// diff --git a/src/Sql/Sql/ServerCommunicationLink/Cmdlet/GetAzureSqlServerCommunicationLink.cs b/src/Sql/Sql/ServerCommunicationLink/Cmdlet/GetAzureSqlServerCommunicationLink.cs index ba4a958e1ac3..1d5b6280a23d 100644 --- a/src/Sql/Sql/ServerCommunicationLink/Cmdlet/GetAzureSqlServerCommunicationLink.cs +++ b/src/Sql/Sql/ServerCommunicationLink/Cmdlet/GetAzureSqlServerCommunicationLink.cs @@ -39,7 +39,7 @@ protected override IEnumerable GetEntity() { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("LinkName")) + if (MyInvocation.BoundParameters.ContainsKey("LinkName") && !WildcardPattern.ContainsWildcardCharacters(LinkName)) { results = new List(); results.Add(ModelAdapter.GetServerCommunicationLink(this.ResourceGroupName, this.ServerName, this.LinkName)); @@ -49,7 +49,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListServerCommunicationLinks(this.ResourceGroupName, this.ServerName); } - return results; + return SubResourceWildcardFilter(LinkName, results); } /// diff --git a/src/Sql/Sql/ServerDisasterRecoveryConfiguration/Cmdlet/GetAzureSqlServerDisasterRecoveryConfiguration.cs b/src/Sql/Sql/ServerDisasterRecoveryConfiguration/Cmdlet/GetAzureSqlServerDisasterRecoveryConfiguration.cs index 3cf12b4cceef..6aaa347dc36e 100644 --- a/src/Sql/Sql/ServerDisasterRecoveryConfiguration/Cmdlet/GetAzureSqlServerDisasterRecoveryConfiguration.cs +++ b/src/Sql/Sql/ServerDisasterRecoveryConfiguration/Cmdlet/GetAzureSqlServerDisasterRecoveryConfiguration.cs @@ -37,7 +37,7 @@ protected override IEnumerable { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("VirtualEndpointName")) + if (MyInvocation.BoundParameters.ContainsKey("VirtualEndpointName") && !WildcardPattern.ContainsWildcardCharacters(VirtualEndpointName)) { results = new List { @@ -49,7 +49,7 @@ protected override IEnumerable results = ModelAdapter.ListServerDisasterRecoveryConfigurations(this.ResourceGroupName, this.ServerName); } - return results; + return SubResourceWildcardFilter(VirtualEndpointName, results); } /// diff --git a/src/Sql/Sql/ServerDnsAlias/Cmdlet/GetAzureSqlServerDnsAlias.cs b/src/Sql/Sql/ServerDnsAlias/Cmdlet/GetAzureSqlServerDnsAlias.cs index 8981739bd222..3f71d5c195da 100644 --- a/src/Sql/Sql/ServerDnsAlias/Cmdlet/GetAzureSqlServerDnsAlias.cs +++ b/src/Sql/Sql/ServerDnsAlias/Cmdlet/GetAzureSqlServerDnsAlias.cs @@ -42,7 +42,7 @@ protected override IEnumerable GetEntity() { ICollection results = null; - if (this.MyInvocation.BoundParameters.ContainsKey("Name")) + if (this.MyInvocation.BoundParameters.ContainsKey("Name") && !WildcardPattern.ContainsWildcardCharacters(Name)) { results = new List(); results.Add(ModelAdapter.GetServerDnsAlias(this.ResourceGroupName, this.ServerName, this.Name)); @@ -52,7 +52,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListServerDnsAliases(this.ResourceGroupName, this.ServerName); } - return results; + return SubResourceWildcardFilter(Name, results); } /// diff --git a/src/Sql/Sql/ServiceObjective/Cmdlet/GetAzureSqlServerServiceObjective.cs b/src/Sql/Sql/ServiceObjective/Cmdlet/GetAzureSqlServerServiceObjective.cs index 77829e3f9064..5aba02257564 100644 --- a/src/Sql/Sql/ServiceObjective/Cmdlet/GetAzureSqlServerServiceObjective.cs +++ b/src/Sql/Sql/ServiceObjective/Cmdlet/GetAzureSqlServerServiceObjective.cs @@ -43,7 +43,7 @@ protected override IEnumerable GetEntity() { ICollection results = null; - if (this.MyInvocation.BoundParameters.ContainsKey("ServiceObjectiveName")) + if (this.MyInvocation.BoundParameters.ContainsKey("ServiceObjectiveName") && !WildcardPattern.ContainsWildcardCharacters(ServiceObjectiveName)) { results = new List { @@ -55,7 +55,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListServiceObjectives(this.ResourceGroupName, this.ServerName); } - return results; + return SubResourceWildcardFilter(ServiceObjectiveName, results); } /// diff --git a/src/Sql/Sql/ServiceTierAdvisor/Cmdlet/GetAzureSqlUpgradeDatabaseHint.cs b/src/Sql/Sql/ServiceTierAdvisor/Cmdlet/GetAzureSqlUpgradeDatabaseHint.cs index f6f155d54fe5..b72e4f0d8493 100644 --- a/src/Sql/Sql/ServiceTierAdvisor/Cmdlet/GetAzureSqlUpgradeDatabaseHint.cs +++ b/src/Sql/Sql/ServiceTierAdvisor/Cmdlet/GetAzureSqlUpgradeDatabaseHint.cs @@ -66,7 +66,7 @@ protected override IEnumerable GetEntity() { ICollection results; - if (MyInvocation.BoundParameters.ContainsKey("DatabaseName")) + if (MyInvocation.BoundParameters.ContainsKey("DatabaseName") && !WildcardPattern.ContainsWildcardCharacters(DatabaseName)) { results = new List(); results.Add(ModelAdapter.GetUpgradeDatabaseHints(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.ExcludeElasticPoolCandidates)); @@ -76,7 +76,7 @@ protected override IEnumerable GetEntity() results = ModelAdapter.ListUpgradeDatabaseHints(this.ResourceGroupName, this.ServerName, this.ExcludeElasticPoolCandidates); } - return results; + return SubResourceWildcardFilter(DatabaseName, results); } /// diff --git a/src/Sql/Sql/VirtualNetworkRule/Cmdlet/GetAzureSqlServerVirtualNetworkRule.cs b/src/Sql/Sql/VirtualNetworkRule/Cmdlet/GetAzureSqlServerVirtualNetworkRule.cs index 1c7d81964cfd..81bfe0cded3b 100644 --- a/src/Sql/Sql/VirtualNetworkRule/Cmdlet/GetAzureSqlServerVirtualNetworkRule.cs +++ b/src/Sql/Sql/VirtualNetworkRule/Cmdlet/GetAzureSqlServerVirtualNetworkRule.cs @@ -40,7 +40,7 @@ protected override IEnumerable GetEntity( { ICollection results = null; - if (this.MyInvocation.BoundParameters.ContainsKey("VirtualNetworkRuleName")) + if (this.MyInvocation.BoundParameters.ContainsKey("VirtualNetworkRuleName") && !WildcardPattern.ContainsWildcardCharacters(VirtualNetworkRuleName)) { results = new List(); results.Add(ModelAdapter.GetVirtualNetworkRule(this.ResourceGroupName, this.ServerName, this.VirtualNetworkRuleName)); @@ -50,7 +50,7 @@ protected override IEnumerable GetEntity( results = ModelAdapter.ListVirtualNetworkRules(this.ResourceGroupName, this.ServerName); } - return results; + return SubResourceWildcardFilter(VirtualNetworkRuleName, results); } /// diff --git a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Database/ClearSqlDatabaseVulnerabilityAssessmentSettings.cs b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Database/ClearSqlDatabaseVulnerabilityAssessmentSettings.cs index c4c99a543a60..ca04402b5523 100644 --- a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Database/ClearSqlDatabaseVulnerabilityAssessmentSettings.cs +++ b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Database/ClearSqlDatabaseVulnerabilityAssessmentSettings.cs @@ -16,13 +16,16 @@ using Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model; using System.Management.Automation; using Microsoft.Azure.Commands.Sql.Database.Model; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet { /// /// Clears the Vulnerability Assessment on a specific database. /// - [Cmdlet("Clear", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseVulnerabilityAssessmentSettings", SupportsShouldProcess = true), OutputType(typeof(DatabaseVulnerabilityAssessmentSettingsModel))] + [GenericBreakingChange("Clear-AzSqlDatabaseVulnerabilityAssessmentSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Clear", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseVulnerabilityAssessmentSetting", SupportsShouldProcess = true), OutputType(typeof(DatabaseVulnerabilityAssessmentSettingsModel))] + [Alias("Clear-AzSqlDatabaseVulnerabilityAssessmentSettings")] public class ClearSqlDatabaseVulnerabilityAssessmentSettings : ClearSqlVulnerabilityAssessmentSettingsBase { /// diff --git a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Database/GetAzureSqlDatabaseVulnerabilityAssessmentSettings.cs b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Database/GetAzureSqlDatabaseVulnerabilityAssessmentSettings.cs index b0977d0bc7a3..301e0ae77c13 100644 --- a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Database/GetAzureSqlDatabaseVulnerabilityAssessmentSettings.cs +++ b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Database/GetAzureSqlDatabaseVulnerabilityAssessmentSettings.cs @@ -16,13 +16,16 @@ using Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model; using System.Management.Automation; using Microsoft.Azure.Commands.Sql.Database.Model; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet { /// /// Returns the Vulnerability Assessment settings of a specific database. /// - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseVulnerabilityAssessmentSettings"), OutputType(typeof(DatabaseVulnerabilityAssessmentSettingsModel))] + [GenericBreakingChange("Get-AzSqlDatabaseVulnerabilityAssessmentSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseVulnerabilityAssessmentSetting"), OutputType(typeof(DatabaseVulnerabilityAssessmentSettingsModel))] + [Alias("Get-AzSqlDatabaseVulnerabilityAssessmentSettings")] public class GetAzureSqlDatabaseVulnerabilityAssessmentSettings : GetAzureSqlVulnerabilityAssessmentSettingsBase { /// diff --git a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Database/UpdateAzureSqlDatabaseVulnerabilityAssessmentSettings.cs b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Database/UpdateAzureSqlDatabaseVulnerabilityAssessmentSettings.cs index 2144ed72ccf7..39af8c484ed0 100644 --- a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Database/UpdateAzureSqlDatabaseVulnerabilityAssessmentSettings.cs +++ b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Database/UpdateAzureSqlDatabaseVulnerabilityAssessmentSettings.cs @@ -15,13 +15,16 @@ using System; using Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model; using System.Management.Automation; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet { /// /// Updates the Vulnerability Assessment settings properties for a specific database. /// - [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseVulnerabilityAssessmentSettings", SupportsShouldProcess = true, DefaultParameterSetName = UpdateSettingsWithStorageAccountNameParameterSet), OutputType(typeof(DatabaseVulnerabilityAssessmentSettingsModel))] + [GenericBreakingChange("Update-AzSqlDatabaseVulnerabilityAssessmentSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseVulnerabilityAssessmentSetting", SupportsShouldProcess = true, DefaultParameterSetName = UpdateSettingsWithStorageAccountNameParameterSet), OutputType(typeof(DatabaseVulnerabilityAssessmentSettingsModel))] + [Alias("Update-AzSqlDatabaseVulnerabilityAssessmentSettings")] public class UpdateAzureSqlDatabaseVulnerabilityAssessmentSettings : UpdateAzureSqlVulnerabilityAssessmentSettingsBase { /// diff --git a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedDatabase/ClearSqlManagedDatabaseVulnerabilityAssessmentSettings.cs b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedDatabase/ClearSqlManagedDatabaseVulnerabilityAssessmentSettings.cs index 129f9f6532dd..25f4c0811cae 100644 --- a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedDatabase/ClearSqlManagedDatabaseVulnerabilityAssessmentSettings.cs +++ b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedDatabase/ClearSqlManagedDatabaseVulnerabilityAssessmentSettings.cs @@ -16,13 +16,16 @@ using Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model; using System.Management.Automation; using Microsoft.Azure.Commands.Sql.ManagedDatabase.Model; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet { /// /// Clears the Vulnerability Assessment on a specific managed database. /// - [Cmdlet("Clear", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseVulnerabilityAssessmentSettings", SupportsShouldProcess = true, DefaultParameterSetName = GetByNameParameterSet), OutputType(typeof(ManagedDatabaseVulnerabilityAssessmentSettingsModel))] + [GenericBreakingChange("Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Clear", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseVulnerabilityAssessmentSetting", SupportsShouldProcess = true, DefaultParameterSetName = GetByNameParameterSet), OutputType(typeof(ManagedDatabaseVulnerabilityAssessmentSettingsModel))] + [Alias("Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings")] public class ClearSqlManagedDatabaseVulnerabilityAssessmentSettings : ClearSqlVulnerabilityAssessmentSettingsBase { /// diff --git a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedDatabase/GetAzureSqlManagedDatabaseVulnerabilityAssessmentSettings.cs b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedDatabase/GetAzureSqlManagedDatabaseVulnerabilityAssessmentSettings.cs index 763b9aa45816..9abd480af109 100644 --- a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedDatabase/GetAzureSqlManagedDatabaseVulnerabilityAssessmentSettings.cs +++ b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedDatabase/GetAzureSqlManagedDatabaseVulnerabilityAssessmentSettings.cs @@ -16,13 +16,16 @@ using Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model; using System.Management.Automation; using Microsoft.Azure.Commands.Sql.ManagedDatabase.Model; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet { /// /// Returns the Vulnerability Assessment settings of a specific managed database. /// - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseVulnerabilityAssessmentSettings", DefaultParameterSetName = GetByNameParameterSet), OutputType(typeof(ManagedDatabaseVulnerabilityAssessmentSettingsModel))] + [GenericBreakingChange("Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseVulnerabilityAssessmentSetting", DefaultParameterSetName = GetByNameParameterSet), OutputType(typeof(ManagedDatabaseVulnerabilityAssessmentSettingsModel))] + [Alias("Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings")] public class GetAzureSqlManagedDatabaseVulnerabilityAssessmentSettings : GetAzureSqlVulnerabilityAssessmentSettingsBase { /// diff --git a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedDatabase/UpdateAzureSqlManagedDatabaseVulnerabilityAssessmentSettings.cs b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedDatabase/UpdateAzureSqlManagedDatabaseVulnerabilityAssessmentSettings.cs index c3e149f664e2..40260b219edc 100644 --- a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedDatabase/UpdateAzureSqlManagedDatabaseVulnerabilityAssessmentSettings.cs +++ b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedDatabase/UpdateAzureSqlManagedDatabaseVulnerabilityAssessmentSettings.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet @@ -20,7 +21,9 @@ namespace Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet /// /// Updates the Vulnerability Assessment settings properties for a specific managed database. /// - [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseVulnerabilityAssessmentSettings", SupportsShouldProcess = true, DefaultParameterSetName = UpdateSettingsWithStorageAccountNameParameterSet), OutputType(typeof(ManagedDatabaseVulnerabilityAssessmentSettingsModel))] + [GenericBreakingChange("Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceDatabaseVulnerabilityAssessmentSetting", SupportsShouldProcess = true, DefaultParameterSetName = UpdateSettingsWithStorageAccountNameParameterSet), OutputType(typeof(ManagedDatabaseVulnerabilityAssessmentSettingsModel))] + [Alias("Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings")] public class UpdateAzureSqlManagedDatabaseVulnerabilityAssessmentSettings : UpdateAzureSqlVulnerabilityAssessmentSettingsBase { /// diff --git a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedInstance/ClearSqlManagedInstanceVulnerabilityAssessmentSettings.cs b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedInstance/ClearSqlManagedInstanceVulnerabilityAssessmentSettings.cs index 7ca48725f854..3eb347680644 100644 --- a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedInstance/ClearSqlManagedInstanceVulnerabilityAssessmentSettings.cs +++ b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedInstance/ClearSqlManagedInstanceVulnerabilityAssessmentSettings.cs @@ -17,13 +17,16 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.Sql.ManagedInstance.Model; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet { /// /// Clears the Vulnerability Assessment on a specific managed instance. /// - [Cmdlet("Clear", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceVulnerabilityAssessmentSettings", DefaultParameterSetName = ClearByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(ManagedInstanceVulnerabilityAssessmentSettingsModel))] + [GenericBreakingChange("Clear-AzSqlInstanceVulnerabilityAssessmentSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Clear", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceVulnerabilityAssessmentSetting", DefaultParameterSetName = ClearByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(ManagedInstanceVulnerabilityAssessmentSettingsModel))] + [Alias("Clear-AzSqlInstanceVulnerabilityAssessmentSettings")] public class ClearSqlManagedInstanceVulnerabilityAssessmentSettings : ClearSqlVulnerabilityAssessmentSettingsBase { /// diff --git a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedInstance/GetAzureSqlManagedInstanceVulnerabilityAssessmentSettings.cs b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedInstance/GetAzureSqlManagedInstanceVulnerabilityAssessmentSettings.cs index 32184f2c4551..4d8f180a8475 100644 --- a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedInstance/GetAzureSqlManagedInstanceVulnerabilityAssessmentSettings.cs +++ b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedInstance/GetAzureSqlManagedInstanceVulnerabilityAssessmentSettings.cs @@ -17,13 +17,16 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.Sql.ManagedInstance.Model; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet { /// /// Returns the Vulnerability Assessment settings of a specific managed instance. /// - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceVulnerabilityAssessmentSettings", DefaultParameterSetName = GetByNameParameterSet), OutputType(typeof(ManagedInstanceVulnerabilityAssessmentSettingsModel))] + [GenericBreakingChange("Get-AzSqlInstanceVulnerabilityAssessmentSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceVulnerabilityAssessmentSetting", DefaultParameterSetName = GetByNameParameterSet), OutputType(typeof(ManagedInstanceVulnerabilityAssessmentSettingsModel))] + [Alias("Get-AzSqlInstanceVulnerabilityAssessmentSettings")] public class GetAzureSqlManagedInstanceVulnerabilityAssessmentSettings : GetAzureSqlVulnerabilityAssessmentSettingsBase { /// diff --git a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedInstance/UpdateAzureSqlManagedInstanceVulnerabilityAssessmentSettings.cs b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedInstance/UpdateAzureSqlManagedInstanceVulnerabilityAssessmentSettings.cs index 497eae48dc84..2bcfffaf7633 100644 --- a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedInstance/UpdateAzureSqlManagedInstanceVulnerabilityAssessmentSettings.cs +++ b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/ManagedInstance/UpdateAzureSqlManagedInstanceVulnerabilityAssessmentSettings.cs @@ -16,13 +16,16 @@ using Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model; using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet { /// /// Updates the Vulnerability Assessment settings properties for a specific managed instance. /// - [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceVulnerabilityAssessmentSettings", SupportsShouldProcess = true, DefaultParameterSetName = UpdateSettingsWithStorageAccountNameParameterSet), OutputType(typeof(ManagedInstanceVulnerabilityAssessmentSettingsModel))] + [GenericBreakingChange("Update-AzSqlInstanceVulnerabilityAssessmentSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstanceVulnerabilityAssessmentSetting", SupportsShouldProcess = true, DefaultParameterSetName = UpdateSettingsWithStorageAccountNameParameterSet), OutputType(typeof(ManagedInstanceVulnerabilityAssessmentSettingsModel))] + [Alias("Update-AzSqlInstanceVulnerabilityAssessmentSettings")] public class UpdateAzureSqlManagedInstanceVulnerabilityAssessmentSettings : UpdateAzureSqlVulnerabilityAssessmentSettingsBase { /// diff --git a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Server/ClearSqlServerVulnerabilityAssessmentSettings.cs b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Server/ClearSqlServerVulnerabilityAssessmentSettings.cs index 5fa358f5e0e8..616903085891 100644 --- a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Server/ClearSqlServerVulnerabilityAssessmentSettings.cs +++ b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Server/ClearSqlServerVulnerabilityAssessmentSettings.cs @@ -17,13 +17,16 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.Sql.Server.Model; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet { /// /// Clears the Vulnerability Assessment on a specific server. /// - [Cmdlet("Clear", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerVulnerabilityAssessmentSettings", DefaultParameterSetName = ClearByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(ServerVulnerabilityAssessmentSettingsModel))] + [GenericBreakingChange("Clear-AzSqlServerVulnerabilityAssessmentSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Clear", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerVulnerabilityAssessmentSetting", DefaultParameterSetName = ClearByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(ServerVulnerabilityAssessmentSettingsModel))] + [Alias("Clear-AzSqlServerVulnerabilityAssessmentSettings")] public class ClearSqlServerVulnerabilityAssessmentSettings : ClearSqlVulnerabilityAssessmentSettingsBase { /// diff --git a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Server/GetAzureSqlServerVulnerabilityAssessmentSettings.cs b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Server/GetAzureSqlServerVulnerabilityAssessmentSettings.cs index 12839e33ea44..df449791f838 100644 --- a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Server/GetAzureSqlServerVulnerabilityAssessmentSettings.cs +++ b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Server/GetAzureSqlServerVulnerabilityAssessmentSettings.cs @@ -17,13 +17,16 @@ using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.Sql.Server.Model; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet { /// /// Returns the Vulnerability Assessment settings of a specific server. /// - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerVulnerabilityAssessmentSettings", DefaultParameterSetName = GetByNameParameterSet), OutputType(typeof(ServerVulnerabilityAssessmentSettingsModel))] + [GenericBreakingChange("Get-AzSqlServerVulnerabilityAssessmentSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerVulnerabilityAssessmentSetting", DefaultParameterSetName = GetByNameParameterSet), OutputType(typeof(ServerVulnerabilityAssessmentSettingsModel))] + [Alias("Get-AzSqlServerVulnerabilityAssessmentSettings")] public class GetAzureSqlServerVulnerabilityAssessmentSettings : GetAzureSqlVulnerabilityAssessmentSettingsBase { /// diff --git a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Server/UpdateAzureSqlServerVulnerabilityAssessmentSettings.cs b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Server/UpdateAzureSqlServerVulnerabilityAssessmentSettings.cs index 7c3bc8e487f7..a554866de6ca 100644 --- a/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Server/UpdateAzureSqlServerVulnerabilityAssessmentSettings.cs +++ b/src/Sql/Sql/VulnerabilityAssessment/Cmdlet/VulnerabilityAssessmentSettings/Server/UpdateAzureSqlServerVulnerabilityAssessmentSettings.cs @@ -16,13 +16,16 @@ using Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model; using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet { /// /// Updates the Vulnerability Assessment settings properties for a specific server. /// - [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerVulnerabilityAssessmentSettings", SupportsShouldProcess = true, DefaultParameterSetName = UpdateSettingsWithStorageAccountNameParameterSet), OutputType(typeof(DatabaseVulnerabilityAssessmentSettingsModel))] + [GenericBreakingChange("Update-AzSqlServerVulnerabilityAssessmentSettings alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerVulnerabilityAssessmentSetting", SupportsShouldProcess = true, DefaultParameterSetName = UpdateSettingsWithStorageAccountNameParameterSet), OutputType(typeof(DatabaseVulnerabilityAssessmentSettingsModel))] + [Alias("Update-AzSqlServerVulnerabilityAssessmentSettings")] public class UpdateAzureSqlServerVulnerabilityAssessmentSettings : UpdateAzureSqlVulnerabilityAssessmentSettingsBase { /// diff --git a/src/Sql/Sql/help/Az.Sql.md b/src/Sql/Sql/help/Az.Sql.md index 90470492157f..c079aad33a55 100644 --- a/src/Sql/Sql/help/Az.Sql.md +++ b/src/Sql/Sql/help/Az.Sql.md @@ -26,19 +26,19 @@ Adds a Transparent Data Encryption Certificate for the given SQL Server instance ### [Clear-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline](Clear-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline.md) Clears the vulnerability assessment rule baseline. -### [Clear-AzSqlDatabaseVulnerabilityAssessmentSettings](Clear-AzSqlDatabaseVulnerabilityAssessmentSettings.md) +### [Clear-AzSqlDatabaseVulnerabilityAssessmentSetting](Clear-AzSqlDatabaseVulnerabilityAssessmentSetting.md) Clears the vulnerability assessment settings of a database. ### [Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline](Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentRuleBaseline.md) Clears the vulnerability assessment rule baseline. -### [Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings](Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings.md) +### [Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting](Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting.md) Clears the vulnerability assessment settings of a managed database. -### [Clear-AzSqlInstanceVulnerabilityAssessmentSettings](Clear-AzSqlInstanceVulnerabilityAssessmentSettings.md) +### [Clear-AzSqlInstanceVulnerabilityAssessmentSetting](Clear-AzSqlInstanceVulnerabilityAssessmentSetting.md) Clears the vulnerability assessment settings of a managed instance. -### [Clear-AzSqlServerVulnerabilityAssessmentSettings](Clear-AzSqlServerVulnerabilityAssessmentSettings.md) +### [Clear-AzSqlServerVulnerabilityAssessmentSetting](Clear-AzSqlServerVulnerabilityAssessmentSetting.md) Clears the vulnerability assessment settings of a server. ### [Convert-AzSqlDatabaseVulnerabilityAssessmentScan](Convert-AzSqlDatabaseVulnerabilityAssessmentScan.md) @@ -101,7 +101,7 @@ Gets a database geo backup policy. ### [Get-AzSqlDatabaseImportExportStatus](Get-AzSqlDatabaseImportExportStatus.md) Gets the details of an import or export of an Azure SQL Database. -### [Get-AzSqlDatabaseIndexRecommendations](Get-AzSqlDatabaseIndexRecommendations.md) +### [Get-AzSqlDatabaseIndexRecommendation](Get-AzSqlDatabaseIndexRecommendation.md) Gets the recommended index operations for a server or database. ### [Get-AzSqlDatabaseLongTermRetentionBackup](Get-AzSqlDatabaseLongTermRetentionBackup.md) @@ -113,7 +113,7 @@ Gets one or more recommended actions for an Azure SQL Database Advisor. ### [Get-AzSqlDatabaseReplicationLink](Get-AzSqlDatabaseReplicationLink.md) Gets the geo-replication links between an Azure SQL Database and a resource group or SQL Server. -### [Get-AzSqlDatabaseRestorePoints](Get-AzSqlDatabaseRestorePoints.md) +### [Get-AzSqlDatabaseRestorePoint](Get-AzSqlDatabaseRestorePoint.md) Retrieves the distinct restore points from which a SQL Data Warehouse can be restored. ### [Get-AzSqlDatabaseSecureConnectionPolicy](Get-AzSqlDatabaseSecureConnectionPolicy.md) @@ -143,7 +143,7 @@ Gets the vulnerability assessment rule baseline. ### [Get-AzSqlDatabaseVulnerabilityAssessmentScanRecord](Get-AzSqlDatabaseVulnerabilityAssessmentScanRecord.md) Gets all vulnerability assessment scan record(s) associated with a given database. -### [Get-AzSqlDatabaseVulnerabilityAssessmentSettings](Get-AzSqlDatabaseVulnerabilityAssessmentSettings.md) +### [Get-AzSqlDatabaseVulnerabilityAssessmentSetting](Get-AzSqlDatabaseVulnerabilityAssessmentSetting.md) Gets the vulnerability assessment settings of a database. ### [Get-AzSqlDeletedDatabaseBackup](Get-AzSqlDeletedDatabaseBackup.md) @@ -197,10 +197,10 @@ Gets the vulnerability assessment rule baseline. ### [Get-AzSqlInstanceDatabaseVulnerabilityAssessmentScanRecord](Get-AzSqlInstanceDatabaseVulnerabilityAssessmentScanRecord.md) Gets all vulnerability assessment scan record(s) associated with a given managed database. -### [Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings](Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings.md) +### [Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting](Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting.md) Gets the vulnerability assessment settings of a managed database. -### [Get-AzSqlInstanceVulnerabilityAssessmentSettings](Get-AzSqlInstanceVulnerabilityAssessmentSettings.md) +### [Get-AzSqlInstanceVulnerabilityAssessmentSetting](Get-AzSqlInstanceVulnerabilityAssessmentSetting.md) Gets the vulnerability assessment settings of a managed instance. ### [Get-AzSqlServer](Get-AzSqlServer.md) @@ -254,7 +254,7 @@ Gets pricing tier hints for upgrading an Azure SQL Database server. ### [Get-AzSqlServerVirtualNetworkRule](Get-AzSqlServerVirtualNetworkRule.md) Gets or lists Azure SQL Server Virtual Network Rule. -### [Get-AzSqlServerVulnerabilityAssessmentSettings](Get-AzSqlServerVulnerabilityAssessmentSettings.md) +### [Get-AzSqlServerVulnerabilityAssessmentSetting](Get-AzSqlServerVulnerabilityAssessmentSetting.md) Gets the vulnerability assessment settings of a server. ### [Get-AzSqlSyncAgent](Get-AzSqlSyncAgent.md) @@ -557,16 +557,16 @@ Suspends a SQL Data Warehouse database. ### [Switch-AzSqlDatabaseFailoverGroup](Switch-AzSqlDatabaseFailoverGroup.md) Executes a failover of an Azure SQL Database Failover Group. -### [Update-AzSqlDatabaseVulnerabilityAssessmentSettings](Update-AzSqlDatabaseVulnerabilityAssessmentSettings.md) +### [Update-AzSqlDatabaseVulnerabilityAssessmentSetting](Update-AzSqlDatabaseVulnerabilityAssessmentSetting.md) Updates the vulnerability assessment settings of a database. -### [Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings](Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings.md) +### [Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting](Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting.md) Updates the vulnerability assessment settings of a managed database. -### [Update-AzSqlInstanceVulnerabilityAssessmentSettings](Update-AzSqlInstanceVulnerabilityAssessmentSettings.md) +### [Update-AzSqlInstanceVulnerabilityAssessmentSetting](Update-AzSqlInstanceVulnerabilityAssessmentSetting.md) Updates the vulnerability assessment settings of a managed instance. -### [Update-AzSqlServerVulnerabilityAssessmentSettings](Update-AzSqlServerVulnerabilityAssessmentSettings.md) +### [Update-AzSqlServerVulnerabilityAssessmentSetting](Update-AzSqlServerVulnerabilityAssessmentSetting.md) Updates the vulnerability assessment settings of a server. ### [Update-AzSqlSyncGroup](Update-AzSqlSyncGroup.md) diff --git a/src/Sql/Sql/help/Clear-AzSqlDatabaseVulnerabilityAssessmentSettings.md b/src/Sql/Sql/help/Clear-AzSqlDatabaseVulnerabilityAssessmentSetting.md similarity index 88% rename from src/Sql/Sql/help/Clear-AzSqlDatabaseVulnerabilityAssessmentSettings.md rename to src/Sql/Sql/help/Clear-AzSqlDatabaseVulnerabilityAssessmentSetting.md index e3fb9c2d5707..24c3144b1d24 100644 --- a/src/Sql/Sql/help/Clear-AzSqlDatabaseVulnerabilityAssessmentSettings.md +++ b/src/Sql/Sql/help/Clear-AzSqlDatabaseVulnerabilityAssessmentSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/clear-azsqldatabasevulnerabilityassessmentsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/clear-azsqldatabasevulnerabilityassessmentsetting schema: 2.0.0 --- -# Clear-AzSqlDatabaseVulnerabilityAssessmentSettings +# Clear-AzSqlDatabaseVulnerabilityAssessmentSetting ## SYNOPSIS Clears the vulnerability assessment settings of a database. @@ -13,20 +13,20 @@ Clears the vulnerability assessment settings of a database. ## SYNTAX ``` -Clear-AzSqlDatabaseVulnerabilityAssessmentSettings [-ServerName] [-DatabaseName] +Clear-AzSqlDatabaseVulnerabilityAssessmentSetting [-ServerName] [-DatabaseName] [-InputObject ] [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Clear-AzSqlDatabaseVulnerabilityAssessmentSettings** cmdlet removes the vulnerability assessment settings of an Azure SQL Database. +The **Clear-AzSqlDatabaseVulnerabilityAssessmentSetting** cmdlet removes the vulnerability assessment settings of an Azure SQL Database. Note that you need to run *Enable-AzSqlServerAdvancedThreatProtection* cmdlet as a prerequisite for using this cmdlet. ## EXAMPLES ### Example 1 - Clear the vulnerability assessment settings of an Azure SQL database ```powershell -PS C:\> Clear-AzSqlDatabaseVulnerabilityAssessmentSettings ` +PS C:\> Clear-AzSqlDatabaseVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -ServerName "Server01" ` -DatabaseName "Database01" @@ -38,7 +38,7 @@ PS C:\> Get-AzSqlDatabase ` -ResourceGroupName "ResourceGroup01" ` -ServerName "Server01" ` -DatabaseName "Database01" ` - | Clear-AzSqlDatabaseVulnerabilityAssessmentSettings + | Clear-AzSqlDatabaseVulnerabilityAssessmentSetting ``` ## PARAMETERS diff --git a/src/Sql/Sql/help/Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings.md b/src/Sql/Sql/help/Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting.md similarity index 90% rename from src/Sql/Sql/help/Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings.md rename to src/Sql/Sql/help/Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting.md index 4aaeff87d62f..4e99b5fbeb3a 100644 --- a/src/Sql/Sql/help/Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings.md +++ b/src/Sql/Sql/help/Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/clear-azsqlinstancedatabasevulnerabilityassessmentsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/clear-azsqlinstancedatabasevulnerabilityassessmentsetting schema: 2.0.0 --- -# Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings +# Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting ## SYNOPSIS Clears the vulnerability assessment settings of a managed database. @@ -14,27 +14,27 @@ Clears the vulnerability assessment settings of a managed database. ### GetByNameParameterSet (Default) ``` -Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings [-InstanceName] [-DatabaseName] +Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting [-InstanceName] [-DatabaseName] [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ClearByParentResourceParameterSet ``` -Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings -InputObject +Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting -InputObject [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings** cmdlet removes the vulnerability assessment settings of an Azure SQL Managed Database. +The **Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting** cmdlet removes the vulnerability assessment settings of an Azure SQL Managed Database. Note that you need to run *Enable-AzSqlInstanceAdvancedDataSecurity* cmdlet as a prerequisite for using this cmdlet. ## EXAMPLES ### Example 1 - Clear the vulnerability assessment settings of an Azure SQL managed database ```powershell -PS C:\> Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings ` +PS C:\> Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -InstanceName "ManagedInstance01" ` -DatabaseName "Database01" ` @@ -46,7 +46,7 @@ PS C:\> Get-AzSqlInstanceDatabase ` -ResourceGroupName "ResourceGroup01" ` -InstanceName "ManagedInstance01" ` -Name "Database01" ` - | Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings + | Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting ``` ## PARAMETERS diff --git a/src/Sql/Sql/help/Clear-AzSqlInstanceVulnerabilityAssessmentSettings.md b/src/Sql/Sql/help/Clear-AzSqlInstanceVulnerabilityAssessmentSetting.md similarity index 85% rename from src/Sql/Sql/help/Clear-AzSqlInstanceVulnerabilityAssessmentSettings.md rename to src/Sql/Sql/help/Clear-AzSqlInstanceVulnerabilityAssessmentSetting.md index 0391e12f9c11..a53deed6c5f6 100644 --- a/src/Sql/Sql/help/Clear-AzSqlInstanceVulnerabilityAssessmentSettings.md +++ b/src/Sql/Sql/help/Clear-AzSqlInstanceVulnerabilityAssessmentSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/clear-azsqlinstancevulnerabilityassessmentsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/clear-azsqlinstancevulnerabilityassessmentsetting schema: 2.0.0 --- -# Clear-AzSqlInstanceVulnerabilityAssessmentSettings +# Clear-AzSqlInstanceVulnerabilityAssessmentSetting ## SYNOPSIS Clears the vulnerability assessment settings of a managed instance. @@ -14,25 +14,25 @@ Clears the vulnerability assessment settings of a managed instance. ### ClearByNameParameterSet (Default) ``` -Clear-AzSqlInstanceVulnerabilityAssessmentSettings [-ResourceGroupName] [-InstanceName] +Clear-AzSqlInstanceVulnerabilityAssessmentSetting [-ResourceGroupName] [-InstanceName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ClearByParentResourceParameterSet ``` -Clear-AzSqlInstanceVulnerabilityAssessmentSettings [-InputObject] +Clear-AzSqlInstanceVulnerabilityAssessmentSetting [-InputObject] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Clear-AzSqlInstanceVulnerabilityAssessmentSettings** cmdlet removes the vulnerability assessment settings of an Azure SQL Managed Instance. +The **Clear-AzSqlInstanceVulnerabilityAssessmentSetting** cmdlet removes the vulnerability assessment settings of an Azure SQL Managed Instance. Note that you need to run *Enable-AzSqlInstanceAdvancedDataSecurity* cmdlet as a prerequisite for using this cmdlet. ## EXAMPLES ### Example 1 - Clear the vulnerability assessment settings of an Azure SQL managed instance ```powershell -PS C:\> Clear-AzSqlInstanceVulnerabilityAssessmentSettings ` +PS C:\> Clear-AzSqlInstanceVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -InstanceName "ManagedInstance01" ` ``` @@ -42,7 +42,7 @@ PS C:\> Clear-AzSqlInstanceVulnerabilityAssessmentSettings ` PS C:\> Get-AzSqlInstance ` -ResourceGroupName "ResourceGroup01" ` -Name "ManagedInstance01" ` - | Clear-AzSqlInstanceVulnerabilityAssessmentSettings + | Clear-AzSqlInstanceVulnerabilityAssessmentSetting ``` ## PARAMETERS diff --git a/src/Sql/Sql/help/Clear-AzSqlServerVulnerabilityAssessmentSettings.md b/src/Sql/Sql/help/Clear-AzSqlServerVulnerabilityAssessmentSetting.md similarity index 86% rename from src/Sql/Sql/help/Clear-AzSqlServerVulnerabilityAssessmentSettings.md rename to src/Sql/Sql/help/Clear-AzSqlServerVulnerabilityAssessmentSetting.md index 96f927ea94f9..3e81377ef6f6 100644 --- a/src/Sql/Sql/help/Clear-AzSqlServerVulnerabilityAssessmentSettings.md +++ b/src/Sql/Sql/help/Clear-AzSqlServerVulnerabilityAssessmentSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/clear-azsqlservervulnerabilityassessmentsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/clear-azsqlservervulnerabilityassessmentsetting schema: 2.0.0 --- -# Clear-AzSqlServerVulnerabilityAssessmentSettings +# Clear-AzSqlServerVulnerabilityAssessmentSetting ## SYNOPSIS Clears the vulnerability assessment settings of a server. @@ -14,25 +14,25 @@ Clears the vulnerability assessment settings of a server. ### ClearByNameParameterSet (Default) ``` -Clear-AzSqlServerVulnerabilityAssessmentSettings [-ResourceGroupName] [-ServerName] +Clear-AzSqlServerVulnerabilityAssessmentSetting [-ResourceGroupName] [-ServerName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ClearByParentResourceParameterSet ``` -Clear-AzSqlServerVulnerabilityAssessmentSettings [-InputObject] +Clear-AzSqlServerVulnerabilityAssessmentSetting [-InputObject] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Clear-AzSqlServerVulnerabilityAssessmentSettings** cmdlet removes the vulnerability assessment settings of an Azure SQL Server. +The **Clear-AzSqlServerVulnerabilityAssessmentSetting** cmdlet removes the vulnerability assessment settings of an Azure SQL Server. Note that you need to run *Enable-AzSqlServerAdvancedThreatProtection* cmdlet as a prerequisite for using this cmdlet. ## EXAMPLES ### Example 1 - Clear the vulnerability assessment settings of an Azure SQL server ```powershell -PS C:\> Clear-AzSqlServerVulnerabilityAssessmentSettings ` +PS C:\> Clear-AzSqlServerVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -ServerName "Server01" ``` @@ -42,7 +42,7 @@ PS C:\> Clear-AzSqlServerVulnerabilityAssessmentSettings ` PS C:\> Get-AzSqlServer ` -ResourceGroupName "ResourceGroup01" ` -ServerName "Server01" ` - | Clear-AzSqlServerVulnerabilityAssessmentSettings + | Clear-AzSqlServerVulnerabilityAssessmentSetting ``` ## PARAMETERS diff --git a/src/Sql/Sql/help/Get-AzSqlDatabase.md b/src/Sql/Sql/help/Get-AzSqlDatabase.md index 8b14ce194b0b..1ae786387ad5 100644 --- a/src/Sql/Sql/help/Get-AzSqlDatabase.md +++ b/src/Sql/Sql/help/Get-AzSqlDatabase.md @@ -93,6 +93,50 @@ Tags : This command gets a database named Database02 from a server named Server01. +### Example 3: Get all databases on a server using filtering +``` +PS C:\> Get-AzSqlDatabase -ResourceGroupName "resourcegroup01" -ServerName "server01" -DatabaseName "database*" +ResourceGroupName : resourcegroup01 +ServerName : server01 +DatabaseName : database01 +Location : Central US +DatabaseId : a2a7f2db-7526-4d86-a7b2-36276ee10dc6 +Edition : None +CollationName : SQL_Latin1_General_CP1_CI_AS +CatalogCollation : +MaxSizeBytes : 5368709120 +Status : Online +CreationDate : 7/3/2015 7:32:44 AM +CurrentServiceObjectiveId : c99ac918-dbea-463f-a475-16ec020fdc12 +CurrentServiceObjectiveName : System1 +RequestedServiceObjectiveId : c99ac918-dbea-463f-a475-16ec020fdc12 +RequestedServiceObjectiveName : +ElasticPoolName : +EarliestRestoreDate : +Tags : + +ResourceGroupName : resourcegroup01 +ServerName : server01 +DatabaseName : database02 +Location : Central US +DatabaseId : a1e6bd1a-735a-4d48-8b98-afead5ef1218 +Edition : Standard +CollationName : SQL_Latin1_General_CP1_CI_AS +CatalogCollation : +MaxSizeBytes : 268435456000 +Status : Online +CreationDate : 7/3/2015 7:33:37 AM +CurrentServiceObjectiveId : f1173c43-91bd-4aaa-973c-54e79e15235b +CurrentServiceObjectiveName : S0 +RequestedServiceObjectiveId : f1173c43-91bd-4aaa-973c-54e79e15235b +RequestedServiceObjectiveName : +ElasticPoolName : +EarliestRestoreDate : +Tags : +``` + +This command gets all databases on the server named server01 that start with "database". + ## PARAMETERS ### -DatabaseName diff --git a/src/Sql/Sql/help/Get-AzSqlDatabaseAdvisor.md b/src/Sql/Sql/help/Get-AzSqlDatabaseAdvisor.md index 63c8778d5a0e..7f7facd56d19 100644 --- a/src/Sql/Sql/help/Get-AzSqlDatabaseAdvisor.md +++ b/src/Sql/Sql/help/Get-AzSqlDatabaseAdvisor.md @@ -169,6 +169,34 @@ RecommendedActions : {IR_[test_schema]_[test_table_0.0361551]_6C7AE8 This command gets the Advisor named CreateIndex from the database named WIRunner with its recommended actions included in the response. Since the command uses the *ExpandRecommendedActions* parameter, the cmdlet gets the recommended actions with the response. +### Example 5: List all the advisors for the specified database using filtering +``` +PS C:\>Get-AzSqlDatabaseAdvisor -ResourceGroupName "WIRunnersProd" -ServerName "wi-runner-australia-east" -DatabaseName "WIRunner" -AdvisorName d* +DatabaseName : WIRunner +ResourceGroupName : WIRunnersProd +ServerName : wi-runner-australia-east +AdvisorName : DropIndex +AdvisorStatus : PublicPreview +AutoExecuteStatus : Disabled +AutoExecuteStatusInheritedFrom : Database +LastChecked : 7/31/2016 8:41:19 PM +RecommendationsStatus : Ok +RecommendedActions : {} + +DatabaseName : WIRunner +ResourceGroupName : WIRunnersProd +ServerName : wi-runner-australia-east +AdvisorName : DbParameterization +AdvisorStatus : PublicPreview +AutoExecuteStatus : Disabled +AutoExecuteStatusInheritedFrom : Default +LastChecked : 7/31/2016 2:46:58 PM +RecommendationsStatus : NoDbParameterizationIssue +RecommendedActions : {} +``` + +This command gets lists all the advisors for the database named WIRunner that belongs to the server named wi-runner-australia-east and start with the letter "d". + ## PARAMETERS ### -AdvisorName diff --git a/src/Sql/Sql/help/Get-AzSqlDatabaseExpanded.md b/src/Sql/Sql/help/Get-AzSqlDatabaseExpanded.md index 148ce732b728..36f0d4fc7ad7 100644 --- a/src/Sql/Sql/help/Get-AzSqlDatabaseExpanded.md +++ b/src/Sql/Sql/help/Get-AzSqlDatabaseExpanded.md @@ -26,11 +26,18 @@ This cmdlet is also supported by the SQL Server Stretch Database service on Azur ### Example 1: Get database object that has service tier advisor information ``` -PS C:\>Get-AzSqlDatabaseExpanded -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" +PS C:\> Get-AzSqlDatabaseExpanded -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" ``` This command returns the database that has expanded properties that contain the service tier advisor information. +### Example 2: List database objects using filtering +``` +PS C:\> Get-AzSqlDatabaseExpanded -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database*" +``` + +This command returns expanded database object for all databases in Server01 that start with "Database". + ## PARAMETERS ### -DatabaseName diff --git a/src/Sql/Sql/help/Get-AzSqlDatabaseFailoverGroup.md b/src/Sql/Sql/help/Get-AzSqlDatabaseFailoverGroup.md index ea7a1526f452..1406b5dfae00 100644 --- a/src/Sql/Sql/help/Get-AzSqlDatabaseFailoverGroup.md +++ b/src/Sql/Sql/help/Get-AzSqlDatabaseFailoverGroup.md @@ -37,6 +37,13 @@ PS C:\> $failoverGroup = Get-AzSqlDatabaseFailoverGroup -ResourceGroupName rg -S Get a specific Failover Group. +### Example 3 +``` +PS C:\> $failoverGroup = Get-AzSqlDatabaseFailoverGroup -ResourceGroupName rg -ServerName server -FailoverGroupName fg* +``` + +Get all failover groups in a server that start with "fg". + ## PARAMETERS ### -DefaultProfile diff --git a/src/Sql/Sql/help/Get-AzSqlDatabaseGeoBackup.md b/src/Sql/Sql/help/Get-AzSqlDatabaseGeoBackup.md index 2f19f6fc426a..9a2ec6c40df7 100644 --- a/src/Sql/Sql/help/Get-AzSqlDatabaseGeoBackup.md +++ b/src/Sql/Sql/help/Get-AzSqlDatabaseGeoBackup.md @@ -40,6 +40,13 @@ PS C:\>Get-AzSqlDatabaseGeoBackup -ResourceGroupName "ContosoResourceGroup" -Ser This command gets the database geo-redundant backup named ContosoDatabase. +### Example 3: Get all geo-redundant backups on a server using filtering +``` +PS C:\>Get-AzSqlDatabaseGeoBackup -ResourceGroupName "ContosoResourceGroup" -ServerName "ContosoServer" -DatabaseName "Contoso*" +``` + +This command gets all available geo-redundant backups on a specified server that start with "Contoso". + ## PARAMETERS ### -DatabaseName diff --git a/src/Sql/Sql/help/Get-AzSqlDatabaseIndexRecommendations.md b/src/Sql/Sql/help/Get-AzSqlDatabaseIndexRecommendation.md similarity index 84% rename from src/Sql/Sql/help/Get-AzSqlDatabaseIndexRecommendations.md rename to src/Sql/Sql/help/Get-AzSqlDatabaseIndexRecommendation.md index b4fb8b8b61e2..33602be1ce9a 100644 --- a/src/Sql/Sql/help/Get-AzSqlDatabaseIndexRecommendations.md +++ b/src/Sql/Sql/help/Get-AzSqlDatabaseIndexRecommendation.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql ms.assetid: 10656EA5-EA5F-4394-951F-BC64BE3BF6F9 -online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqldatabaseindexrecommendations +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqldatabaseindexrecommendation schema: 2.0.0 --- -# Get-AzSqlDatabaseIndexRecommendations +# Get-AzSqlDatabaseIndexRecommendation ## SYNOPSIS Gets the recommended index operations for a server or database. @@ -14,33 +14,33 @@ Gets the recommended index operations for a server or database. ## SYNTAX ``` -Get-AzSqlDatabaseIndexRecommendations -ServerName [-DatabaseName ] [-TableName ] +Get-AzSqlDatabaseIndexRecommendation -ServerName [-DatabaseName ] [-TableName ] [-IndexRecommendationName ] [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Get-AzSqlDatabaseIndexRecommendations** cmdlet gets the recommended index operations for an Azure SQL Database server or database. +The **Get-AzSqlDatabaseIndexRecommendation** cmdlet gets the recommended index operations for an Azure SQL Database server or database. ## EXAMPLES ### Example 1: Get index recommendations for all databases on server ``` -PS C:\>Get-AzSqlDatabaseIndexRecommendations -ResourceGroupName "ResourceGroup01" -ServerName "Server01" +PS C:\>Get-AzSqlDatabaseIndexRecommendation -ResourceGroupName "ResourceGroup01" -ServerName "Server01" ``` This command returns index recommendations for all databases on server server01. ### Example 2: Get index recommendations for a specific database ``` -PS C:\>Get-AzSqlDatabaseIndexRecommendations -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" +PS C:\>Get-AzSqlDatabaseIndexRecommendation -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" ``` This command returns index recommendations for specific database. ### Example 3: Get a single index recommendation by name ``` -PS C:\>Get-AzSqlDatabaseIndexRecommendations -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" -IndexRecommendationName "INDEX_NAME" +PS C:\>Get-AzSqlDatabaseIndexRecommendation -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" -IndexRecommendationName "INDEX_NAME" ``` This command returns single index recommendation by name. diff --git a/src/Sql/Sql/help/Get-AzSqlDatabaseLongTermRetentionBackup.md b/src/Sql/Sql/help/Get-AzSqlDatabaseLongTermRetentionBackup.md index 28291a87e427..fabed1f450ee 100644 --- a/src/Sql/Sql/help/Get-AzSqlDatabaseLongTermRetentionBackup.md +++ b/src/Sql/Sql/help/Get-AzSqlDatabaseLongTermRetentionBackup.md @@ -124,6 +124,33 @@ ServerCreateTime : 2/29/2018 12:12:19 AM This command gets all long term retention backups for database01 +### Example 4: Get long term retention backups using filtering +```powershell +PS C:\> Get-AzSqlDatabaseLongTermRetentionBackup -Location northeurope -ServerName server01 -DatabaseName database01 -BackupName "601061b7*" + +BackupExpirationTime : 3/22/2018 11:43:18 PM +BackupName : 601061b7-164c-4a4a-88e5-7158d092d503;131656309980000000 +BackupTime : 3/15/2018 11:43:18 PM +DatabaseName : database02 +DatabaseDeletionTime : 3/18/2018 4:36:00 PM +Location : northeurope +ResourceId : /subscriptions/371edd6d-9630-4558-a7bd-ee139498e6a1/providers/Microsoft.Sql/locations/northeurope/longTermRetentionServers/server02/longTermRetentionDatabases/database02/longTermRetentionBackups/601061b7-164c-4a4a-88e5-7158d092d503;131656309980000000 +ServerName : server02 +ServerCreateTime : 2/28/2018 12:12:19 AM + +BackupExpirationTime : 3/22/2018 5:50:55 AM +BackupName : 601061b7-d10b-46e0-bf77-a2bfb16a6add;131655666550000000 +BackupTime : 3/15/2018 5:50:55 AM +DatabaseName : database01 +DatabaseDeletionTime : +Location : northeurope +ResourceId : /subscriptions/371edd6d-9630-4558-a7bd-ee139498e6a1/providers/Microsoft.Sql/locations/northeurope/longTermRetentionServers/server01/longTermRetentionDatabases/database01/longTermRetentionBackups/601061b7-d10b-46e0-bf77-a2bfb16a6add;131655666550000000 +ServerName : server01 +ServerCreateTime : 2/29/2018 12:12:19 AM +``` + +This command gets all backups with name that starts with "601061b7" + ## PARAMETERS ### -BackupName diff --git a/src/Sql/Sql/help/Get-AzSqlDatabaseReplicationLink.md b/src/Sql/Sql/help/Get-AzSqlDatabaseReplicationLink.md index 09895059b7b0..1d35e98500f7 100644 --- a/src/Sql/Sql/help/Get-AzSqlDatabaseReplicationLink.md +++ b/src/Sql/Sql/help/Get-AzSqlDatabaseReplicationLink.md @@ -13,14 +13,6 @@ Gets the geo-replication links between an Azure SQL Database and a resource grou ## SYNTAX -### ByDatabaseName (Default) -``` -Get-AzSqlDatabaseReplicationLink [-DatabaseName] -PartnerResourceGroupName - [-ServerName] [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] -``` - -### ByPartnerServerName ``` Get-AzSqlDatabaseReplicationLink [-DatabaseName] -PartnerResourceGroupName [-PartnerServerName ] [-ServerName] [-ResourceGroupName] @@ -85,7 +77,7 @@ Specifies the name of the Azure SQL Server for the partner. ```yaml Type: System.String -Parameter Sets: ByPartnerServerName +Parameter Sets: (All) Aliases: Required: False diff --git a/src/Sql/Sql/help/Get-AzSqlDatabaseRestorePoints.md b/src/Sql/Sql/help/Get-AzSqlDatabaseRestorePoint.md similarity index 88% rename from src/Sql/Sql/help/Get-AzSqlDatabaseRestorePoints.md rename to src/Sql/Sql/help/Get-AzSqlDatabaseRestorePoint.md index 0640114a936f..b2602da2903a 100644 --- a/src/Sql/Sql/help/Get-AzSqlDatabaseRestorePoints.md +++ b/src/Sql/Sql/help/Get-AzSqlDatabaseRestorePoint.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql ms.assetid: 67A9BB67-CF17-4CAA-99D9-002D0D23178B -online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqldatabaserestorepoints +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqldatabaserestorepoint schema: 2.0.0 --- -# Get-AzSqlDatabaseRestorePoints +# Get-AzSqlDatabaseRestorePoint ## SYNOPSIS Retrieves the distinct restore points from which a SQL Data Warehouse can be restored. @@ -14,12 +14,12 @@ Retrieves the distinct restore points from which a SQL Data Warehouse can be res ## SYNTAX ``` -Get-AzSqlDatabaseRestorePoints [-ServerName] [-DatabaseName] [-ResourceGroupName] +Get-AzSqlDatabaseRestorePoint [-ServerName] [-DatabaseName] [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Get-AzSqlDatabaseRestorePoints** cmdlet retrieves the distinct restore points that an Azure SQL Data Warehouse can be restored from. +The **Get-AzSqlDatabaseRestorePoint** cmdlet retrieves the distinct restore points that an Azure SQL Data Warehouse can be restored from. For an Azure SQL Database, the restore window is continuous. This means that any point in time in the backup retention period of the database can be used as a restore point. This cmdlet is also supported by the SQL Server Stretch Database service on Azure. @@ -28,7 +28,7 @@ This cmdlet is also supported by the SQL Server Stretch Database service on Azur ### Example 1: Get all restore points ``` -PS C:\>Get-AzSqlDatabaseRestorePoints -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" +PS C:\>Get-AzSqlDatabaseRestorePoint -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" ResourceGroupName : resourcegroup01 ServerName : server01 DatabaseName : database01 diff --git a/src/Sql/Sql/help/Get-AzSqlDatabaseUpgradeHint.md b/src/Sql/Sql/help/Get-AzSqlDatabaseUpgradeHint.md index d04d42b0057f..1f5566d4135a 100644 --- a/src/Sql/Sql/help/Get-AzSqlDatabaseUpgradeHint.md +++ b/src/Sql/Sql/help/Get-AzSqlDatabaseUpgradeHint.md @@ -28,25 +28,32 @@ This cmdlet is also supported by the SQL Server Stretch Database service on Azur ### Example 1: Get recommendations for all databases on a server ``` -PS C:\>Get-AzSqlDatabaseUpgradeHint -ResourceGroupName "ResourceGroup01" -ServerName "Server01" +PS C:\> Get-AzSqlDatabaseUpgradeHint -ResourceGroupName "ResourceGroup01" -ServerName "Server01" ``` This command returns upgrade hints for all databases on the server named Server01. ### Example 2: Get recommendations for specific database ``` -PS C:\>Get-AzSqlDatabaseUpgradeHint -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" +PS C:\> Get-AzSqlDatabaseUpgradeHint -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" ``` This command returns upgrade hints for a specific database. ### Example 3: Get recommendation for all databases that are not in an elastic database pool ``` -PS C:\>Get-AzSqlDatabaseUpgradeHint -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -ExcludeElasticPoolCandidates $True +PS C:\> Get-AzSqlDatabaseUpgradeHint -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -ExcludeElasticPoolCandidates $True ``` This command returns upgrade hints for all databases that are not in an elastic database pool. +### Example 4: Get recommendations for all databases on a server using filtering +``` +PS C:\> Get-AzSqlDatabaseUpgradeHint -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database*" +``` + +This command returns upgrade hints for all databases on the server named Server01 that start with "Database". + ## PARAMETERS ### -DatabaseName diff --git a/src/Sql/Sql/help/Get-AzSqlDatabaseVulnerabilityAssessmentSettings.md b/src/Sql/Sql/help/Get-AzSqlDatabaseVulnerabilityAssessmentSetting.md similarity index 88% rename from src/Sql/Sql/help/Get-AzSqlDatabaseVulnerabilityAssessmentSettings.md rename to src/Sql/Sql/help/Get-AzSqlDatabaseVulnerabilityAssessmentSetting.md index 81c991ccde0c..24b959ddf05d 100644 --- a/src/Sql/Sql/help/Get-AzSqlDatabaseVulnerabilityAssessmentSettings.md +++ b/src/Sql/Sql/help/Get-AzSqlDatabaseVulnerabilityAssessmentSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqldatabasevulnerabilityassessmentsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqldatabasevulnerabilityassessmentsetting schema: 2.0.0 --- -# Get-AzSqlDatabaseVulnerabilityAssessmentSettings +# Get-AzSqlDatabaseVulnerabilityAssessmentSetting ## SYNOPSIS Gets the vulnerability assessment settings of a database. @@ -13,20 +13,20 @@ Gets the vulnerability assessment settings of a database. ## SYNTAX ``` -Get-AzSqlDatabaseVulnerabilityAssessmentSettings [-ServerName] [-DatabaseName] +Get-AzSqlDatabaseVulnerabilityAssessmentSetting [-ServerName] [-DatabaseName] [-InputObject ] [-ResourceGroupName] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzSqlDatabaseVulnerabilityAssessmentSettings** cmdlet gets the vulnerability assessment settings of an Azure SQL Database. +The **Get-AzSqlDatabaseVulnerabilityAssessmentSetting** cmdlet gets the vulnerability assessment settings of an Azure SQL Database. Note that you need to run *Enable-AzSqlServerAdvancedThreatProtection* cmdlet as a prerequisite for using this cmdlet. ## EXAMPLES ### Example 1 - Get the vulnerability assessment settings of an Azure SQL database ```powershell -PS C:\> Get-AzSqlDatabaseVulnerabilityAssessmentSettings ` +PS C:\> Get-AzSqlDatabaseVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -ServerName "Server01" ` -DatabaseName "Database01" @@ -47,7 +47,7 @@ PS C:\> Get-AzSqlDatabase ` -ResourceGroupName "ResourceGroup01" ` -ServerName "Server01" ` -DatabaseName "Database01" ` - | Get-AzSqlDatabaseVulnerabilityAssessmentSettings + | Get-AzSqlDatabaseVulnerabilityAssessmentSetting ResourceGroupName : ResourceGroup01 ServerName : Server01 diff --git a/src/Sql/Sql/help/Get-AzSqlElasticPool.md b/src/Sql/Sql/help/Get-AzSqlElasticPool.md index 84838b30c4ef..5e8ee1d70ffc 100644 --- a/src/Sql/Sql/help/Get-AzSqlElasticPool.md +++ b/src/Sql/Sql/help/Get-AzSqlElasticPool.md @@ -139,6 +139,40 @@ Unit : Percent This command returns metrics for an Azure SQL elastic database pool named ElasticPool01. +### Example 4: Get all elastic pools using filtering -ElasticPoolName "ElasticPool*" +``` +PS C:\>Get-AzSqlElasticPool -ResourceGroupName "ResourceGroup01" -ServerName "Server01" +ResourceId : /subscriptions/00000000-0000-0000-0000-000000000001/resourceGroups/resourcegroup01/providers/Microsoft.Sql/servers/server01/elasticPools/elasticpool01 +ResourceGroupName : resourcegroup01 +ServerName : server01 +ElasticPoolName : elasticpool01 +Location : Central US +CreationDate : 8/26/2015 10:00:17 PM +State : Ready +Edition : Standard +Dtu : 400 +DatabaseDtuMax : 100 +DatabaseDtuMin : 10 +StorageMB : 409600 +Tags : + +ResourceId : /subscriptions/00000000-0000-0000-0000-000000000001/resourceGroups/resourcegroup01/providers/Microsoft.Sql/servers/server01/elasticPools/elasticpool02 +ResourceGroupName : resourcegroup01 +ServerName : server01 +ElasticPoolName : elasticpool02 +Location : Central US +CreationDate : 8/26/2015 11:00:17 PM +State : Ready +Edition : Standard +Dtu : 400 +DatabaseDtuMax : 100 +DatabaseDtuMin : 10 +StorageMB : 409600 +Tags : +``` + +This command gets all of the elastic pools on the server named Server01 that start with "ElasticPool". + ## PARAMETERS ### -DefaultProfile diff --git a/src/Sql/Sql/help/Get-AzSqlElasticPoolAdvisor.md b/src/Sql/Sql/help/Get-AzSqlElasticPoolAdvisor.md index 649038667d91..294c62f0e809 100644 --- a/src/Sql/Sql/help/Get-AzSqlElasticPoolAdvisor.md +++ b/src/Sql/Sql/help/Get-AzSqlElasticPoolAdvisor.md @@ -26,7 +26,7 @@ The **Get-AzSqlElasticPoolAdvisor** cmdlet gets one or more Azure SQL Elastic Po ### Example 1: List all the advisors for the specified elastic pool ``` -PS C:\>Get-AzSqlElasticPoolAdvisor -ResourceGroupName "WIRunnersProd" -ServerName "wi-runner-australia-east" -PoolName "WIRunnerPool" +PS C:\>Get-AzSqlElasticPoolAdvisor -ResourceGroupName "WIRunnersProd" -ServerName "wi-runner-australia-east" -ElasticPoolName "WIRunnerPool" ElasticPoolName : WIRunnerPool ResourceGroupName : WIRunnersProd ServerName : wi-runner-australia-east @@ -167,6 +167,34 @@ RecommendedActions : {IR_[test_schema]_[test_table_0.0361551]_6C7AE8 This command gets advisor named CreateIndex from the server named wi-runner-australia-east with its recommended actions included in the response. +### Example 5: List all the advisors for the specified elastic pool using filtering +``` +PS C:\>Get-AzSqlElasticPoolAdvisor -ResourceGroupName "WIRunnersProd" -ServerName "wi-runner-australia-east" -ElasticPoolName "WIRunnerPool" -AdvisorName d* +ElasticPoolName : WIRunnerPool +ResourceGroupName : WIRunnersProd +ServerName : wi-runner-australia-east +AdvisorName : DropIndex +AdvisorStatus : PublicPreview +AutoExecuteStatus : Disabled +AutoExecuteStatusInheritedFrom : Database +LastChecked : 7/31/2016 8:41:19 PM +RecommendationsStatus : Ok +RecommendedActions : {} + +ElasticPoolName : WIRunnerPool +ResourceGroupName : WIRunnersProd +ServerName : wi-runner-australia-east +AdvisorName : DbParameterization +AdvisorStatus : PublicPreview +AutoExecuteStatus : Disabled +AutoExecuteStatusInheritedFrom : Default +LastChecked : 7/31/2016 2:46:58 PM +RecommendationsStatus : NoDbParameterizationIssue +RecommendedActions : {} +``` + +The command gets lists all the advisors for the elastic pool named WIRunnerPool that start with the letter "d". + ## PARAMETERS ### -AdvisorName diff --git a/src/Sql/Sql/help/Get-AzSqlElasticPoolDatabase.md b/src/Sql/Sql/help/Get-AzSqlElasticPoolDatabase.md index c951d33f235f..6dff4739b3e3 100644 --- a/src/Sql/Sql/help/Get-AzSqlElasticPoolDatabase.md +++ b/src/Sql/Sql/help/Get-AzSqlElasticPoolDatabase.md @@ -27,11 +27,18 @@ You can specify the name of an elastic database in Azure SQL Database to see the ### Example 1: Get all databases in an elastic pool ``` -PS C:\>Get-AzSqlElasticPoolDatabase -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -ElasticPoolName "ElasticPool01" +PS C:\> Get-AzSqlElasticPoolDatabase -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -ElasticPoolName "ElasticPool01" ``` This command gets all databases in an elastic pool named ElasticPool01. +### Example 2: Get all databases in an elastic pool using filtering +``` +PS C:\> Get-AzSqlElasticPoolDatabase -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -ElasticPoolName "ElasticPool01" -DatabaseName "Database*" +``` + +This command gets all databases in an elastic pool named ElasticPool01 that start with "Database". + ## PARAMETERS ### -DatabaseName diff --git a/src/Sql/Sql/help/Get-AzSqlInstance.md b/src/Sql/Sql/help/Get-AzSqlInstance.md index 755c5370a27a..ea054b7c6aa9 100644 --- a/src/Sql/Sql/help/Get-AzSqlInstance.md +++ b/src/Sql/Sql/help/Get-AzSqlInstance.md @@ -12,15 +12,8 @@ Returns information about Azure SQL Managed Database Instance. ## SYNTAX -### GetInstanceByResourceGroup (Default) ``` -Get-AzSqlInstance [[-ResourceGroupName] ] [-DefaultProfile ] - [] -``` - -### GetInstanceByNameAndResourceGroup -``` -Get-AzSqlInstance [-Name] [-ResourceGroupName] [-DefaultProfile ] +Get-AzSqlInstance [[-Name] ] [[-ResourceGroupName] ] [-DefaultProfile ] [] ``` @@ -32,7 +25,7 @@ Specify the name of a instance to see information for only that instance. ### Example 1: Get all instances assigned to a resource group ``` -PS C:\>Get-AzSqlInstance -ResourceGroupName "ResourceGroup01" +PS C:\> Get-AzSqlInstance -ResourceGroupName "ResourceGroup01" Location : westcentralus Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourcegroup01/providers/Microsoft.Sql/managedInstances/managedInstance1 ResourceGroupName : resourcegroup01 @@ -68,7 +61,7 @@ This command gets information about all instances assigned to the resource group ### Example 2: Get information about an instance ``` -PS C:\>Get-AzSqlInstance -Name "managedInstance1" -ResourceGroupName "ResourceGroup01" +PS C:\> Get-AzSqlInstance -Name "managedInstance1" -ResourceGroupName "ResourceGroup01" Location : westcentralus Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourcegroup01/providers/Microsoft.Sql/managedInstances/managedInstance1 ResourceGroupName : resourcegroup01 @@ -87,6 +80,42 @@ StorageSizeInGB : 512 This command gets information about the instance named managedInstance1. +### Example 3: Get all instances assigned to a resource group using filtering +``` +PS C:\> Get-AzSqlInstance -ResourceGroupName "ResourceGroup01" -Name "managedInstance*" +Location : westcentralus +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourcegroup01/providers/Microsoft.Sql/managedInstances/managedInstance1 +ResourceGroupName : resourcegroup01 +ManagedInstanceName : managedInstance1 +Tags : +Identity : Microsoft.Azure.Management.Sql.Models.ResourceIdentity +Sku : Microsoft.Azure.Management.Internal.Resources.Models.Sku +FullyQualifiedDomainName : managedInstance1.wcusxxxxxxxxxxxxx.database.windows.net +AdministratorLogin : adminLogin1 +AdministratorPassword : +SubnetId : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourcegroup01/providers/Microsoft.Network/virtualNetworks/vnet_name/subnets/subnet_name +LicenseType : BasePrice +VCores : 8 +StorageSizeInGB : 512 + +Location : westcentralus +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourcegroup01/providers/Microsoft.Sql/managedInstances/managedInstance2 +ResourceGroupName : resourcegroup01 +ManagedInstanceName : managedInstance2 +Tags : +Identity : Microsoft.Azure.Management.Sql.Models.ResourceIdentity +Sku : Microsoft.Azure.Management.Internal.Resources.Models.Sku +FullyQualifiedDomainName : managedInstance2.wcusxxxxxxxxxxxxx.database.windows.net +AdministratorLogin : adminLogin2 +AdministratorPassword : +SubnetId : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourcegroup01/providers/Microsoft.Network/virtualNetworks/vnet_name/subnets/subnet_name +LicenseType : BasePrice +VCores : 8 +StorageSizeInGB : 512 +``` + +This command gets information about all instances assigned to the resource group ResourceGroup01 that start with "managedInstance". + ## PARAMETERS ### -DefaultProfile @@ -109,10 +138,10 @@ SQL instance name. ```yaml Type: System.String -Parameter Sets: GetInstanceByNameAndResourceGroup +Parameter Sets: (All) Aliases: InstanceName -Required: True +Required: False Position: 0 Default value: None Accept pipeline input: False @@ -124,7 +153,7 @@ The name of the resource group. ```yaml Type: System.String -Parameter Sets: GetInstanceByResourceGroup +Parameter Sets: (All) Aliases: Required: False @@ -134,18 +163,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -```yaml -Type: System.String -Parameter Sets: GetInstanceByNameAndResourceGroup -Aliases: - -Required: True -Position: 1 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDatabase.md b/src/Sql/Sql/help/Get-AzSqlInstanceDatabase.md index d159e82ee927..1d1809b5fe6c 100644 --- a/src/Sql/Sql/help/Get-AzSqlInstanceDatabase.md +++ b/src/Sql/Sql/help/Get-AzSqlInstanceDatabase.md @@ -104,6 +104,50 @@ FailoverGroupId : This command gets a database named managedDatabase1 from a instance named managedInstance1. +### Example 3: Get all databases on a instance using filtering +``` +PS C:\> Get-AzSqlInstanceDatabase -InstanceName "managedInstance1" -ResourceGroupName "resourcegroup01" -Name "managedDatabase*" +ResourceGroupName : resourcegroup01 +ManagedInstanceName : managedInstance1 +Location : westcentralus +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourcegroup01/providers/Microsoft.Sql/managedInstances/managedInstance1/databases/managedDatabase1 +Name : managedDatabase1 +Tags : +Collation : SQL_Latin1_General_CP1_CI_AS +Status : Online +CreationDate : 4/27/2018 2:30:07 PM +EarliestRestorePoint : 4/27/2018 2:40:47 PM +RestorePointInTime : +DefaultSecondaryLocation : West US 2 +CatalogCollation : +CreateMode : +StorageContainerUri : +StorageContainerSasToken : +SourceDatabaseId : +FailoverGroupId : + +ResourceGroupName : resourcegroup01 +ManagedInstanceName : managedInstance1 +Location : westcentralus +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourcegroup01/providers/Microsoft.Sql/managedInstances/managedInstance1/databases/managedDatabase2 +Name : managedDatabase2 +Tags : +Collation : SQL_Latin1_General_CP1_CI_AS +Status : Online +CreationDate : 4/23/2018 5:21:07 PM +EarliestRestorePoint : 4/23/2018 5:31:47 PM +RestorePointInTime : +DefaultSecondaryLocation : West US 2 +CatalogCollation : +CreateMode : +StorageContainerUri : +StorageContainerSasToken : +SourceDatabaseId : +FailoverGroupId : +``` + +This command gets all databases on the instance named managedInstance1 that start with "managedDatabase". + ## PARAMETERS ### -DefaultProfile diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseGeoBackup.md b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseGeoBackup.md index ef561e87907b..8cfc62205f16 100644 --- a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseGeoBackup.md +++ b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseGeoBackup.md @@ -55,6 +55,26 @@ RecoverableDatabaseId : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/re This command gets a database redundant backup named managedDatabase1 from an instance named managedInstance1. +### Example 3: Get all database redundant backups on a instance using filtering +``` +PS C:\>Get-AzSqlInstanceDatabaseGeoBackup -InstanceName "managedInstance1" -ResourceGroupName "resourcegroup01" -Name "managedDatabase*" +ResourceGroupName : resourcegroup01 +ManagedInstanceName : managedInstance1 +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourcegroup01/providers/Microsoft.Sql/managedInstances/managedInstance1/recoverableDatabases/managedDatabase1 +Name : managedDatabase1 +LastAvailableBackupDate : 01/31/2019 20:44:57 +RecoverableDatabaseId : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourcegroup01/providers/Microsoft.Sql/managedInstances/managedInstance1/recoverableDatabases/managedDatabase1 + +ResourceGroupName : resourcegroup01 +ManagedInstanceName : managedInstance1 +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourcegroup01/providers/Microsoft.Sql/managedInstances/managedInstance1/recoverableDatabases/managedDatabase2 +Name : managedDatabase2 +LastAvailableBackupDate : 01/31/2019 20:44:57 +RecoverableDatabaseId : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourcegroup01/providers/Microsoft.Sql/managedInstances/managedInstance1/recoverableDatabases/managedDatabase2 +``` + +This command gets all database redundant backups on the instance named managedInstance1 that start with "managedDatabase". + ## PARAMETERS ### -DefaultProfile diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings.md b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting.md similarity index 89% rename from src/Sql/Sql/help/Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings.md rename to src/Sql/Sql/help/Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting.md index 375310e359d0..53c6b92313d2 100644 --- a/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings.md +++ b/src/Sql/Sql/help/Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqlinstancedatabasevulnerabilityassessmentsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqlinstancedatabasevulnerabilityassessmentsetting schema: 2.0.0 --- -# Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings +# Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting ## SYNOPSIS Gets the vulnerability assessment settings of a managed database. @@ -14,25 +14,25 @@ Gets the vulnerability assessment settings of a managed database. ### GetByNameParameterSet (Default) ``` -Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings [-InstanceName] [-DatabaseName] +Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting [-InstanceName] [-DatabaseName] [-ResourceGroupName] [-DefaultProfile ] [] ``` ### GetByParentResourceParameterSet ``` -Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings -InputObject +Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting -InputObject [-ResourceGroupName] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings** cmdlet gets the vulnerability assessment settings of an Azure SQL Managed Database. +The **Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting** cmdlet gets the vulnerability assessment settings of an Azure SQL Managed Database. Note that you need to run *Enable-AzSqlInstanceAdvancedDataSecurity* cmdlet as a prerequisite for using this cmdlet. ## EXAMPLES ### Example 1 - Get the vulnerability assessment settings of an Azure SQL managed database ```powershell -PS C:\> Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings ` +PS C:\> Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -InstanceName "ManagedInstance01" ` -DatabaseName "Database01" ` @@ -53,7 +53,7 @@ PS C:\> Get-AzSqlInstanceDatabase ` -ResourceGroupName "ResourceGroup01" ` -InstanceName "ManagedInstance01" ` -Name "Database01" ` - | Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings + | Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting ResourceGroupName : ResourceGroup01 InstanceName : ManagedInstance01 diff --git a/src/Sql/Sql/help/Get-AzSqlInstanceVulnerabilityAssessmentSettings.md b/src/Sql/Sql/help/Get-AzSqlInstanceVulnerabilityAssessmentSetting.md similarity index 86% rename from src/Sql/Sql/help/Get-AzSqlInstanceVulnerabilityAssessmentSettings.md rename to src/Sql/Sql/help/Get-AzSqlInstanceVulnerabilityAssessmentSetting.md index 922405ae5d01..691b2c80b0eb 100644 --- a/src/Sql/Sql/help/Get-AzSqlInstanceVulnerabilityAssessmentSettings.md +++ b/src/Sql/Sql/help/Get-AzSqlInstanceVulnerabilityAssessmentSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqlinstancevulnerabilityassessmentsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqlinstancevulnerabilityassessmentsetting schema: 2.0.0 --- -# Get-AzSqlInstanceVulnerabilityAssessmentSettings +# Get-AzSqlInstanceVulnerabilityAssessmentSetting ## SYNOPSIS Gets the vulnerability assessment settings of a managed instance. @@ -14,25 +14,25 @@ Gets the vulnerability assessment settings of a managed instance. ### GetByNameParameterSet (Default) ``` -Get-AzSqlInstanceVulnerabilityAssessmentSettings [-ResourceGroupName] [-InstanceName] +Get-AzSqlInstanceVulnerabilityAssessmentSetting [-ResourceGroupName] [-InstanceName] [-DefaultProfile ] [] ``` ### GetByParentResourceParameterSet ``` -Get-AzSqlInstanceVulnerabilityAssessmentSettings [-InputObject] +Get-AzSqlInstanceVulnerabilityAssessmentSetting [-InputObject] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzSqlInstanceVulnerabilityAssessmentSettings** cmdlet gets the vulnerability assessment settings of an Azure SQL Managed Instance. +The **Get-AzSqlInstanceVulnerabilityAssessmentSetting** cmdlet gets the vulnerability assessment settings of an Azure SQL Managed Instance. Note that you need to run *Enable-AzSqlInstanceAdvancedDataSecurity* cmdlet as a prerequisite for using this cmdlet. ## EXAMPLES ### Example 1 - Get the vulnerability assessment settings of an Azure SQL managed instance ```powershell -PS C:\> Get-AzSqlInstanceVulnerabilityAssessmentSettings ` +PS C:\> Get-AzSqlInstanceVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -InstanceName "ManagedInstance01" ` @@ -50,7 +50,7 @@ NotificationEmail : {} PS C:\> Get-AzSqlInstance ` -ResourceGroupName "ResourceGroup01" ` -Name "ManagedInstance01" ` - | Get-AzSqlInstanceVulnerabilityAssessmentSettings + | Get-AzSqlInstanceVulnerabilityAssessmentSetting ResourceGroupName : ResourceGroup01 InstanceName : ManagedInstance01 diff --git a/src/Sql/Sql/help/Get-AzSqlServer.md b/src/Sql/Sql/help/Get-AzSqlServer.md index 0ee76719624f..c11c0056c8dc 100644 --- a/src/Sql/Sql/help/Get-AzSqlServer.md +++ b/src/Sql/Sql/help/Get-AzSqlServer.md @@ -102,6 +102,32 @@ FullyQualifiedDomainName : server03.database.windows.net This command gets information about all the Azure SQL Database servers in the current subscription. +### Example 4: Get all instances of SQL Server assigned to a resource group using filtering +``` +PS C:\>Get-AzSqlServer -ResourceGroupName "ResourceGroup01" -ServerName "server*" +ResourceGroupName : resourcegroup01 +ServerName : server01 +Location : Central US +SqlAdministratorLogin : adminLogin +SqlAdministratorPassword : +ServerVersion : 12.0 +Tags : +Identity : +FullyQualifiedDomainName : server01.database.windows.net + +ResourceGroupName : resourcegroup01 +ServerName : server02 +Location : West US +SqlAdministratorLogin : adminLogin +SqlAdministratorPassword : +ServerVersion : 12.0 +Tags : +Identity : +FullyQualifiedDomainName : server02.database.windows.net +``` + +This command gets information about all the Azure SQL Database servers assigned to the resource group ResourceGroup01 that start with "server". + ## PARAMETERS ### -DefaultProfile diff --git a/src/Sql/Sql/help/Get-AzSqlServerAdvisor.md b/src/Sql/Sql/help/Get-AzSqlServerAdvisor.md index 189337e0ac48..d0359191f4d3 100644 --- a/src/Sql/Sql/help/Get-AzSqlServerAdvisor.md +++ b/src/Sql/Sql/help/Get-AzSqlServerAdvisor.md @@ -155,6 +155,32 @@ RecommendedActions : {IR_[test_schema]_[test_table_0.0361551]_6C7AE8 This command gets advisor named CreateIndex from the server named wi-runner-australia-east with its recommended actions included in the response. +### Example 5: List all the advisors for the server using filtering +``` +PS C:\> Get-AzSqlServerAdvisor -ResourceGroupName "WIRunnersProd" -ServerName "wi-runner-australia-east" -AdvisorName d* +ResourceGroupName : WIRunnersProd +ServerName : wi-runner-australia-east +AdvisorName : DropIndex +AdvisorStatus : PublicPreview +AutoExecuteStatus : Disabled +AutoExecuteStatusInheritedFrom : Database +LastChecked : 7/31/2016 8:41:19 PM +RecommendationsStatus : Ok +RecommendedActions : {} + +ResourceGroupName : WIRunnersProd +ServerName : wi-runner-australia-east +AdvisorName : DbParameterization +AdvisorStatus : PublicPreview +AutoExecuteStatus : Disabled +AutoExecuteStatusInheritedFrom : Default +LastChecked : 7/31/2016 2:46:58 PM +RecommendationsStatus : NoDbParameterizationIssue +RecommendedActions : {} +``` + +This command gets a list of all the advisors for the server named wi-runner-australia-east that belongs to the resource group named WIRunnersProd that start with the letter "d". + ## PARAMETERS ### -AdvisorName diff --git a/src/Sql/Sql/help/Get-AzSqlServerCommunicationLink.md b/src/Sql/Sql/help/Get-AzSqlServerCommunicationLink.md index f2339785b2dd..08aa6bc6aeaa 100644 --- a/src/Sql/Sql/help/Get-AzSqlServerCommunicationLink.md +++ b/src/Sql/Sql/help/Get-AzSqlServerCommunicationLink.md @@ -26,18 +26,25 @@ Specify the name of a server communication link to see the properties for that l ### Example 1: Get all communication links for a server ``` -PS C:\>Get-AzSqlServerCommunicationLink -ResourceGroupName "ResourceGroup01" -ServerName "ContosoServer17" +PS C:\> Get-AzSqlServerCommunicationLink -ResourceGroupName "ResourceGroup01" -ServerName "ContosoServer17" ``` This command gets all server-to-server communication links for elastic database transactions for the server named ContosoServer17. ### Example 2: Get a specific communication link for a server ``` -PS C:\>Get-AzSqlServerCommunicationLink -ResourceGroupName "ResourceGroup01" -ServerName "ContosoServer17" -LinkName "Link01" +PS C:\> Get-AzSqlServerCommunicationLink -ResourceGroupName "ResourceGroup01" -ServerName "ContosoServer17" -LinkName "Link01" ``` This command gets the server-to-server communication link named Link01. +### Example 3: Get all communication links for a server using filtering +``` +PS C:\> Get-AzSqlServerCommunicationLink -ResourceGroupName "ResourceGroup01" -ServerName "ContosoServer17" -LinkName "Link*" +``` + +This command gets all server-to-server communication links for elastic database transactions for the server named ContosoServer17 that start with "Link". + ## PARAMETERS ### -DefaultProfile diff --git a/src/Sql/Sql/help/Get-AzSqlServerDnsAlias.md b/src/Sql/Sql/help/Get-AzSqlServerDnsAlias.md index bf08089966f7..8541d6f652b8 100644 --- a/src/Sql/Sql/help/Get-AzSqlServerDnsAlias.md +++ b/src/Sql/Sql/help/Get-AzSqlServerDnsAlias.md @@ -45,6 +45,18 @@ rgname servername dnsaliasname Gets Server DNS Alias specified by server and alias name +### Example 3 +``` +PS C:\> $serverDNSAliases = Get-AzSqlServerDNSAlias -ServerName servername -ResourceGroupName rgname -DnsAliasName "dnsaliasname*" + +ResourceGroupName ServerName DnsAliasName +----------------- ---------- ------------------ +rgname servername dnsaliasname +rgname servername dnsaliasname2 +``` + +Lists all Server DNS Aliases for the specific server that start with "dnsaliasname". + ## PARAMETERS ### -DefaultProfile diff --git a/src/Sql/Sql/help/Get-AzSqlServerFirewallRule.md b/src/Sql/Sql/help/Get-AzSqlServerFirewallRule.md index dad8a11f0e6a..1e89b3553db8 100644 --- a/src/Sql/Sql/help/Get-AzSqlServerFirewallRule.md +++ b/src/Sql/Sql/help/Get-AzSqlServerFirewallRule.md @@ -42,6 +42,24 @@ FirewallRuleName : Rule01 This command gets all the firewall rules for the server named Server01. +### Example 2: Get all rules for a server using filtering +``` +PS C:\>Get-AzSqlServerFirewallRule -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -FirewallRuleName "Rule*" +ResourceGroupName : ResourceGroup01 +ServerName : server01 +StartIpAddress : 0.0.0.0 +EndIpAddress : 0.0.0.0 +FirewallRuleName : Rule01 + +ResourceGroupName : ResourceGroup01 +ServerName : Server01 +StartIpAddress : 1.2.3.4 +EndIpAddress : 4.3.2.1 +FirewallRuleName : Rule02 +``` + +This command gets all the firewall rules for the server named Server01 that start with "Rule". + ## PARAMETERS ### -DefaultProfile diff --git a/src/Sql/Sql/help/Get-AzSqlServerServiceObjective.md b/src/Sql/Sql/help/Get-AzSqlServerServiceObjective.md index d11b57501fec..ee649198f60e 100644 --- a/src/Sql/Sql/help/Get-AzSqlServerServiceObjective.md +++ b/src/Sql/Sql/help/Get-AzSqlServerServiceObjective.md @@ -47,6 +47,19 @@ resourcegroup01 server01 P4 True False This command gets the service objectives for the server named Server01. +### Example 2: Get service objectives using filtering +``` +PS C:\>Get-AzSqlServerServiceObjective -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -ServiceObjectiveName "System*" +ResourceGroupName ServerName ServiceObjectiveName Description Enabled IsDefault IsSystem +----------------- ---------- -------------------- ----------- ------- --------- -------- +resourcegroup01 server01 System True False True +resourcegroup01 server01 System0 True False True +resourcegroup01 server01 System1 True False True +resourcegroup01 server01 System2 True True True +``` + +This command gets the service objectives for the server named Server01 that start with "System". + ## PARAMETERS ### -DefaultProfile diff --git a/src/Sql/Sql/help/Get-AzSqlServerVirtualNetworkRule.md b/src/Sql/Sql/help/Get-AzSqlServerVirtualNetworkRule.md index 58d7f331848a..861e59d96e4b 100644 --- a/src/Sql/Sql/help/Get-AzSqlServerVirtualNetworkRule.md +++ b/src/Sql/Sql/help/Get-AzSqlServerVirtualNetworkRule.md @@ -36,6 +36,13 @@ PS C:\> $virtualNetworkRules = Get-AzSqlServerVirtualNetworkRule -ResourceGroupN Gets the list of Azure SQL Server virtual network rules under the specified server +### Example 3 +``` +PS C:\> $virtualNetworkRules = Get-AzSqlServerVirtualNetworkRule -ResourceGroupName rg -ServerName serverName -VirtualNetworkRuleName virtualNetworkRule* +``` + +Gets the list of Azure SQL Server virtual network rules under the specified server that start with "virtualNetworkRule". + ## PARAMETERS ### -DefaultProfile diff --git a/src/Sql/Sql/help/Get-AzSqlServerVulnerabilityAssessmentSettings.md b/src/Sql/Sql/help/Get-AzSqlServerVulnerabilityAssessmentSetting.md similarity index 86% rename from src/Sql/Sql/help/Get-AzSqlServerVulnerabilityAssessmentSettings.md rename to src/Sql/Sql/help/Get-AzSqlServerVulnerabilityAssessmentSetting.md index 2c708e1a8c19..d13c91d28e28 100644 --- a/src/Sql/Sql/help/Get-AzSqlServerVulnerabilityAssessmentSettings.md +++ b/src/Sql/Sql/help/Get-AzSqlServerVulnerabilityAssessmentSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqlservervulnerabilityassessmentsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/get-azsqlservervulnerabilityassessmentsetting schema: 2.0.0 --- -# Get-AzSqlServerVulnerabilityAssessmentSettings +# Get-AzSqlServerVulnerabilityAssessmentSetting ## SYNOPSIS Gets the vulnerability assessment settings of a server. @@ -14,25 +14,25 @@ Gets the vulnerability assessment settings of a server. ### GetByNameParameterSet (Default) ``` -Get-AzSqlServerVulnerabilityAssessmentSettings [-ResourceGroupName] [-ServerName] +Get-AzSqlServerVulnerabilityAssessmentSetting [-ResourceGroupName] [-ServerName] [-DefaultProfile ] [] ``` ### GetByParentResourceParameterSet ``` -Get-AzSqlServerVulnerabilityAssessmentSettings [-InputObject] +Get-AzSqlServerVulnerabilityAssessmentSetting [-InputObject] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzSqlServerVulnerabilityAssessmentSettings** cmdlet gets the vulnerability assessment settings of an Azure SQL Server. +The **Get-AzSqlServerVulnerabilityAssessmentSetting** cmdlet gets the vulnerability assessment settings of an Azure SQL Server. Note that you need to run *Enable-AzSqlServerAdvancedThreatProtection* cmdlet as a prerequisite for using this cmdlet. ## EXAMPLES ### Example 1 - Get the vulnerability assessment settings of an Azure SQL server ```powershell -PS C:\> Get-AzSqlServerVulnerabilityAssessmentSettings ` +PS C:\> Get-AzSqlServerVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -ServerName "Server01" @@ -50,7 +50,7 @@ NotificationEmail : {} PS C:\> Get-AzSqlServer ` -ResourceGroupName "ResourceGroup01" ` -ServerName "Server01" ` - | Get-AzSqlServerVulnerabilityAssessmentSettings + | Get-AzSqlServerVulnerabilityAssessmentSetting ResourceGroupName : ResourceGroup01 ServerName : Server01 diff --git a/src/Sql/Sql/help/Get-AzSqlSyncAgent.md b/src/Sql/Sql/help/Get-AzSqlSyncAgent.md index b440a7e19f8a..59c5f3fb5386 100644 --- a/src/Sql/Sql/help/Get-AzSqlSyncAgent.md +++ b/src/Sql/Sql/help/Get-AzSqlSyncAgent.md @@ -71,6 +71,36 @@ State : Online This command gets information about the Azure SQL Database Sync Agent with name "SyncAgent01" +### Example 3: Get all instances of Azure SQL Sync Agent assigned to an Azure SQL Server using filtering +``` +PS C:\>Get-AzSqlSyncAgent -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -Name SyncAgent* | Format-List +ResourceId : subscriptions/{subscriptionId}/resourceGroups/{ResourceGroup01}/servers/{Server01}/syncAgents/{SyncAgent01} +ResourceGroupName : ResourceGroup01 +ServerName : Server01 +DatabaseName : Database01 +SyncAgentName : SyncAgent01 +SyncDatabaseId : subscriptions/{subscriptionId}/resourceGroups/{syncDatabaseResourceGroup01}/servers/{syncDatabaseServer01}/databases/{syncDatabaseName01} +LastAliveTime: : 6/1/2017 5:08:48 AM +Version : 4.3.6348.1 +IsUpToDate : False +ExpiryTime : +State : Online + +ResourceId : subscriptions/{subscriptionId}/resourceGroups/{ResourceGroup01}/servers/{Server01}/syncAgents/{SyncAgent02} +ResourceGroupName : ResourceGroup01 +ServerName : Server01 +DatabaseName : Database01 +SyncAgentName : SyncAgent02 +SyncDatabaseId : subscriptions/{subscriptionId}/resourceGroups/{syncDatabaseResourceGroup01}/servers/{syncDatabaseServer01}/databases/{syncDatabaseName01} +LastAliveTime: : 6/1/2017 5:08:48 AM +Version : 4.3.6348.1 +IsUpToDate : False +ExpiryTime : +State : Online +``` + +This command gets information about all the Azure SQL Sync Agents assigned to an Azure SQL Server that start with "SyncAgent". + ## PARAMETERS ### -DefaultProfile diff --git a/src/Sql/Sql/help/Get-AzSqlSyncGroup.md b/src/Sql/Sql/help/Get-AzSqlSyncGroup.md index bc641b912098..48bb6516573b 100644 --- a/src/Sql/Sql/help/Get-AzSqlSyncGroup.md +++ b/src/Sql/Sql/help/Get-AzSqlSyncGroup.md @@ -77,6 +77,40 @@ Schema : This command gets information about the Azure SQL Database Sync Group with name "SyncGroup01" +### Example 3: Get all instances of Azure SQL Sync Group assigned to an Azure SQL Database using filtering +``` +PS C:\>Get-AzSqlSyncGroup -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" -Name "SyncGroup*" | Format-List +ResourceId : /subscriptions/{subscriptionId}/resourceGroups/{ResourceGroup01}/servers/{Server01}/databases/{Database01}/syncGroups/{SyncGroup01} +ResourceGroupName : ResourceGroup01 +ServerName : Server01 +DatabaseName : Database01 +SyncGroupName : SyncGroup01 +SyncDatabaseId : subscriptions/{subscriptionId}/resourceGroups/{syncDatabaseResourceGroup01}/servers/{syncDatabaseServer01}/databases/{syncDatabaseName01} +IntervalInSeconds : 100 +ConflictResolutionPolicy: : HubWin +HubDatabaseUserName : myAccount +HubDatabasePassword : +SyncState : NotReady +LastSyncTime : 1/1/0001 12:00:00 AM +Schema : + +ResourceId : /subscriptions/{subscriptionId}/resourceGroups/{ResourceGroup01}/servers/{Server01}/databases/{Database01}/syncGroups/{SyncGroup02} +ResourceGroupName : ResourceGroup01 +ServerName : Server01 +DatabaseName : Database01 +SyncGroupName : SyncGroup02 +SyncDatabaseId : subscriptions/{subscriptionId}/resourceGroups/{syncDatabaseResourceGroup01}/servers/{syncDatabaseServer01}/databases/{syncDatabaseName01} +IntervalInSeconds : 100 +ConflictResolutionPolicy: : HubWin +HubDatabaseUserName : myAccount +HubDatabasePassword : +SyncState : NotReady +LastSyncTime : 1/1/0001 12:00:00 AM +Schema : +``` + +This command gets information about all the Azure SQL Database Sync Groups assigned to an Azure SQL Database that start with "SyncGroup". + ## PARAMETERS ### -DatabaseName diff --git a/src/Sql/Sql/help/Get-AzSqlSyncMember.md b/src/Sql/Sql/help/Get-AzSqlSyncMember.md index 8b31a25c8ba9..b0cc1ee012a7 100644 --- a/src/Sql/Sql/help/Get-AzSqlSyncMember.md +++ b/src/Sql/Sql/help/Get-AzSqlSyncMember.md @@ -25,7 +25,7 @@ Specify the name of a sync member to see information for only that sync member. ### Example 1: Get all instances of Azure SQL Sync Member assigned to a sync group ``` -PS C:\>Get-AzSqlSyncMember -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" -SyncGroupName "SyncGroup01" | Format-List +PS C:\> Get-AzSqlSyncMember -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" -SyncGroupName "SyncGroup01" | Format-List ResourceId : subscriptions/{subscriptionId}/resourceGroups/{ResourceGroup01}/servers/{Server01}/databases/{Database01}/syncGroups/{SyncGroup01}/syncMembers/{SyncMember01} ResourceGroupName : ResourceGroup01 ServerName : Server01 @@ -63,7 +63,7 @@ This command gets information about all the Azure SQL Database Sync Member assig ### Example 2: Get information about an Azure SQL Database Sync Member ``` -PS C:\>Get-AzSqlSyncMember -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" -SyncGroupName "SyncGroup01" -Name "SyncMember01" | Format-List +PS C:\> Get-AzSqlSyncMember -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" -SyncGroupName "SyncGroup01" -Name "SyncMember01" | Format-List ResourceId : subscriptions/{subscriptionId}/resourceGroups/{ResourceGroup01}/servers/{Server01}/databases/{Database01}/syncGroups/{SyncGroup01}/syncMembers/{SyncMember01} ResourceGroupName : ResourceGroup01 ServerName : Server01 @@ -83,6 +83,44 @@ SyncState : Good This command gets information about the Azure SQL Database Sync Member with name "SyncMember01" +### Example 3: Get all instances of Azure SQL Sync Member assigned to a sync group using filtering +``` +PS C:\> Get-AzSqlSyncMember -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" -SyncGroupName "SyncGroup01" -Name "SyncMember*" | Format-List +ResourceId : subscriptions/{subscriptionId}/resourceGroups/{ResourceGroup01}/servers/{Server01}/databases/{Database01}/syncGroups/{SyncGroup01}/syncMembers/{SyncMember01} +ResourceGroupName : ResourceGroup01 +ServerName : Server01 +DatabaseName : Database01 +SyncGroupName : SyncGroup01 +SyncMemberName : SyncMember01 +SyncDirection : OneWayMemberToHub +MemberDatabaseType: : AzureSqlDatabase +SyncAgentId : +SqlServerDatabaseId : +MemberServerName : memberServer01.full.dns.name +MemberDatabaseName : memberDatabase01 +MemberDatabaseUserName : myAccount +MemberDatabasePassword : +SyncState : Good + +ResourceId : subscriptions/{subscriptionId}/resourceGroups/{ResourceGroup01}/servers/{Server01}/databases/{Database01}/syncGroups/{SyncGroup01}/syncMembers/{SyncMember02} +ResourceGroupName : ResourceGroup01 +ServerName : Server01 +DatabaseName : Database01 +SyncGroupName : SyncGroup01 +SyncMemberName : SyncMember02 +SyncDirection : OneWayMemberToHub +MemberDatabaseType: : AzureSqlDatabase +SyncAgentId : +SqlServerDatabaseId : +MemberServerName : memberServer01.full.dns.name +MemberDatabaseName : memberDatabase01 +MemberDatabaseUserName : myAccount +MemberDatabasePassword : +SyncState : Good +``` + +This command gets information about all the Azure SQL Database Sync Member assigned to the sync group SyncGroup01 that start with "SyncMember". + ## PARAMETERS ### -DatabaseName diff --git a/src/Sql/Sql/help/Update-AzSqlDatabaseVulnerabilityAssessmentSettings.md b/src/Sql/Sql/help/Update-AzSqlDatabaseVulnerabilityAssessmentSetting.md similarity index 92% rename from src/Sql/Sql/help/Update-AzSqlDatabaseVulnerabilityAssessmentSettings.md rename to src/Sql/Sql/help/Update-AzSqlDatabaseVulnerabilityAssessmentSetting.md index af5077d5ac76..1fb11bffde94 100644 --- a/src/Sql/Sql/help/Update-AzSqlDatabaseVulnerabilityAssessmentSettings.md +++ b/src/Sql/Sql/help/Update-AzSqlDatabaseVulnerabilityAssessmentSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/Update-AzSqlDatabaseVulnerabilityAssessmentSettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/Update-AzSqlDatabaseVulnerabilityAssessmentSetting schema: 2.0.0 --- -# Update-AzSqlDatabaseVulnerabilityAssessmentSettings +# Update-AzSqlDatabaseVulnerabilityAssessmentSetting ## SYNOPSIS Updates the vulnerability assessment settings of a database. @@ -14,7 +14,7 @@ Updates the vulnerability assessment settings of a database. ### UpdateSettingsWithStorageAccountNameParameterSet (Default) ``` -Update-AzSqlDatabaseVulnerabilityAssessmentSettings [-ServerName] [-DatabaseName] +Update-AzSqlDatabaseVulnerabilityAssessmentSetting [-ServerName] [-DatabaseName] [-StorageAccountName ] [-ScanResultsContainerName ] [-RecurringScansInterval ] [-EmailAdmins ] [-NotificationEmail ] [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] @@ -23,7 +23,7 @@ Update-AzSqlDatabaseVulnerabilityAssessmentSettings [-ServerName] [-Dat ### UpdateByInputObjectParameterSet ``` -Update-AzSqlDatabaseVulnerabilityAssessmentSettings [-ServerName] [-DatabaseName] +Update-AzSqlDatabaseVulnerabilityAssessmentSetting [-ServerName] [-DatabaseName] -InputObject [-RecurringScansInterval ] [-EmailAdmins ] [-NotificationEmail ] [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -31,21 +31,21 @@ Update-AzSqlDatabaseVulnerabilityAssessmentSettings [-ServerName] [-Dat ### UpdateSettingsWithBlobStorageSasUri ``` -Update-AzSqlDatabaseVulnerabilityAssessmentSettings [-ServerName] [-DatabaseName] +Update-AzSqlDatabaseVulnerabilityAssessmentSetting [-ServerName] [-DatabaseName] -BlobStorageSasUri [-RecurringScansInterval ] [-EmailAdmins ] [-NotificationEmail ] [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Update-AzSqlDatabaseVulnerabilityAssessmentSettings** cmdlet updates the vulnerability assessment settings of an Azure SQL Database. +The **Update-AzSqlDatabaseVulnerabilityAssessmentSetting** cmdlet updates the vulnerability assessment settings of an Azure SQL Database. Note that you need to run *Enable-AzSqlServerAdvancedThreatProtection* cmdlet as a prerequisite for using this cmdlet. ## EXAMPLES ### Example 1: Update Vulnerability Assessment settings with storage account name ```powershell -PS C:\> Update-AzSqlDatabaseVulnerabilityAssessmentSettings ` +PS C:\> Update-AzSqlDatabaseVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01"` -ServerName "Server01"` -DatabaseName "Database01" ` @@ -67,7 +67,7 @@ NotificationEmail : {mail1@mail.com , mail2@mail.com} ### Example 2: Update Vulnerability Assessment settings with blob storage SAS URI ```powershell -PS C:\> Update-AzSqlDatabaseVulnerabilityAssessmentSettings ` +PS C:\> Update-AzSqlDatabaseVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01"` -ServerName "Server01"` -DatabaseName "Database01" ` @@ -88,7 +88,7 @@ NotificationEmail : {mail1@mail.com , mail2@mail.com} ### Example 3: Update the Vulnerability Assessment settings from DatabaseVulnerabilityAssessmentSettingsModel instance definition ```powershell -PS C:\> Update-AzSqlDatabaseVulnerabilityAssessmentSettings ` +PS C:\> Update-AzSqlDatabaseVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01"` -ServerName "Server01"` -DatabaseName "Database01" ` @@ -98,11 +98,11 @@ PS C:\> Update-AzSqlDatabaseVulnerabilityAssessmentSettings ` -EmailSubscriptionAdmins True ` -NotificationEmail {mail1@mail.com , mail2@mail.com} -PS C:\> Get-AzSqlDatabaseVulnerabilityAssessmentSettings ` +PS C:\> Get-AzSqlDatabaseVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -ServerName "Server01" ` -DatabaseName "Database01" ` - | Update-AzSqlDatabaseVulnerabilityAssessmentSettings ` + | Update-AzSqlDatabaseVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup02" ` -ServerName "Server02" ` -DatabaseName "Database02" @@ -124,7 +124,7 @@ This command updated the Vulnerability Assessment settings on Database02 from th PS C:\> Get-AzSqlDatabase -ResourceGroupName "ResourceGroup01" ` -ServerName $"Server01" ` | where {$_.DatabaseName -ne "master"} ` - | Update-AzSqlDatabaseVulnerabilityAssessmentSettings ` + | Update-AzSqlDatabaseVulnerabilityAssessmentSetting ` -StorageAccountName "mystorage" ` -ScanResultsContainerName "vulnerability-assessment" ` -RecurringScansInterval Weekly ` diff --git a/src/Sql/Sql/help/Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings.md b/src/Sql/Sql/help/Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting.md similarity index 94% rename from src/Sql/Sql/help/Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings.md rename to src/Sql/Sql/help/Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting.md index 198808b490bc..40614c238581 100644 --- a/src/Sql/Sql/help/Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings.md +++ b/src/Sql/Sql/help/Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/update-azsqlinstancedatabasevulnerabilityassessmentsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/update-azsqlinstancedatabasevulnerabilityassessmentsetting schema: 2.0.0 --- -# Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings +# Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting ## SYNOPSIS Updates the vulnerability assessment settings of a managed database. @@ -14,7 +14,7 @@ Updates the vulnerability assessment settings of a managed database. ### UpdateSettingsWithStorageAccountNameParameterSet (Default) ``` -Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings [-InstanceName] [-DatabaseName] +Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting [-InstanceName] [-DatabaseName] [-StorageAccountName ] [-ScanResultsContainerName ] [-RecurringScansInterval ] [-EmailAdmins ] [-NotificationEmail ] [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] @@ -23,7 +23,7 @@ Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings [-InstanceName] [-DatabaseName] +Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting [-InstanceName] [-DatabaseName] -InputObject [-RecurringScansInterval ] [-EmailAdmins ] [-NotificationEmail ] [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -31,21 +31,21 @@ Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings [-InstanceName] [-DatabaseName] +Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting [-InstanceName] [-DatabaseName] -BlobStorageSasUri [-RecurringScansInterval ] [-EmailAdmins ] [-NotificationEmail ] [-ResourceGroupName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings** cmdlet updates the vulnerability assessment settings of an Azure SQL Managed Database. +The **Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting** cmdlet updates the vulnerability assessment settings of an Azure SQL Managed Database. Note that you need to run *Enable-AzSqlInstanceAdvancedDataSecurity* cmdlet as a prerequisite for using this cmdlet. ## EXAMPLES ### Example 1: Update Vulnerability Assessment settings with storage account name ```powershell -PS C:\> Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings ` +PS C:\> Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -InstanceName "ManagedInstance01" ` -DatabaseName "Database01" ` @@ -67,7 +67,7 @@ NotificationEmail : {mail1@mail.com , mail2@mail.com} ### Example 2: Update Vulnerability Assessment settings with blob storage SAS URI ```powershell -PS C:\> Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings ` +PS C:\> Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -InstanceName "ManagedInstance01" ` -DatabaseName "Database01" ` @@ -88,7 +88,7 @@ NotificationEmail : {mail1@mail.com , mail2@mail.com} ### Example 3: Update the Vulnerability Assessment settings from ManagedDatabaseVulnerabilityAssessmentSettingsModel instance definition ```powershell -PS C:\> Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings ` +PS C:\> Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -InstanceName "ManagedInstance01" ` -DatabaseName "Database01" ` @@ -98,11 +98,11 @@ PS C:\> Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings ` -EmailSubscriptionAdmins True ` -NotificationEmail {mail1@mail.com , mail2@mail.com} -PS C:\> Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings ` +PS C:\> Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -InstanceName "ManagedInstance01" ` -DatabaseName "Database01" - | Update-AzSqlDatabaseVulnerabilityAssessmentSettings ` + | Update-AzSqlDatabaseVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup02" ` -InstanceName "ManagedInstance02" ` -DatabaseName "Database02" @@ -124,7 +124,7 @@ This command updated the Vulnerability Assessment settings on Database02 from th PS C:\> Get-AzSqlInstanceDatabase -ResourceGroupName "ResourceGroup01" ` -InstanceName $"ManagedInstance01" ` | where {$_.Name -ne "master"} ` - | Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings ` + | Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting ` -StorageAccountName "mystorage" ` -ScanResultsContainerName "vulnerability-assessment" ` -RecurringScansInterval Weekly ` diff --git a/src/Sql/Sql/help/Update-AzSqlInstanceVulnerabilityAssessmentSettings.md b/src/Sql/Sql/help/Update-AzSqlInstanceVulnerabilityAssessmentSetting.md similarity index 91% rename from src/Sql/Sql/help/Update-AzSqlInstanceVulnerabilityAssessmentSettings.md rename to src/Sql/Sql/help/Update-AzSqlInstanceVulnerabilityAssessmentSetting.md index f29872c39670..9577a67a4343 100644 --- a/src/Sql/Sql/help/Update-AzSqlInstanceVulnerabilityAssessmentSettings.md +++ b/src/Sql/Sql/help/Update-AzSqlInstanceVulnerabilityAssessmentSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/update-azsqlinstancevulnerabilityassessmentsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/update-azsqlinstancevulnerabilityassessmentsetting schema: 2.0.0 --- -# Update-AzSqlInstanceVulnerabilityAssessmentSettings +# Update-AzSqlInstanceVulnerabilityAssessmentSetting ## SYNOPSIS Updates the vulnerability assessment settings of a managed instance. @@ -14,7 +14,7 @@ Updates the vulnerability assessment settings of a managed instance. ### UpdateSettingsWithStorageAccountNameParameterSet (Default) ``` -Update-AzSqlInstanceVulnerabilityAssessmentSettings [-ResourceGroupName] [-InstanceName] +Update-AzSqlInstanceVulnerabilityAssessmentSetting [-ResourceGroupName] [-InstanceName] [-StorageAccountName ] [-ScanResultsContainerName ] [-RecurringScansInterval ] [-EmailAdmins ] [-NotificationEmail ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -22,7 +22,7 @@ Update-AzSqlInstanceVulnerabilityAssessmentSettings [-ResourceGroupName] [-InstanceName] +Update-AzSqlInstanceVulnerabilityAssessmentSetting [-ResourceGroupName] [-InstanceName] -BlobStorageSasUri [-RecurringScansInterval ] [-EmailAdmins ] [-NotificationEmail ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -30,20 +30,20 @@ Update-AzSqlInstanceVulnerabilityAssessmentSettings [-ResourceGroupName] +Update-AzSqlInstanceVulnerabilityAssessmentSetting -InputObject [-RecurringScansInterval ] [-EmailAdmins ] [-NotificationEmail ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Update-AzSqlInstanceVulnerabilityAssessmentSettings** cmdlet updates the vulnerability assessment settings of an Azure SQL Managed Instance. +The **Update-AzSqlInstanceVulnerabilityAssessmentSetting** cmdlet updates the vulnerability assessment settings of an Azure SQL Managed Instance. Note that you need to run *Enable-AzSqlInstanceAdvancedDataSecurity* cmdlet as a prerequisite for using this cmdlet. ## EXAMPLES ### Example 1: Update Vulnerability Assessment settings with storage account name ```powershell -PS C:\> Update-AzSqlInstanceVulnerabilityAssessmentSettings ` +PS C:\> Update-AzSqlInstanceVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -InstanceName "ManagedInstance01" ` -StorageAccountName "mystorage" ` @@ -63,7 +63,7 @@ NotificationEmail : {mail1@mail.com , mail2@mail.com} ### Example 2: Update Vulnerability Assessment settings with blob storage SAS URI ```powershell -PS C:\> Update-AzSqlInstanceVulnerabilityAssessmentSettings ` +PS C:\> Update-AzSqlInstanceVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -InstanceName "ManagedInstance01" ` -BlobStorageSasUri "https://mystorage.blob.core.windows.net/vulnerability-assessment?st=XXXXXX" ` @@ -82,7 +82,7 @@ NotificationEmail : {mail1@mail.com , mail2@mail.com} ### Example 3: Update the Vulnerability Assessment settings from ManagedInstanceVulnerabilityAssessmentSettingsModel instance definition ```powershell -PS C:\> Update-AzSqlInstanceVulnerabilityAssessmentSettings ` +PS C:\> Update-AzSqlInstanceVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -InstanceName "ManagedInstance01" ` -StorageAccountName "mystorage" ` @@ -91,10 +91,10 @@ PS C:\> Update-AzSqlInstanceVulnerabilityAssessmentSettings ` -EmailSubscriptionAdmins True ` -NotificationEmail {mail1@mail.com , mail2@mail.com} -PS C:\> Get-AzSqlInstanceVulnerabilityAssessmentSettings ` +PS C:\> Get-AzSqlInstanceVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -InstanceName "ManagedInstance01" ` - | Update-AzSqlInstanceVulnerabilityAssessmentSettings ` + | Update-AzSqlInstanceVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup02" ` -ManagedInstanceName "ManagedInstance02" ` diff --git a/src/Sql/Sql/help/Update-AzSqlServerVulnerabilityAssessmentSettings.md b/src/Sql/Sql/help/Update-AzSqlServerVulnerabilityAssessmentSetting.md similarity index 90% rename from src/Sql/Sql/help/Update-AzSqlServerVulnerabilityAssessmentSettings.md rename to src/Sql/Sql/help/Update-AzSqlServerVulnerabilityAssessmentSetting.md index b2ac2d70b801..1f2849857b3a 100644 --- a/src/Sql/Sql/help/Update-AzSqlServerVulnerabilityAssessmentSettings.md +++ b/src/Sql/Sql/help/Update-AzSqlServerVulnerabilityAssessmentSetting.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Sql.dll-Help.xml Module Name: Az.Sql -online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/update-azsqlservervulnerabilityassessmentsettings +online version: https://docs.microsoft.com/en-us/powershell/module/az.sql/update-azsqlservervulnerabilityassessmentsetting schema: 2.0.0 --- -# Update-AzSqlServerVulnerabilityAssessmentSettings +# Update-AzSqlServerVulnerabilityAssessmentSetting ## SYNOPSIS Updates the vulnerability assessment settings of a server. @@ -14,7 +14,7 @@ Updates the vulnerability assessment settings of a server. ### UpdateSettingsWithStorageAccountNameParameterSet (Default) ``` -Update-AzSqlServerVulnerabilityAssessmentSettings [-ResourceGroupName] [-ServerName] +Update-AzSqlServerVulnerabilityAssessmentSetting [-ResourceGroupName] [-ServerName] [-StorageAccountName ] [-ScanResultsContainerName ] [-RecurringScansInterval ] [-EmailAdmins ] [-NotificationEmail ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -22,7 +22,7 @@ Update-AzSqlServerVulnerabilityAssessmentSettings [-ResourceGroupName] ### UpdateSettingsWithBlobStorageSasUri ``` -Update-AzSqlServerVulnerabilityAssessmentSettings [-ResourceGroupName] [-ServerName] +Update-AzSqlServerVulnerabilityAssessmentSetting [-ResourceGroupName] [-ServerName] -BlobStorageSasUri [-RecurringScansInterval ] [-EmailAdmins ] [-NotificationEmail ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -30,20 +30,20 @@ Update-AzSqlServerVulnerabilityAssessmentSettings [-ResourceGroupName] ### UpdateByInputObjectParameterSet ``` -Update-AzSqlServerVulnerabilityAssessmentSettings -InputObject +Update-AzSqlServerVulnerabilityAssessmentSetting -InputObject [-RecurringScansInterval ] [-EmailAdmins ] [-NotificationEmail ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Update-AzSqlServerVulnerabilityAssessmentSettings** cmdlet updates the vulnerability assessment settings of an Azure SQL Server. +The **Update-AzSqlServerVulnerabilityAssessmentSetting** cmdlet updates the vulnerability assessment settings of an Azure SQL Server. Note that you need to run *Enable-AzSqlServerAdvancedThreatProtection* cmdlet as a prerequisite for using this cmdlet. ## EXAMPLES ### Example 1: Update Vulnerability Assessment settings with storage account name ```powershell -PS C:\> Update-AzSqlServerVulnerabilityAssessmentSettings ` +PS C:\> Update-AzSqlServerVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01"` -ServerName "Server01"` -StorageAccountName "mystorage" ` @@ -63,7 +63,7 @@ NotificationEmail : {mail1@mail.com , mail2@mail.com} ### Example 2: Update Vulnerability Assessment settings with blob storage SAS URI ```powershell -PS C:\> Update-AzSqlServerVulnerabilityAssessmentSettings ` +PS C:\> Update-AzSqlServerVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01"` -ServerName "Server01"` -BlobStorageSasUri "https://mystorage.blob.core.windows.net/vulnerability-assessment?st=XXXXXX" ` @@ -82,7 +82,7 @@ NotificationEmail : {mail1@mail.com , mail2@mail.com} ### Example 3: Update the Vulnerability Assessment settings from ServerVulnerabilityAssessmentSettingsModel instance definition ```powershell -PS C:\> Update-AzSqlServerVulnerabilityAssessmentSettings ` +PS C:\> Update-AzSqlServerVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01"` -ServerName "Server01"` -StorageAccountName "mystorage" ` @@ -91,10 +91,10 @@ PS C:\> Update-AzSqlServerVulnerabilityAssessmentSettings ` -EmailSubscriptionAdmins True ` -NotificationEmail {mail1@mail.com , mail2@mail.com} -PS C:\> Get-AzSqlServerVulnerabilityAssessmentSettings ` +PS C:\> Get-AzSqlServerVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup01" ` -ServerName "Server01" ` - | Update-AzSqlServerVulnerabilityAssessmentSettings ` + | Update-AzSqlServerVulnerabilityAssessmentSetting ` -ResourceGroupName "ResourceGroup02" ` -ServerName "Server02" diff --git a/src/Storage/Storage.Management/Az.Storage.psd1 b/src/Storage/Storage.Management/Az.Storage.psd1 index 37e374e9418f..c0d0f7f8fd10 100644 --- a/src/Storage/Storage.Management/Az.Storage.psd1 +++ b/src/Storage/Storage.Management/Az.Storage.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/20/2019 +# Generated on: 4/4/2019 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.1.0' +ModuleVersion = '1.2.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Storage.dll', @@ -150,10 +150,10 @@ CmdletsToExport = 'Get-AzStorageAccount', 'Get-AzStorageAccountKey', 'Remove-AzStorageAccountManagementPolicy', 'New-AzStorageAccountManagementPolicyFilter', 'New-AzStorageAccountManagementPolicyRule', - 'Add-AzStorageAccountManagementPolicyAction', - 'Update-AzStorageBlobServiceProperty', - 'Get-AzStorageBlobServiceProperty', - 'Enable-AzStorageBlobDeleteRetentionPolicy', + 'Add-AzStorageAccountManagementPolicyAction', + 'Update-AzStorageBlobServiceProperty', + 'Get-AzStorageBlobServiceProperty', + 'Enable-AzStorageBlobDeleteRetentionPolicy', 'Disable-AzStorageBlobDeleteRetentionPolicy' # Variables to export from this module @@ -191,13 +191,18 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Support Get/Set/Remove Management Policy on a Storage account - - Set-AzStorageAccountManagementPolicy - - Get-AzStorageAccountManagementPolicy - - Remove-AzStorageAccountManagementPolicy - - Add-AzStorageAccountManagementPolicyAction - - New-AzStorageAccountManagementPolicyFilter - - New-AzStorageAccountManagementPolicyRule' + ReleaseNotes = '* Report detail error when create Storage context with parameter -UseConnectedAccount, but without login Azure account + - New-AzStorageContext +* Support Manage Blob Service Properties of a specified Storage account with Management plane API + - Update-AzStorageBlobServiceProperty + - Get-AzStorageBlobServiceProperty + - Enable-AzStorageBlobDeleteRetentionPolicy + - Disable-AzStorageBlobDeleteRetentionPolicy +* -AsJob support for Blob and file upload and download cmdlets + - Get-AzStorageBlobContent + - Set-AzStorageBlobContent + - Get-AzStorageFileContent + - Set-AzStorageFileContent' # Prerelease string of this module # Prerelease = '' diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index 30bb1be74684..f7f65c96a808 100644 --- a/src/Storage/Storage.Management/ChangeLog.md +++ b/src/Storage/Storage.Management/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release + +## Version 1.2.0 * Report detail error when create Storage context with parameter -UseConnectedAccount, but without login Azure account - New-AzStorageContext * Support Manage Blob Service Properties of a specified Storage account with Management plane API @@ -25,6 +27,11 @@ - Get-AzStorageBlobServiceProperty - Enable-AzStorageBlobDeleteRetentionPolicy - Disable-AzStorageBlobDeleteRetentionPolicy +* -AsJob support for Blob and file upload and download cmdlets + - Get-AzStorageBlobContent + - Set-AzStorageBlobContent + - Get-AzStorageFileContent + - Set-AzStorageFileContent ## Version 1.1.0 * Support Get/Set/Remove Management Policy on a Storage account diff --git a/src/Storage/Storage.Management/Properties/AssemblyInfo.cs b/src/Storage/Storage.Management/Properties/AssemblyInfo.cs index 577940b8dd59..ba27b909d04a 100644 --- a/src/Storage/Storage.Management/Properties/AssemblyInfo.cs +++ b/src/Storage/Storage.Management/Properties/AssemblyInfo.cs @@ -46,5 +46,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.0")] -[assembly: AssemblyFileVersion("1.1.0")] +[assembly: AssemblyVersion("1.2.0")] +[assembly: AssemblyFileVersion("1.2.0")] diff --git a/src/Storage/Storage.Management/help/Get-AzStorageBlobContent.md b/src/Storage/Storage.Management/help/Get-AzStorageBlobContent.md index cb6c0600ba1e..0237ad6382e7 100644 --- a/src/Storage/Storage.Management/help/Get-AzStorageBlobContent.md +++ b/src/Storage/Storage.Management/help/Get-AzStorageBlobContent.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.dll-Help.xml Module Name: Az.Storage ms.assetid: C091D654-E113-4AE0-A6C8-24630D1294A4 @@ -16,14 +16,14 @@ Downloads a storage blob. ### ReceiveManual (Default) ``` Get-AzStorageBlobContent [-Blob] [-Container] [-Destination ] [-CheckMd5] [-Force] - [-Context ] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] + [-AsJob] [-Context ] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] [] ``` ### BlobPipeline ``` -Get-AzStorageBlobContent -CloudBlob [-Destination ] [-CheckMd5] [-Force] +Get-AzStorageBlobContent -CloudBlob [-Destination ] [-CheckMd5] [-Force] [-AsJob] [-Context ] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] [] @@ -32,7 +32,7 @@ Get-AzStorageBlobContent -CloudBlob [-Destination ] [-CheckM ### ContainerPipeline ``` Get-AzStorageBlobContent -CloudBlobContainer [-Blob] [-Destination ] - [-CheckMd5] [-Force] [-Context ] [-ServerTimeoutPerRequest ] + [-CheckMd5] [-Force] [-AsJob] [-Context ] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] [] ``` @@ -66,6 +66,21 @@ This example uses the asterisk wildcard character and the pipeline to find and d ## PARAMETERS +### -AsJob +Run cmdlet in the background. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Blob Specifies the name of the blob to be downloaded. diff --git a/src/Storage/Storage.Management/help/Get-AzStorageFileContent.md b/src/Storage/Storage.Management/help/Get-AzStorageFileContent.md index 59e876a35537..c69a2c150b96 100644 --- a/src/Storage/Storage.Management/help/Get-AzStorageFileContent.md +++ b/src/Storage/Storage.Management/help/Get-AzStorageFileContent.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.dll-Help.xml Module Name: Az.Storage ms.assetid: 6420CBE1-BF9D-493D-BCA8-E8C6688FAF3B @@ -16,7 +16,7 @@ Downloads the contents of a file. ### ShareName (Default) ``` Get-AzStorageFileContent [-ShareName] [-Path] [[-Destination] ] [-CheckMd5] - [-PassThru] [-Force] [-Context ] [-ServerTimeoutPerRequest ] + [-PassThru] [-Force] [-AsJob] [-Context ] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] [] ``` @@ -24,7 +24,7 @@ Get-AzStorageFileContent [-ShareName] [-Path] [[-Destination] ### Share ``` Get-AzStorageFileContent [-Share] [-Path] [[-Destination] ] [-CheckMd5] - [-PassThru] [-Force] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] + [-PassThru] [-Force] [-AsJob] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] [] ``` @@ -32,15 +32,15 @@ Get-AzStorageFileContent [-Share] [-Path] [[-Destinati ### Directory ``` Get-AzStorageFileContent [-Directory] [-Path] [[-Destination] ] - [-CheckMd5] [-PassThru] [-Force] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] - [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] - [] + [-CheckMd5] [-PassThru] [-Force] [-AsJob] [-ServerTimeoutPerRequest ] + [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] + [-WhatIf] [-Confirm] [] ``` ### File ``` Get-AzStorageFileContent [-File] [[-Destination] ] [-CheckMd5] [-PassThru] [-Force] - [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] + [-AsJob] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] [] ``` @@ -67,6 +67,21 @@ This example downloads the files under sample file share ## PARAMETERS +### -AsJob +Run cmdlet in the background. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -CheckMd5 Specifies whether to check the Md5 sum for the downloaded file. diff --git a/src/Storage/Storage.Management/help/New-AzStorageAccountKey.md b/src/Storage/Storage.Management/help/New-AzStorageAccountKey.md index a93969ac16f3..b8c5499c3a6e 100644 --- a/src/Storage/Storage.Management/help/New-AzStorageAccountKey.md +++ b/src/Storage/Storage.Management/help/New-AzStorageAccountKey.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll-Help.xml Module Name: Az.Storage ms.assetid: FDD2CE98-6C7E-4B95-BA5B-B03B6AC6EAEF @@ -25,7 +25,7 @@ The **New-AzStorageAccountKey** cmdlet regenerates a storage key for an Azure St ### Example 1: Regenerate a storage key ``` -PS C:\>New-AzStorageKey -ResourceGroupName "MyResourceGroup" -Name "mystorageaccount" -KeyName "key1" +PS C:\>New-AzStorageAccountKey -ResourceGroupName "MyResourceGroup" -Name "mystorageaccount" -KeyName "key1" ``` This command regenerates a storage key for the specified Storage account. diff --git a/src/Storage/Storage.Management/help/Set-AzStorageBlobContent.md b/src/Storage/Storage.Management/help/Set-AzStorageBlobContent.md index 19511e6027f2..ebce94010c09 100644 --- a/src/Storage/Storage.Management/help/Set-AzStorageBlobContent.md +++ b/src/Storage/Storage.Management/help/Set-AzStorageBlobContent.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.dll-Help.xml Module Name: Az.Storage ms.assetid: F20A5FD3-6EC3-4EFE-988C-75F8583961A4 @@ -17,7 +17,7 @@ Uploads a local file to an Azure Storage blob. ``` Set-AzStorageBlobContent [-File] [-Container] [-Blob ] [-BlobType ] [-Properties ] [-Metadata ] [-PremiumPageBlobTier ] [-Force] - [-Context ] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] + [-AsJob] [-Context ] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] [] ``` @@ -26,7 +26,7 @@ Set-AzStorageBlobContent [-File] [-Container] [-Blob ] ``` Set-AzStorageBlobContent [-File] [-Blob ] -CloudBlobContainer [-BlobType ] [-Properties ] [-Metadata ] - [-PremiumPageBlobTier ] [-Force] [-Context ] + [-PremiumPageBlobTier ] [-Force] [-AsJob] [-Context ] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] [] @@ -35,8 +35,8 @@ Set-AzStorageBlobContent [-File] [-Blob ] -CloudBlobContainer < ### BlobPipeline ``` Set-AzStorageBlobContent [-File] -CloudBlob [-BlobType ] [-Properties ] - [-Metadata ] [-PremiumPageBlobTier ] [-Force] [-Context ] - [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] + [-Metadata ] [-PremiumPageBlobTier ] [-Force] [-AsJob] + [-Context ] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] [] ``` @@ -99,6 +99,21 @@ This command uploads the file that is named ContosoPlanning to the container na ## PARAMETERS +### -AsJob +Run cmdlet in the background. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Blob Specifies the name of a blob. This cmdlet uploads a file to the Azure Storage blob that this parameter specifies. diff --git a/src/Storage/Storage.Management/help/Set-AzStorageFileContent.md b/src/Storage/Storage.Management/help/Set-AzStorageFileContent.md index 6dc54449cbee..7ab6b536739e 100644 --- a/src/Storage/Storage.Management/help/Set-AzStorageFileContent.md +++ b/src/Storage/Storage.Management/help/Set-AzStorageFileContent.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.dll-Help.xml Module Name: Az.Storage ms.assetid: FA98E64B-D589-4653-9ACC-86573FAF4550 @@ -16,7 +16,7 @@ Uploads the contents of a file. ### ShareName (Default) ``` Set-AzStorageFileContent [-ShareName] [-Source] [[-Path] ] [-PassThru] [-Force] - [-Context ] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] + [-AsJob] [-Context ] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] [] ``` @@ -24,7 +24,7 @@ Set-AzStorageFileContent [-ShareName] [-Source] [[-Path] [-Source] [[-Path] ] [-PassThru] [-Force] - [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] + [-AsJob] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] [] ``` @@ -32,7 +32,7 @@ Set-AzStorageFileContent [-Share] [-Source] [[-Path] < ### Directory ``` Set-AzStorageFileContent [-Directory] [-Source] [[-Path] ] [-PassThru] - [-Force] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] + [-Force] [-AsJob] [-ServerTimeoutPerRequest ] [-ClientTimeoutPerRequest ] [-DefaultProfile ] [-ConcurrentTaskCount ] [-WhatIf] [-Confirm] [] ``` @@ -70,6 +70,21 @@ For more information about script blocks, type `Get-Help about_Script_Blocks`. ## PARAMETERS +### -AsJob +Run cmdlet in the background. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ClientTimeoutPerRequest Specifies the client-side time-out interval, in seconds, for one service request. If the previous call fails in the specified interval, this cmdlet retries the request. diff --git a/src/Storage/Storage/Blob/Cmdlet/GetAzureStorageBlobContent.cs b/src/Storage/Storage/Blob/Cmdlet/GetAzureStorageBlobContent.cs index 3c4319f84142..d09ccef6b86c 100644 --- a/src/Storage/Storage/Blob/Cmdlet/GetAzureStorageBlobContent.cs +++ b/src/Storage/Storage/Blob/Cmdlet/GetAzureStorageBlobContent.cs @@ -12,9 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel; using Microsoft.WindowsAzure.Commands.Storage.Common; using Microsoft.WindowsAzure.Commands.Storage.Model.Contract; +using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.Blob; using Microsoft.WindowsAzure.Storage.DataMovement; @@ -76,7 +78,7 @@ public string Container private string ContainerName = String.Empty; [Alias("Path")] - [Parameter(HelpMessage = "File Path")] + [Parameter(HelpMessage = "File Path.")] public string Destination { get { return FileName; } @@ -253,7 +255,7 @@ internal void GetBlobContent(CloudBlob blob, string fileName, bool isValidBlob = /// full file path if file path is valid, otherwise throw an exception internal string GetFullReceiveFilePath(string fileName, string blobName, DateTimeOffset? snapshotTime) { - String filePath = Path.Combine(CurrentPath(), fileName); + String filePath = fileName; fileName = Path.GetFileName(filePath); String dirPath = Path.GetDirectoryName(filePath); @@ -280,12 +282,33 @@ internal string GetFullReceiveFilePath(string fileName, string blobName, DateTim return filePath; } + protected override void ProcessRecord() + { + try + { + FileName = GetUnresolvedProviderPathFromPSPath(FileName); + Validate.ValidateInternetConnection(); + InitChannelCurrentSubscription(); + this.ExecuteSynchronouslyOrAsJob(); + } + catch (Exception ex) when (!IsTerminatingError(ex)) + { + WriteExceptionError(ex); + } + } + + /// /// execute command /// [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] public override void ExecuteCmdlet() { + if (AsJob.IsPresent) + { + DoBeginProcessing(); + } + switch (ParameterSetName) { case BlobParameterSet: @@ -309,6 +332,11 @@ public override void ExecuteCmdlet() } break; } + + if (AsJob.IsPresent) + { + DoEndProcessing(); + } } } } diff --git a/src/Storage/Storage/Blob/Cmdlet/SetAzureStorageBlobContent.cs b/src/Storage/Storage/Blob/Cmdlet/SetAzureStorageBlobContent.cs index b246fb0f5e46..9daa0a1772c2 100644 --- a/src/Storage/Storage/Blob/Cmdlet/SetAzureStorageBlobContent.cs +++ b/src/Storage/Storage/Blob/Cmdlet/SetAzureStorageBlobContent.cs @@ -26,6 +26,8 @@ using System.Management.Automation; using System.Threading.Tasks; using StorageBlob = Microsoft.WindowsAzure.Storage.Blob; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using Microsoft.WindowsAzure.Commands.Common; namespace Microsoft.WindowsAzure.Commands.Storage.Blob { @@ -67,11 +69,11 @@ public class SetAzureBlobContentCommand : StorageDataMovementCmdletBase private const string AppendBlobType = "Append"; [Alias("FullName")] - [Parameter(Position = 0, Mandatory = true, HelpMessage = "file Path", + [Parameter(Position = 0, Mandatory = true, HelpMessage = "file Path.", ValueFromPipelineByPropertyName = true, ParameterSetName = ManualParameterSet)] - [Parameter(Position = 0, Mandatory = true, HelpMessage = "file Path", + [Parameter(Position = 0, Mandatory = true, HelpMessage = "file Path.", ParameterSetName = ContainerParameterSet)] - [Parameter(Position = 0, Mandatory = true, HelpMessage = "file Path", + [Parameter(Position = 0, Mandatory = true, HelpMessage = "file Path.", ParameterSetName = BlobParameterSet)] public string File { @@ -169,7 +171,7 @@ public PremiumPageBlobTier PremiumPageBlobTier private PremiumPageBlobTier? pageBlobTier = null; private BlobUploadRequestQueue UploadRequests = new BlobUploadRequestQueue(); - + /// /// Initializes a new instance of the SetAzureBlobContentCommand class. /// @@ -262,9 +264,7 @@ internal string GetFullSendFilePath(string fileName) throw new ArgumentException(Resources.FileNameCannotEmpty); } - String filePath = Path.Combine(CurrentPath(), fileName); - - return filePath; + return fileName; } /// @@ -315,6 +315,14 @@ internal void SetAzureBlobContent(string fileName, string blobName) } protected override void EndProcessing() + { + if (!AsJob.IsPresent) + { + DoEndProcessing(); + } + } + + protected override void DoEndProcessing() { while (!UploadRequests.IsEmpty()) { @@ -324,7 +332,7 @@ protected override void EndProcessing() RunTask(taskGenerator); } - base.EndProcessing(); + base.DoEndProcessing(); } //only support the common blob properties for block blob and page blob @@ -486,12 +494,39 @@ protected override void OnTaskSuccessful(DataMovementUserData data) } } + protected override void BeginProcessing() + { + if (!AsJob.IsPresent) + { + DoBeginProcessing(); + } + } + + protected override void ProcessRecord() + { + try + { + ResolvedFileName = this.GetUnresolvedProviderPathFromPSPath(string.IsNullOrWhiteSpace(this.FileName) ? "." : this.FileName); + Validate.ValidateInternetConnection(); + InitChannelCurrentSubscription(); + this.ExecuteSynchronouslyOrAsJob(); + } + catch (Exception ex) when (!IsTerminatingError(ex)) + { + WriteExceptionError(ex); + } + } + /// /// execute command /// public override void ExecuteCmdlet() { - FileName = ResolveUserPath(FileName); + if (AsJob.IsPresent) + { + DoBeginProcessing(); + } + ValidateBlobTier(string.Equals(blobType, PageBlobType, StringComparison.InvariantCultureIgnoreCase)? StorageBlob.BlobType.PageBlob : StorageBlob.BlobType.Unspecified, pageBlobTier); @@ -513,7 +548,7 @@ public override void ExecuteCmdlet() case ContainerParameterSet: if (ShouldProcess(BlobName, VerbsCommon.Set)) { - SetAzureBlobContent(FileName, BlobName); + SetAzureBlobContent(ResolvedFileName, BlobName); containerName = CloudBlobContainer.Name; UploadRequests.SetDestinationContainer(Channel, containerName); } @@ -523,7 +558,7 @@ public override void ExecuteCmdlet() case BlobParameterSet: if (ShouldProcess(CloudBlob.Name, VerbsCommon.Set)) { - SetAzureBlobContent(FileName, CloudBlob.Name); + SetAzureBlobContent(ResolvedFileName, CloudBlob.Name); containerName = CloudBlob.Container.Name; UploadRequests.SetDestinationContainer(Channel, containerName); } @@ -534,13 +569,18 @@ public override void ExecuteCmdlet() default: if (ShouldProcess(BlobName, VerbsCommon.Set)) { - SetAzureBlobContent(FileName, BlobName); + SetAzureBlobContent(ResolvedFileName, BlobName); containerName = ContainerName; UploadRequests.SetDestinationContainer(Channel, containerName); } break; } + + if (AsJob.IsPresent) + { + DoEndProcessing(); + } } } } diff --git a/src/Storage/Storage/Blob/Cmdlet/StartAzureStorageBlobCopy.cs b/src/Storage/Storage/Blob/Cmdlet/StartAzureStorageBlobCopy.cs index 957d1bccd34b..fdcd450d9abc 100644 --- a/src/Storage/Storage/Blob/Cmdlet/StartAzureStorageBlobCopy.cs +++ b/src/Storage/Storage/Blob/Cmdlet/StartAzureStorageBlobCopy.cs @@ -215,6 +215,9 @@ public PremiumPageBlobTier PremiumPageBlobTier [Parameter(HelpMessage = "Destination Storage context object", Mandatory = false)] public IStorageContext DestContext { get; set; } + // Overwrite the useless parameter + public override SwitchParameter AsJob { get; set; } + private bool skipSourceChannelInit; /// diff --git a/src/Storage/Storage/Blob/StorageDataMovementCmdletBase.cs b/src/Storage/Storage/Blob/StorageDataMovementCmdletBase.cs index 0261c4538bdd..6915d7b45c91 100644 --- a/src/Storage/Storage/Blob/StorageDataMovementCmdletBase.cs +++ b/src/Storage/Storage/Blob/StorageDataMovementCmdletBase.cs @@ -12,8 +12,6 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System.Security.Cryptography; - namespace Microsoft.WindowsAzure.Commands.Storage.Blob { using Microsoft.WindowsAzure.Commands.Storage.Common; @@ -22,6 +20,7 @@ namespace Microsoft.WindowsAzure.Commands.Storage.Blob using System.Globalization; using System.Management.Automation; using System.Threading.Tasks; + using OpContext = Microsoft.WindowsAzure.Storage.OperationContext; public class StorageDataMovementCmdletBase : StorageCloudBlobCmdletBase, IDisposable { @@ -43,6 +42,11 @@ public SwitchParameter Force protected bool overwrite; + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] + public virtual SwitchParameter AsJob { get; set; } + + public string ResolvedFileName { get; set; } + /// /// Confirm the overwrite operation /// @@ -78,12 +82,31 @@ protected virtual void OnTaskSuccessful(DataMovementUserData data) /// protected override void BeginProcessing() { - base.BeginProcessing(); + DoBeginProcessing(); + } + + protected virtual void DoBeginProcessing() + { + CmdletOperationContext.Init(); + CmdletCancellationToken = _cancellationTokenSource.Token; + WriteDebugLog(String.Format(Resources.InitOperationContextLog, GetType().Name, CmdletOperationContext.ClientRequestId)); + + if (_enableMultiThread) + { + SetUpMultiThreadEnvironment(); + } + + OpContext.GlobalSendingRequest += + (sender, args) => + { + //https://github.com/Azure/azure-storage-net/issues/658 + }; + OutputStream.ConfirmWriter = (s1, s2, s3) => ShouldContinue(s2, s3); this.TransferManager = TransferManagerFactory.CreateTransferManager(this.GetCmdletConcurrency()); } - + protected SingleTransferContext GetTransferContext(DataMovementUserData userData) { SingleTransferContext transferContext = new SingleTransferContext(); @@ -112,6 +135,14 @@ protected SingleTransferContext GetTransferContext(DataMovementUserData userData } protected override void EndProcessing() + { + if (!AsJob.IsPresent) + { + DoEndProcessing(); + } + } + + protected virtual void DoEndProcessing() { try { diff --git a/src/Storage/Storage/Common/StorageCloudCmdletBase.cs b/src/Storage/Storage/Common/StorageCloudCmdletBase.cs index 8bdd33b73ddc..e3772aa69ed9 100644 --- a/src/Storage/Storage/Common/StorageCloudCmdletBase.cs +++ b/src/Storage/Storage/Common/StorageCloudCmdletBase.cs @@ -140,7 +140,7 @@ protected virtual T CreateChannel() /// /// Cancellation Token Source /// - private readonly CancellationTokenSource _cancellationTokenSource = new CancellationTokenSource(); + protected readonly CancellationTokenSource _cancellationTokenSource = new CancellationTokenSource(); protected CancellationToken CmdletCancellationToken; /// @@ -158,7 +158,7 @@ protected bool EnableMultiThread get { return _enableMultiThread; } set { _enableMultiThread = value; } } - private bool _enableMultiThread = true; + protected bool _enableMultiThread = true; internal TaskOutputStream OutputStream; @@ -620,10 +620,6 @@ protected override void BeginProcessing() (sender, args) => { //https://github.com/Azure/azure-storage-net/issues/658 -// TODO: Remove IfDef code -#if !NETSTANDARD - args.Request.UserAgent = Microsoft.WindowsAzure.Storage.Shared.Protocol.Constants.HeaderConstants.UserAgent + " " + ApiConstants.UserAgentHeaderValue; -#endif }; base.BeginProcessing(); diff --git a/src/Storage/Storage/File/Cmdlet/GetAzureStorageFileContent.cs b/src/Storage/Storage/File/Cmdlet/GetAzureStorageFileContent.cs index 2df430335730..cfd9866eb95f 100644 --- a/src/Storage/Storage/File/Cmdlet/GetAzureStorageFileContent.cs +++ b/src/Storage/Storage/File/Cmdlet/GetAzureStorageFileContent.cs @@ -19,8 +19,11 @@ namespace Microsoft.WindowsAzure.Commands.Storage.File.Cmdlet { + using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.Storage.Common; + using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.WindowsAzure.Storage.DataMovement; + using System; using LocalConstants = Microsoft.WindowsAzure.Commands.Storage.File.Constants; using LocalDirectory = System.IO.Directory; using LocalPath = System.IO.Path; @@ -111,8 +114,29 @@ public SwitchParameter CheckMd5 [Parameter(HelpMessage = "Returns an object representing the downloaded cloud file. By default, this cmdlet does not generate any output.")] public SwitchParameter PassThru { get; set; } + protected override void ProcessRecord() + { + try + { + Destination = this.GetUnresolvedProviderPathFromPSPath( + string.IsNullOrWhiteSpace(Destination) ? "." : Destination); + Validate.ValidateInternetConnection(); + InitChannelCurrentSubscription(); + this.ExecuteSynchronouslyOrAsJob(); + } + catch (Exception ex) when (!IsTerminatingError(ex)) + { + WriteExceptionError(ex); + } + } + public override void ExecuteCmdlet() { + if (AsJob.IsPresent) + { + DoBeginProcessing(); + } + CloudFile fileToBeDownloaded; string[] path = NamingUtil.ValidatePath(this.Path, true); switch (this.ParameterSetName) @@ -138,9 +162,7 @@ public override void ExecuteCmdlet() throw new PSArgumentException(string.Format(CultureInfo.InvariantCulture, "Invalid parameter set name: {0}", this.ParameterSetName)); } - string resolvedDestination = this.GetUnresolvedProviderPathFromPSPath( - string.IsNullOrWhiteSpace(this.Destination) ? "." : this.Destination); - + string resolvedDestination = this.Destination; FileMode mode = this.Force ? FileMode.Create : FileMode.CreateNew; string targetFile; if (LocalDirectory.Exists(resolvedDestination)) @@ -193,6 +215,11 @@ await DataMovementTransferHelper.DoTransfer(() => } }); } + + if (AsJob.IsPresent) + { + DoEndProcessing(); + } } } } diff --git a/src/Storage/Storage/File/Cmdlet/SetAzureStorageFileContent.cs b/src/Storage/Storage/File/Cmdlet/SetAzureStorageFileContent.cs index 90c8e28d1d7e..bae794678dd2 100644 --- a/src/Storage/Storage/File/Cmdlet/SetAzureStorageFileContent.cs +++ b/src/Storage/Storage/File/Cmdlet/SetAzureStorageFileContent.cs @@ -14,9 +14,12 @@ namespace Microsoft.WindowsAzure.Commands.Storage.File.Cmdlet { + using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.Storage.Common; + using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.File; + using System; using System.Globalization; using System.IO; using System.Management.Automation; @@ -71,10 +74,30 @@ public class SetAzureStorageFileContent : StorageFileDataManagementCmdletBase [Parameter(HelpMessage = "Returns an object representing the downloaded cloud file. By default, this cmdlet does not generate any output.")] public SwitchParameter PassThru { get; set; } + protected override void ProcessRecord() + { + try + { + Source = this.GetUnresolvedProviderPathFromPSPath(Source); + Validate.ValidateInternetConnection(); + InitChannelCurrentSubscription(); + this.ExecuteSynchronouslyOrAsJob(); + } + catch (Exception ex) when (!IsTerminatingError(ex)) + { + WriteExceptionError(ex); + } + } + public override void ExecuteCmdlet() { - // Step 1: Validate source file. - FileInfo localFile = new FileInfo(this.GetUnresolvedProviderPathFromPSPath(this.Source)); + if (AsJob.IsPresent) + { + DoBeginProcessing(); + } + + string filePath = this.Source; + FileInfo localFile = new FileInfo(filePath); if (!localFile.Exists) { throw new FileNotFoundException(string.Format(CultureInfo.CurrentCulture, Resources.SourceFileNotFound, this.Source)); @@ -119,6 +142,11 @@ await DataMovementTransferHelper.DoTransfer(() => } }); } + + if (AsJob.IsPresent) + { + DoEndProcessing(); + } } private async Task BuildCloudFileInstanceFromPathAsync(string defaultFileName, string[] path, bool pathIsDirectory) diff --git a/src/Storage/Storage/File/Cmdlet/StartAzureStorageFileCopy.cs b/src/Storage/Storage/File/Cmdlet/StartAzureStorageFileCopy.cs index ab3f3a94a1cd..361bfe456362 100644 --- a/src/Storage/Storage/File/Cmdlet/StartAzureStorageFileCopy.cs +++ b/src/Storage/Storage/File/Cmdlet/StartAzureStorageFileCopy.cs @@ -132,6 +132,9 @@ public class StartAzureStorageFileCopyCommand : StorageFileDataManagementCmdletB [Parameter(HelpMessage = "Destination Storage context object", ParameterSetName = UriFilePathParameterSet)] public IStorageContext DestContext { get; set; } + // Overwrite the useless parameter + public override SwitchParameter AsJob { get; set; } + private IStorageBlobManagement blobChannel = null; private BlobToAzureFileNameResolver nameResolver = new BlobToAzureFileNameResolver(() => NameUtil.MaxFileNameLength); diff --git a/src/Storage/Storage/File/StorageFileDataManagementCmdletBase.cs b/src/Storage/Storage/File/StorageFileDataManagementCmdletBase.cs index 3f058eb1a752..df42c3bb9ec4 100644 --- a/src/Storage/Storage/File/StorageFileDataManagementCmdletBase.cs +++ b/src/Storage/Storage/File/StorageFileDataManagementCmdletBase.cs @@ -16,8 +16,11 @@ namespace Microsoft.WindowsAzure.Commands.Storage.File { + using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.Storage.Common; + using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.WindowsAzure.Storage.DataMovement; + using System; using System.Globalization; using System.Management.Automation; using System.Threading.Tasks; @@ -38,6 +41,7 @@ protected ITransferManager TransferManager private set; } + /// /// Gets or sets whether to force overwrite the existing file. /// @@ -48,6 +52,9 @@ public SwitchParameter Force set; } + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] + public virtual SwitchParameter AsJob { get; set; } + /// /// Confirm the overwrite operation /// @@ -71,6 +78,14 @@ protected async Task ConfirmOverwriteAsync(object source, object destinati } protected override void BeginProcessing() + { + if (!AsJob.IsPresent) + { + DoBeginProcessing(); + } + } + + protected void DoBeginProcessing() { base.BeginProcessing(); @@ -79,6 +94,14 @@ protected override void BeginProcessing() } protected override void EndProcessing() + { + if (!AsJob.IsPresent) + { + DoEndProcessing(); + } + } + + protected void DoEndProcessing() { try { diff --git a/src/Storage/Storage/Resources.Designer.cs b/src/Storage/Storage/Resources.Designer.cs index 0492beef624b..e4eab4c249ce 100644 --- a/src/Storage/Storage/Resources.Designer.cs +++ b/src/Storage/Storage/Resources.Designer.cs @@ -995,7 +995,7 @@ internal static string InvalidPageBlobSize { return ResourceManager.GetString("InvalidPageBlobSize", resourceCulture); } } - + /// /// Looks up a localized string similar to Queue name '{0}' is invalid. Valid names start and end with a lower case letter or a number and has in between a lower case letter, number or dash with no consecutive dashes and is 3 through 63 characters long.. /// diff --git a/src/StorageSync/StorageSync/Az.StorageSync.psd1 b/src/StorageSync/StorageSync/Az.StorageSync.psd1 index 262b4d421d3e..47d77254b82b 100644 --- a/src/StorageSync/StorageSync/Az.StorageSync.psd1 +++ b/src/StorageSync/StorageSync/Az.StorageSync.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.StorageSync.dll', diff --git a/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 b/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 index 663daf75b6ef..10bba5a93b36 100644 --- a/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 +++ b/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.StreamAnalytics.dll' diff --git a/src/Subscription/Subscription/Az.Subscription.psd1 b/src/Subscription/Subscription/Az.Subscription.psd1 index c3735e5e6e4b..8697697c70b7 100644 --- a/src/Subscription/Subscription/Az.Subscription.psd1 +++ b/src/Subscription/Subscription/Az.Subscription.psd1 @@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Subscription.dll' diff --git a/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 b/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 index b32a93429688..2e5a081e77d0 100644 --- a/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 +++ b/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.TrafficManager.dll' diff --git a/src/Websites/Websites/Az.Websites.psd1 b/src/Websites/Websites/Az.Websites.psd1 index b8d1f6d41753..dd570c5efe15 100644 --- a/src/Websites/Websites/Az.Websites.psd1 +++ b/src/Websites/Websites/Az.Websites.psd1 @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = '.\Microsoft.Azure.Management.Websites.dll' @@ -76,18 +76,18 @@ FunctionsToExport = @() # 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 = 'Get-AzAppServicePlan', 'Set-AzAppServicePlan', 'New-AzAppServicePlan', 'Remove-AzAppServicePlan', 'Get-AzWebAppSlot', - 'Get-AzWebAppSlotConfigName', 'Get-AzWebAppSlotMetrics', + 'Get-AzWebAppSlotConfigName', 'Get-AzWebAppSlotMetric', 'Get-AzWebAppSlotPublishingProfile', 'New-AzWebAppSlot', 'Remove-AzWebAppSlot', 'Reset-AzWebAppSlotPublishingProfile', 'Restart-AzWebAppSlot', 'Set-AzWebAppSlot', 'Set-AzWebAppSlotConfigName', 'Start-AzWebAppSlot', 'Stop-AzWebAppSlot', 'Switch-AzWebAppSlot', 'New-AzWebAppDatabaseBackupSetting', 'Restore-AzWebAppBackup', - 'Get-AzAppServicePlanMetrics', 'Get-AzWebAppCertificate', + 'Get-AzAppServicePlanMetric', 'Get-AzWebAppCertificate', 'Get-AzWebAppSSLBinding', 'New-AzWebAppSSLBinding', 'Remove-AzWebAppSSLBinding', 'Edit-AzWebAppBackupConfiguration', 'Get-AzWebAppBackup', 'Get-AzWebAppBackupConfiguration', - 'Get-AzWebAppBackupList', 'Get-AzWebAppMetrics', + 'Get-AzWebAppBackupList', 'Get-AzWebAppMetric', 'Get-AzWebAppPublishingProfile', 'Get-AzWebApp', 'New-AzWebAppBackup', 'Remove-AzWebApp', 'New-AzWebApp', 'Remove-AzWebAppBackup', 'Reset-AzWebAppPublishingProfile', 'Restart-AzWebApp', 'Set-AzWebApp', @@ -103,7 +103,7 @@ CmdletsToExport = 'Get-AzAppServicePlan', 'Set-AzAppServicePlan', # VariablesToExport = @() # Aliases 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 aliases to export. -AliasesToExport = 'Swap-AzWebAppSlot' +AliasesToExport = 'Swap-AzWebAppSlot', 'Get-AzWebAppSlotMetrics', 'Get-AzAppServicePlanMetrics', 'Get-AzWebAppMetrics' # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md index b19c73aca300..c0564e388844 100644 --- a/src/Websites/Websites/ChangeLog.md +++ b/src/Websites/Websites/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated cmdlets with plural nouns to singular, and deprecated plural names. ## Version 1.1.2 * Fix ARM template bug that breaks cloning all slots using `New-AzWebApp -IncludeSourceWebAppSlots` diff --git a/src/Websites/Websites/Cmdlets/AppServicePlans/GetAzureAppServicePlanMetrics.cs b/src/Websites/Websites/Cmdlets/AppServicePlans/GetAzureAppServicePlanMetrics.cs index 04f067b8a12f..199d35796b96 100644 --- a/src/Websites/Websites/Cmdlets/AppServicePlans/GetAzureAppServicePlanMetrics.cs +++ b/src/Websites/Websites/Cmdlets/AppServicePlans/GetAzureAppServicePlanMetrics.cs @@ -14,6 +14,7 @@ using Microsoft.Azure.Management.WebSites.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System; using System.Management.Automation; @@ -22,8 +23,10 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps /// /// this commandlet will let you get Azure servce plan metrics /// - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AppServicePlanMetrics")] + [GenericBreakingChange("Get-AzAppServicePlanMetrics alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AppServicePlanMetric")] [OutputType(typeof(ResourceMetric))] + [Alias("Get-AzAppServicePlanMetrics")] public class GetAzureAppServicePlanMetricsCmdlet : AppServicePlanBaseCmdlet { [Parameter(Position = 2, Mandatory = true, HelpMessage = "Names of web app metrics")] diff --git a/src/Websites/Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlotMetrics.cs b/src/Websites/Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlotMetrics.cs index 3aed36df9a6d..58a78f366ea7 100644 --- a/src/Websites/Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlotMetrics.cs +++ b/src/Websites/Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlotMetrics.cs @@ -14,6 +14,7 @@ using Microsoft.Azure.Management.WebSites.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System; using System.Management.Automation; @@ -22,7 +23,9 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots /// /// this commandlet will let you get Azure Web App slot metrics /// - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppSlotMetrics")] + [GenericBreakingChange("Get-AzWebAppSlotMetrics alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppSlotMetric")] + [Alias("Get-AzWebAppSlotMetrics")] [OutputType(typeof(ResourceMetric))] public class GetAzureWebAppSlotMetricsCmdlet : WebAppSlotBaseCmdlet { diff --git a/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebAppMetrics.cs b/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebAppMetrics.cs index 3afebfee8f66..ee9c947c3b62 100644 --- a/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebAppMetrics.cs +++ b/src/Websites/Websites/Cmdlets/WebApps/GetAzureWebAppMetrics.cs @@ -14,6 +14,7 @@ using Microsoft.Azure.Management.WebSites.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System; using System.Management.Automation; @@ -22,8 +23,10 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps /// /// this commandlet will let you get Azure Web App metrics /// - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppMetrics")] + [GenericBreakingChange("Get-AzWebAppMetrics alias will be removed in an upcoming breaking change release", "2.0.0")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppMetric")] [OutputType(typeof(ResourceMetric))] + [Alias("Get-AzWebAppMetrics")] public class GetAzureWebAppMetricsCmdlet : WebAppBaseCmdlet { [Parameter(Position = 2, Mandatory = true, HelpMessage = "Names of web app metrics")] diff --git a/src/Websites/Websites/help/Az.Websites.md b/src/Websites/Websites/help/Az.Websites.md index 3cae94671887..4d7fc4e52d39 100644 --- a/src/Websites/Websites/help/Az.Websites.md +++ b/src/Websites/Websites/help/Az.Websites.md @@ -20,7 +20,7 @@ Opens a remote PowerShell session into the windows container specified in a give ### [Get-AzAppServicePlan](Get-AzAppServicePlan.md) Gets an Azure App Service plan in the specified resource group. -### [Get-AzAppServicePlanMetrics](Get-AzAppServicePlanMetrics.md) +### [Get-AzAppServicePlanMetric](Get-AzAppServicePlanMetric.md) ### [Get-AzDeletedWebApp](Get-AzDeletedWebApp.md) @@ -44,7 +44,7 @@ Gets an Azure Web App certificate. ### [Get-AzWebAppContainerContinuousDeploymentUrl](Get-AzWebAppContainerContinuousDeploymentUrl.md) Get-AzWebAppContainerContinuousDeploymentUrl will return container continuous deployment url -### [Get-AzWebAppMetrics](Get-AzWebAppMetrics.md) +### [Get-AzWebAppMetric](Get-AzWebAppMetric.md) Gets Azure Web App metrics. ### [Get-AzWebAppPublishingProfile](Get-AzWebAppPublishingProfile.md) @@ -56,7 +56,7 @@ Gets an Azure Web App slot. ### [Get-AzWebAppSlotConfigName](Get-AzWebAppSlotConfigName.md) Get the list of Web App Slot Config names -### [Get-AzWebAppSlotMetrics](Get-AzWebAppSlotMetrics.md) +### [Get-AzWebAppSlotMetric](Get-AzWebAppSlotMetric.md) Gets metrics for an Azure Web App slot. ### [Get-AzWebAppSlotPublishingProfile](Get-AzWebAppSlotPublishingProfile.md) diff --git a/src/Websites/Websites/help/Get-AzAppServicePlanMetrics.md b/src/Websites/Websites/help/Get-AzAppServicePlanMetric.md similarity index 86% rename from src/Websites/Websites/help/Get-AzAppServicePlanMetrics.md rename to src/Websites/Websites/help/Get-AzAppServicePlanMetric.md index 7d3c258cc5d0..be97a68137b4 100644 --- a/src/Websites/Websites/help/Get-AzAppServicePlanMetrics.md +++ b/src/Websites/Websites/help/Get-AzAppServicePlanMetric.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.Websites.dll-Help.xml Module Name: Az.Websites ms.assetid: 0AC0C4F9-4138-49EA-88CB-DC220DE7E9F4 -online version: https://docs.microsoft.com/en-us/powershell/module/az.websites/get-azappserviceplanmetrics +online version: https://docs.microsoft.com/en-us/powershell/module/az.websites/get-azappserviceplanmetric schema: 2.0.0 --- -# Get-AzAppServicePlanMetrics +# Get-AzAppServicePlanMetric ## SYNOPSIS @@ -14,26 +14,26 @@ schema: 2.0.0 ### S1 ``` -Get-AzAppServicePlanMetrics [-Metrics] [-StartTime] [[-EndTime] ] +Get-AzAppServicePlanMetric [-Metrics] [-StartTime] [[-EndTime] ] [-Granularity] [-InstanceDetails] [-ResourceGroupName] [-Name] [-DefaultProfile ] [] ``` ### S2 ``` -Get-AzAppServicePlanMetrics [-Metrics] [-StartTime] [[-EndTime] ] +Get-AzAppServicePlanMetric [-Metrics] [-StartTime] [[-EndTime] ] [-Granularity] [-InstanceDetails] [-AppServicePlan] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzAppServicePlanMetrics** gets App Service Plan metrics. +The **Get-AzAppServicePlanMetric** gets App Service Plan metrics. ## EXAMPLES ### 1: ``` -PS C:\>Get-AzAppServicePlanMetrics -ResourceGroupName "Default-Web-WestUS" -Name "ContosoAppServPlan" -StartTime 2016-11-30T22:00:00Z -EndTime 2016-11-30T22:30:00Z -Granularity PT1M -Metrics "CPU Percentage" +PS C:\>Get-AzAppServicePlanMetric -ResourceGroupName "Default-Web-WestUS" -Name "ContosoAppServPlan" -StartTime 2016-11-30T22:00:00Z -EndTime 2016-11-30T22:30:00Z -Granularity PT1M -Metrics "CPU Percentage" ``` This command gets CPU percentage of the App Service Plan diff --git a/src/Websites/Websites/help/Get-AzWebAppMetrics.md b/src/Websites/Websites/help/Get-AzWebAppMetric.md similarity index 88% rename from src/Websites/Websites/help/Get-AzWebAppMetrics.md rename to src/Websites/Websites/help/Get-AzWebAppMetric.md index 7cc7a831d77e..b3c575842b92 100644 --- a/src/Websites/Websites/help/Get-AzWebAppMetrics.md +++ b/src/Websites/Websites/help/Get-AzWebAppMetric.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.Websites.dll-Help.xml Module Name: Az.Websites ms.assetid: 513BE097-EB4A-4C49-9F7F-42A2BED09022 -online version: https://docs.microsoft.com/en-us/powershell/module/az.websites/get-azwebappmetrics +online version: https://docs.microsoft.com/en-us/powershell/module/az.websites/get-azwebappmetric schema: 2.0.0 --- -# Get-AzWebAppMetrics +# Get-AzWebAppMetric ## SYNOPSIS Gets Azure Web App metrics. @@ -15,26 +15,26 @@ Gets Azure Web App metrics. ### S1 ``` -Get-AzWebAppMetrics [-Metrics] [-StartTime] [[-EndTime] ] +Get-AzWebAppMetric [-Metrics] [-StartTime] [[-EndTime] ] [-Granularity] [-InstanceDetails] [-ResourceGroupName] [-Name] [-DefaultProfile ] [] ``` ### S2 ``` -Get-AzWebAppMetrics [-Metrics] [-StartTime] [[-EndTime] ] +Get-AzWebAppMetric [-Metrics] [-StartTime] [[-EndTime] ] [-Granularity] [-InstanceDetails] [-WebApp] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzWebAppMetrics** gets Web App metrics. +The **Get-AzWebAppMetric** gets Web App metrics. ## EXAMPLES ### Example 1 ``` -PS C:\> Get-AzAppServicePlanMetrics -ResourceGroupName "Default-Web-WestUS" -Name "ContosoWebApp" -StartTime 2016-11-30T22:00:00Z -EndTime 2016-11-30T22:30:00Z -Granularity PT1M -Metrics "Requests" +PS C:\> Get-AzAppServicePlanMetric -ResourceGroupName "Default-Web-WestUS" -Name "ContosoWebApp" -StartTime 2016-11-30T22:00:00Z -EndTime 2016-11-30T22:30:00Z -Granularity PT1M -Metrics "Requests" ``` This command gets Requests of the Web App ContosoWebApp diff --git a/src/Websites/Websites/help/Get-AzWebAppSlotMetrics.md b/src/Websites/Websites/help/Get-AzWebAppSlotMetric.md similarity index 86% rename from src/Websites/Websites/help/Get-AzWebAppSlotMetrics.md rename to src/Websites/Websites/help/Get-AzWebAppSlotMetric.md index e59955903ba2..7e3b451392a4 100644 --- a/src/Websites/Websites/help/Get-AzWebAppSlotMetrics.md +++ b/src/Websites/Websites/help/Get-AzWebAppSlotMetric.md @@ -2,11 +2,11 @@ external help file: Microsoft.Azure.PowerShell.Cmdlets.Websites.dll-Help.xml Module Name: Az.Websites ms.assetid: 3BCEADF3-15DC-4033-A94A-4C8B4F5E7340 -online version: https://docs.microsoft.com/en-us/powershell/module/az.websites/get-azwebappslotmetrics +online version: https://docs.microsoft.com/en-us/powershell/module/az.websites/get-azwebappslotmetric schema: 2.0.0 --- -# Get-AzWebAppSlotMetrics +# Get-AzWebAppSlotMetric ## SYNOPSIS Gets metrics for an Azure Web App slot. @@ -15,26 +15,26 @@ Gets metrics for an Azure Web App slot. ### S1 ``` -Get-AzWebAppSlotMetrics [-Metrics] [-StartTime] [[-EndTime] ] +Get-AzWebAppSlotMetric [-Metrics] [-StartTime] [[-EndTime] ] [-Granularity] [-InstanceDetails] [-ResourceGroupName] [-Name] [-Slot] [-DefaultProfile ] [] ``` ### S2 ``` -Get-AzWebAppSlotMetrics [-Metrics] [-StartTime] [[-EndTime] ] +Get-AzWebAppSlotMetric [-Metrics] [-StartTime] [[-EndTime] ] [-Granularity] [-InstanceDetails] [-WebApp] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzWebAppSlotMetrics** gets Web App metrics for the specified slot. +The **Get-AzWebAppSlotMetric** gets Web App metrics for the specified slot. ## EXAMPLES ### Example 1 ``` -PS C:\> Get-AzWebAppSlotMetrics -ResourceGroupName "Default-Web-WestUS" -Name "ContosoWebApp" -StartTime 2016-11-30T22:00:00Z -EndTime 2016-11-30T22:30:00Z -Granularity PT1M -Metrics ["Requests"] +PS C:\> Get-AzWebAppSlotMetric -ResourceGroupName "Default-Web-WestUS" -Name "ContosoWebApp" -StartTime 2016-11-30T22:00:00Z -EndTime 2016-11-30T22:30:00Z -Granularity PT1M -Metrics ["Requests"] ``` This command gets Request of the specified Web App @@ -209,7 +209,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-AzAppServicePlanMetrics](./Get-AzAppServicePlanMetrics.md) +[Get-AzAppServicePlanMetric](./Get-AzAppServicePlanMetric.md) [Get-AzWebApp](./Get-AzWebApp.md) diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1 index 39fe132676e5..f9a3e3a0eb63 100644 --- a/tools/Az/Az.psd1 +++ b/tools/Az/Az.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/20/2019 +# Generated on: 4/4/2019 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '1.6.0' +ModuleVersion = '1.7.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,20 +53,20 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }, +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.0'; }, @{ModuleName = 'Az.Aks'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.ApiManagement'; RequiredVersion = '1.0.0'; }, @{ModuleName = 'Az.ApplicationInsights'; RequiredVersion = '1.0.0'; }, - @{ModuleName = 'Az.Automation'; RequiredVersion = '1.2.0'; }, + @{ModuleName = 'Az.Automation'; RequiredVersion = '1.2.1'; }, @{ModuleName = 'Az.Batch'; RequiredVersion = '1.0.0'; }, @{ModuleName = 'Az.Billing'; RequiredVersion = '1.0.0'; }, @{ModuleName = 'Az.Cdn'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Az.Compute'; RequiredVersion = '1.6.0'; }, - @{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '1.0.0'; }, + @{ModuleName = 'Az.Compute'; RequiredVersion = '1.7.0'; }, + @{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '1.0.1'; }, @{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.DataLakeAnalytics'; RequiredVersion = '1.0.0'; }, @{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Az.DevTestLabs'; RequiredVersion = '1.0.0'; }, @@ -89,12 +89,12 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.4.0'; }, @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '1.2.0'; }, @{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.0.0'; }, @{ModuleName = 'Az.Relay'; RequiredVersion = '1.0.0'; }, - @{ModuleName = 'Az.Resources'; RequiredVersion = '1.2.1'; }, + @{ModuleName = 'Az.Resources'; RequiredVersion = '1.3.0'; }, @{ModuleName = 'Az.ServiceBus'; RequiredVersion = '1.0.0'; }, @{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '1.0.1'; }, @{ModuleName = 'Az.SignalR'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Az.Sql'; RequiredVersion = '1.7.0'; }, - @{ModuleName = 'Az.Storage'; RequiredVersion = '1.1.0'; }, + @{ModuleName = 'Az.Sql'; RequiredVersion = '1.8.0'; }, + @{ModuleName = 'Az.Storage'; RequiredVersion = '1.2.0'; }, @{ModuleName = 'Az.StreamAnalytics'; RequiredVersion = '1.0.0'; }, @{ModuleName = 'Az.TrafficManager'; RequiredVersion = '1.0.1'; }, @{ModuleName = 'Az.Websites'; RequiredVersion = '1.1.2'; }) @@ -153,46 +153,53 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '1.6.0 - March 2019 + ReleaseNotes = '1.7.0 - April 2019 +Az.Accounts +* Updated Add-AzEnvironment and Set-AzEnvironment to accept parameter AzureAnalysisServicesEndpointResourceId + +Az.AnalysisServices +* Using ServiceClient in dataplane cmdlets and removing the original authentication logic +* Making Add-AzureASAccount a wrapper of Connect-AzAccount to avoid a breaking change + Az.Automation -* Azure automation update management change to support the following new features : - * Dynamic grouping - * Pre-Post script - * Reboot Setting +* Fixed New-AzAutomationSoftwareUpdateConfiguration cmdlet bug for Inclusions. Now parameter IncludedKbNumber and IncludedPackageNameMask should work. +* Bug fix for azure automation update management dynamic group Az.Compute -* Fix issue with path resolution in Get-AzVmBootDiagnosticsData -* Update Compute client library to 25.0.0. - -Az.KeyVault -* Added wildcard support to KeyVault cmdlets +* Add HyperVGeneration parameter to New-AzDiskConfig and New-AzSnapshotConfig +* Allow VM creation with galley image from other tenants. -Az.Network -* Add Threat Intelligence support for Azure Firewall -* Add Application Gateway Firewall Policy top level resource and Custom Rules +Az.ContainerInstance +* Fixed issue in the -Command parameter of New-AzContainerGroup which added a trailing empty argument -Az.RecoveryServices -* Added SnapshotRetentionInDays in Azure VM policy to support Instant RP -* Added pipe support for unregister container +Az.DataFactory +* Updated ADF .Net SDK version to 3.0.2 +* Updated Set-AzDataFactoryV2 cmdlet with extra parameters for RepoConfiguration related settings. Az.Resources -* Update wildcard support for Get-AzResource and Get-AzResourceGroup -* Update credentials used when making generic calls to ARM +* Improve handling of providers for ''Get-AzResource'' when providing ''-ResourceId'' or ''-ResourceGroupName'', ''-Name'' and ''-ResourceType'' parameters +* Improve error handling for for ''Test-AzDeployment'' and ''Test-AzResourceGroupDeployment'' + - Handle errors thrown outside of deployment validation and include them in output of command instead + - More information here: https://github.com/Azure/azure-powershell/issues/6856 +* Add ''-IgnoreDynamicParameters'' switch parameter to set of deployment cmdlets to skip prompt in script and job scenarios + - More information here: https://github.com/Azure/azure-powershell/issues/6856 Az.Sql -* changed Threat Detection''s cmdlets param (ExcludeDetectionType) from DetectionType to string[] to make it future proof when new DetectionTypes are added and to support autocomplete as well. +* Support Database Data Classification. Az.Storage -* Support Get/Set/Remove Management Policy on a Storage account - - Set-AzStorageAccountManagementPolicy - - Get-AzStorageAccountManagementPolicy - - Remove-AzStorageAccountManagementPolicy - - Add-AzStorageAccountManagementPolicyAction - - New-AzStorageAccountManagementPolicyFilter - - New-AzStorageAccountManagementPolicyRule - -Az.Websites -* Fix ARM template bug that breaks cloning all slots using ''New-AzWebApp -IncludeSourceWebAppSlots'' +* Report detail error when create Storage context with parameter -UseConnectedAccount, but without login Azure account + - New-AzStorageContext +* Support Manage Blob Service Properties of a specified Storage account with Management plane API + - Update-AzStorageBlobServiceProperty + - Get-AzStorageBlobServiceProperty + - Enable-AzStorageBlobDeleteRetentionPolicy + - Disable-AzStorageBlobDeleteRetentionPolicy +* -AsJob support for Blob and file upload and download cmdlets + - Get-AzStorageBlobContent + - Set-AzStorageBlobContent + - Get-AzStorageFileContent + - Set-AzStorageFileContent ' # Prerelease string of this module diff --git a/tools/CreateMappings_rules.json b/tools/CreateMappings_rules.json index 59698a7ead34..872616e858ac 100644 --- a/tools/CreateMappings_rules.json +++ b/tools/CreateMappings_rules.json @@ -142,10 +142,12 @@ { "regex": "DevSpaces", "group": "DevSpaces", "alias": "DevSpaces" }, { "regex": "SignalR", "alias": "SignalR" }, { "regex": "Search", "alias": "Search" }, + { "regex": "ResourceGraph", "alias": "ResourceGraph" }, { "regex": "Security", "alias": "Security" }, { "regex": "Kusto", "alias": "Kusto" }, { "regex": "Advisor", "alias": "Advisor" }, { "regex": "MixedReality", "group": "Mixed Reality", "alias": "Mixed Reality" }, { "regex": "SpatialAnchors", "group": "Mixed Reality", "alias": "Mixed Reality" }, - { "regex": "Blueprint", "alias": "Blueprint" } + { "regex": "Blueprint", "alias": "Blueprint" }, + { "regex": "DeploymentManager", "alias": "Deployment Manager" } ] diff --git a/tools/HelpGeneration/Exceptions/ValidateHelpIssues.csv b/tools/HelpGeneration/Exceptions/ValidateHelpIssues.csv index b5ceca67eddf..500add5835a7 100644 --- a/tools/HelpGeneration/Exceptions/ValidateHelpIssues.csv +++ b/tools/HelpGeneration/Exceptions/ValidateHelpIssues.csv @@ -9,7 +9,7 @@ Get-AzBatchAccountKeys.md,No examples found Remove-AzBatchJobSchedule.md,No examples found Set-AzBatchJobSchedule.md,No examples found Get-AzCdnCustomDomain.md,No examples found -Get-AzCdnEdgeNodes.md,No examples found +Get-AzCdnEdgeNode.md,No examples found Get-AzCdnEndpoint.md,No examples found Get-AzCdnEndpointNameAvailability.md,No examples found Get-AzCdnEndpointResourceUsage.md,No examples found @@ -125,7 +125,7 @@ Set-AzSqlServerBackupLongTermRetentionVault.md,No examples found Set-AzSqlServerDisasterRecoveryConfiguration.md,No examples found Edit-AzWebAppBackupConfiguration.md,No synopsis found Edit-AzWebAppBackupConfiguration.md,No examples found -Get-AzAppServicePlanMetrics.md,No synopsis found +Get-AzAppServicePlanMetric.md,No synopsis found Get-AzWebAppBackup.md,No synopsis found Get-AzWebAppBackupConfiguration.md,No synopsis found Get-AzWebAppBackupList.md,No synopsis found diff --git a/tools/LocalFeed/Microsoft.Azure.Management.DeploymentManager.0.9.0-preview.nupkg b/tools/LocalFeed/Microsoft.Azure.Management.DeploymentManager.0.9.0-preview.nupkg new file mode 100644 index 000000000000..caa54e3eb8f5 Binary files /dev/null and b/tools/LocalFeed/Microsoft.Azure.Management.DeploymentManager.0.9.0-preview.nupkg differ diff --git a/tools/RunVersionController.ps1 b/tools/RunVersionController.ps1 index 0d74fc63e544..3566919e8f70 100644 --- a/tools/RunVersionController.ps1 +++ b/tools/RunVersionController.ps1 @@ -164,7 +164,7 @@ switch ($PSCmdlet.ParameterSetName) { "ReleaseSingleModule" { - dotnet $PSScriptRoot/../artifacts/VersionController.Netcore.dll $PSScriptRoot/../artifacts/Exceptions $ModuleName + dotnet $PSScriptRoot/../artifacts/VersionController/VersionController.Netcore.dll $PSScriptRoot/../artifacts/VersionController/Exceptions $ModuleName } "ReleaseAz" @@ -178,7 +178,7 @@ switch ($PSCmdlet.ParameterSetName) throw "Please rerun in Administrator mode." } - dotnet $PSScriptRoot/../artifacts/VersionController.Netcore.dll + dotnet $PSScriptRoot/../artifacts/VersionController/VersionController.Netcore.dll Write-Host "Getting local Az information..." -ForegroundColor Yellow $localAz = Test-ModuleManifest -Path "$PSScriptRoot\Az\Az.psd1" diff --git a/tools/StaticAnalysis/Exceptions/Az.Batch/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Batch/SignatureIssues.csv index 3545d555c118..71e8be4b9c45 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Batch/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Batch/SignatureIssues.csv @@ -1,6 +1,5 @@ "AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.RemoveBatchAccountCommand","Remove-AzBatchAccount","1","8600","Cmdlet 'Remove-AzBatchAccount' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.GetBatchAccountKeysCommand","Get-AzBatchAccountKeys","1","8400","Get-AzBatchAccountKeys uses the noun 'AzBatchAccountKeys', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.NewBatchAccountCommand","New-AzBatchAccount","1","8100","New-AzBatchAccount Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.RegenBatchAccountKeyCommand","New-AzBatchAccountKey","1","8100","New-AzBatchAccountKey Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.SetBatchAccountCommand","Set-AzBatchAccount","1","8100","Set-AzBatchAccount Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" @@ -27,7 +26,6 @@ "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.DisableBatchComputeNodeSchedulingCommand","Disable-AzBatchComputeNodeScheduling","1","8600","Cmdlet 'Disable-AzBatchComputeNodeScheduling' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.EnableBatchComputeNodeSchedulingCommand","Enable-AzBatchComputeNodeScheduling","1","8100","Enable-AzBatchComputeNodeScheduling Does not support ShouldProcess but the cmdlet verb Enable indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.EnableBatchComputeNodeSchedulingCommand","Enable-AzBatchComputeNodeScheduling","1","8600","Cmdlet 'Enable-AzBatchComputeNodeScheduling' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.GetBatchComputeNodeRemoteLoginSettingsCommand","Get-AzBatchRemoteLoginSettings","1","8400","Get-AzBatchRemoteLoginSettings uses the noun 'AzBatchRemoteLoginSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.RemoveBatchComputeNodeCommand","Remove-AzBatchComputeNode","1","8600","Cmdlet 'Remove-AzBatchComputeNode' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.RemoveBatchComputeNodeCommand","Remove-AzBatchComputeNode","1","8410","Parameter Ids of cmdlet Remove-AzBatchComputeNode does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.ResetBatchComputeNodeCommand","Reset-AzBatchComputeNode","1","8100","Reset-AzBatchComputeNode Does not support ShouldProcess but the cmdlet verb Reset indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" @@ -67,8 +65,6 @@ "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.DisableBatchAutoScaleCommand","Disable-AzBatchAutoScale","1","8600","Cmdlet 'Disable-AzBatchAutoScale' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.EnableBatchAutoScaleCommand","Enable-AzBatchAutoScale","1","8100","Enable-AzBatchAutoScale Does not support ShouldProcess but the cmdlet verb Enable indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.EnableBatchAutoScaleCommand","Enable-AzBatchAutoScale","1","8600","Cmdlet 'Enable-AzBatchAutoScale' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.GetBatchPoolNodeCountsCommand","Get-AzBatchPoolNodeCounts","1","8400","Get-AzBatchPoolNodeCounts uses the noun 'AzBatchPoolNodeCounts', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.GetBatchPoolUsageMetrics","Get-AzBatchPoolUsageMetrics","1","8400","Get-AzBatchPoolUsageMetrics uses the noun 'AzBatchPoolUsageMetrics', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.NewBatchPoolCommand","New-AzBatchPool","1","8600","Cmdlet 'New-AzBatchPool' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.NewBatchPoolCommand","New-AzBatchPool","1","8410","Parameter TargetDedicatedComputeNodes of cmdlet New-AzBatchPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.NewBatchPoolCommand","New-AzBatchPool","1","8410","Parameter TargetLowPriorityComputeNodes of cmdlet New-AzBatchPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." @@ -87,9 +83,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.StopBatchPoolResizeCommand","Stop-AzBatchPoolResize","1","8100","Stop-AzBatchPoolResize Does not support ShouldProcess but the cmdlet verb Stop indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.StopBatchPoolResizeCommand","Stop-AzBatchPoolResize","1","8600","Cmdlet 'Stop-AzBatchPoolResize' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.TestBatchAutoScaleCommand","Test-AzBatchAutoScale","1","8600","Cmdlet 'Test-AzBatchAutoScale' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.GetBatchLocationQuotasCommand","Get-AzBatchLocationQuotas","1","8400","Get-AzBatchLocationQuotas uses the noun 'AzBatchLocationQuotas', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.GetBatchTaskCountsCommand","Get-AzBatchTaskCounts","1","8400","Get-AzBatchTaskCounts uses the noun 'AzBatchTaskCounts', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.GetBatchTaskCountsCommand","Get-AzBatchTaskCounts","1","8510","Cmdlet 'Get-AzBatchTaskCounts' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.GetBatchTaskCountCommand","Get-AzBatchTaskCount","1","8510","Cmdlet 'Get-AzBatchTaskCount' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.NewBatchTaskCommand","New-AzBatchTask","1","8100","New-AzBatchTask Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.NewBatchTaskCommand","New-AzBatchTask","1","8600","Cmdlet 'New-AzBatchTask' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.NewBatchTaskCommand","New-AzBatchTask","1","8410","Parameter ResourceFiles of cmdlet New-AzBatchTask does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." diff --git a/tools/StaticAnalysis/Exceptions/Az.Compute/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Compute/SignatureIssues.csv index 40031a11316d..6b2cd1c6c95e 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Compute/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Compute/SignatureIssues.csv @@ -37,8 +37,8 @@ "Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.NewAzureVaultSecretGroupCommand","Add-AzVMSecret","1","8100","Add-AzVMSecret Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.RemoveAzureVMNetworkInterfaceCommand","Remove-AzVMNetworkInterface","1","8410","Parameter NetworkInterfaceIDs of cmdlet Remove-AzVMNetworkInterface does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.RemoveAzureVMDataDiskCommand","Remove-AzVMDataDisk","1","8410","Parameter DataDiskNames of cmdlet Remove-AzVMDataDisk does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.SetAzureVMBootDiagnosticsCommand","Set-AzVMBootDiagnostics","1","8100","Set-AzVMBootDiagnostics Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.SetAzureVMBootDiagnosticsCommand","Set-AzVMBootDiagnostics","1","8510","Cmdlet 'Set-AzVMBootDiagnostics' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.SetAzureVMBootDiagnosticsCommand","Set-AzVMBootDiagnostic","1","8100","Set-AzVMBootDiagnostic Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.SetAzureVMBootDiagnosticsCommand","Set-AzVMBootDiagnostic","1","8510","Cmdlet 'Set-AzVMBootDiagnostic' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.SetAzureVMDataDiskCommand","Set-AzVMDataDisk","1","8100","Set-AzVMDataDisk Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.SetAzureVMDataDiskCommand","Set-AzVMDataDisk","1","8510","Cmdlet 'Set-AzVMDataDisk' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.SetAzureVMPlanCommand","Set-AzVMPlan","1","8100","Set-AzVMPlan Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" diff --git a/tools/StaticAnalysis/Exceptions/Az.DataLakeStore/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.DataLakeStore/SignatureIssues.csv index c6d08d1f7e03..aaaae07a34be 100644 --- a/tools/StaticAnalysis/Exceptions/Az.DataLakeStore/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.DataLakeStore/SignatureIssues.csv @@ -2,8 +2,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll","Microsoft.Azure.Commands.DataLakeStore.EnableAzureDataLakeStoreKeyVault","Enable-AzDataLakeStoreKeyVault","1","8600","Cmdlet 'Enable-AzDataLakeStoreKeyVault' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll","Microsoft.Azure.Commands.DataLakeStore.RemoveAzureRmDataLakeStoreAccountTrustedIdProvider","Remove-AzDataLakeStoreTrustedIdProvider","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Remove-AzDataLakeStoreTrustedIdProvider' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll","Microsoft.Azure.Commands.DataLakeStore.RemoveAzureRmDataLakeStoreFirewallRule","Remove-AzDataLakeStoreFirewallRule","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Remove-AzDataLakeStoreFirewallRule' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." -"Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll","Microsoft.Azure.Commands.DataLakeStore.ExportAzureRmDataLakeStoreChildItemProperties","Export-AzDataLakeStoreChildItemProperties","1","8400","Export-AzDataLakeStoreChildItemProperties uses the noun 'AzDataLakeStoreChildItemProperties', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll","Microsoft.Azure.Commands.DataLakeStore.ExportAzureRmDataLakeStoreChildItemProperties","Export-AzDataLakeStoreChildItemProperties","1","8510","Cmdlet 'Export-AzDataLakeStoreChildItemProperties' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll","Microsoft.Azure.Commands.DataLakeStore.ExportAzureRmDataLakeStoreChildItemProperties","Export-AzDataLakeStoreChildItemProperty","1","8510","Cmdlet 'Export-AzDataLakeStoreChildItemProperty' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll","Microsoft.Azure.Commands.DataLakeStore.AddAzureRmDataLakeStoreFirewallRule","Add-AzDataLakeStoreFirewallRule","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Add-AzDataLakeStoreFirewallRule' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll","Microsoft.Azure.Commands.DataLakeStore.AddAzureDataLakeStoreItemContent","Add-AzDataLakeStoreItemContent","1","8100","Add-AzDataLakeStoreItemContent Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll","Microsoft.Azure.Commands.DataLakeStore.ExportAzureDataLakeStoreItem","Export-AzDataLakeStoreItem","1","8420","Parameter set 'NoDiagnosticLogging' of cmdlet 'Export-AzDataLakeStoreItem' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." diff --git a/tools/StaticAnalysis/Exceptions/Az.DeploymentManager/MissingAssemblies.csv b/tools/StaticAnalysis/Exceptions/Az.DeploymentManager/MissingAssemblies.csv new file mode 100644 index 000000000000..26dbb18cbbd1 --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.DeploymentManager/MissingAssemblies.csv @@ -0,0 +1,2 @@ +"Directory","Assembly Name","Assembly Version","Referencing Assembly","Severity","ProblemId","Description","Remediation" +"Az.DeploymentManager","Microsoft.PowerShell.CoreCLR.Eventing","6.1.0.0","System.Management.Automation","0","3000","Missing assembly Microsoft.PowerShell.CoreCLR.Eventing referenced from System.Management.Automation","Ensure that the assembly is included in the Wix file or directory" diff --git a/tools/StaticAnalysis/Exceptions/Az.FrontDoor/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.FrontDoor/BreakingChangeIssues.csv index e4d070d56bbd..f0d817964f8f 100644 --- a/tools/StaticAnalysis/Exceptions/Az.FrontDoor/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.FrontDoor/BreakingChangeIssues.csv @@ -1 +1,33 @@ "AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.GetAzureRmFrontDoorFireWallPolicy","Get-AzFrontDoorFireWallPolicy","0","3010","The property 'Transforms' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule' has been removed.","Add the property 'Transforms' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.GetAzureRmFrontDoorFireWallPolicy","Get-AzFrontDoorFireWallPolicy","0","3010","The property 'Etag' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule' has been removed.","Add the property 'Etag' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.GetAzureRmFrontDoorFireWallPolicy","Get-AzFrontDoorFireWallPolicy","0","3010","The property 'Priority' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule' has been removed.","Add the property 'Priority' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.GetAzureRmFrontDoorFireWallPolicy","Get-AzFrontDoorFireWallPolicy","0","3010","The property 'Version' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule' has been removed.","Add the property 'Version' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorCustomRuleObject","New-AzFrontDoorCustomRuleObject","0","3010","The property 'Transforms' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule' has been removed.","Add the property 'Transforms' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorCustomRuleObject","New-AzFrontDoorCustomRuleObject","0","3010","The property 'Etag' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule' has been removed.","Add the property 'Etag' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorCustomRuleObject","New-AzFrontDoorCustomRuleObject","0","2000","The cmdlet 'New-AzFrontDoorCustomRuleObject' no longer supports the parameter 'Transform' and no alias was found for the original parameter name.","Add the parameter 'Transform' back to the cmdlet 'New-AzFrontDoorCustomRuleObject', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorCustomRuleObject","New-AzFrontDoorCustomRuleObject","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzFrontDoorCustomRuleObject' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzFrontDoorCustomRuleObject'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorManagedRuleObject","New-AzFrontDoorManagedRuleObject","0","3010","The property 'Action' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride' has been removed.","Add the property 'Action' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorManagedRuleObject","New-AzFrontDoorManagedRuleObject","0","3010","The property 'RuleGroupOverride' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride' has been removed.","Add the property 'RuleGroupOverride' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorManagedRuleObject","New-AzFrontDoorManagedRuleObject","0","3010","The property 'Priority' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule' has been removed.","Add the property 'Priority' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorManagedRuleObject","New-AzFrontDoorManagedRuleObject","0","3010","The property 'Version' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule' has been removed.","Add the property 'Version' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorManagedRuleObject","New-AzFrontDoorManagedRuleObject","0","2000","The cmdlet 'New-AzFrontDoorManagedRuleObject' no longer supports the parameter 'Priority' and no alias was found for the original parameter name.","Add the parameter 'Priority' back to the cmdlet 'New-AzFrontDoorManagedRuleObject', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorManagedRuleObject","New-AzFrontDoorManagedRuleObject","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzFrontDoorManagedRuleObject' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzFrontDoorManagedRuleObject'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRuleGroupOverrideObject","New-AzFrontDoorRuleGroupOverrideObject","0","3010","The property 'Action' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride' has been removed.","Add the property 'Action' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRuleGroupOverrideObject","New-AzFrontDoorRuleGroupOverrideObject","0","3010","The property 'RuleGroupOverride' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride' has been removed.","Add the property 'RuleGroupOverride' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRuleGroupOverrideObject","New-AzFrontDoorRuleGroupOverrideObject","0","2000","The cmdlet 'New-AzFrontDoorRuleGroupOverrideObject' no longer supports the parameter 'Override' and no alias was found for the original parameter name.","Add the parameter 'Override' back to the cmdlet 'New-AzFrontDoorRuleGroupOverrideObject', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRuleGroupOverrideObject","New-AzFrontDoorRuleGroupOverrideObject","0","2000","The cmdlet 'New-AzFrontDoorRuleGroupOverrideObject' no longer supports the parameter 'Action' and no alias was found for the original parameter name.","Add the parameter 'Action' back to the cmdlet 'New-AzFrontDoorRuleGroupOverrideObject', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRuleGroupOverrideObject","New-AzFrontDoorRuleGroupOverrideObject","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzFrontDoorRuleGroupOverrideObject' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzFrontDoorRuleGroupOverrideObject'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.SetAzureRmFrontDoorFireWallPolicy","Set-AzFrontDoorFireWallPolicy","0","1000","The cmdlet 'Set-AzFrontDoorFireWallPolicy' has been removed and no alias was found for the original cmdlet name.","Add the cmdlet 'Set-AzFrontDoorFireWallPolicy' back to the module, or add an alias to the original cmdlet name." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.GetAzureRmFrontDoor","Get-AzFrontDoor","0","3010","The property 'EnableCaching' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule' has been removed.","Add the property 'EnableCaching' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.GetAzureRmFrontDoor","Get-AzFrontDoor","0","3010","The property 'DynamicCompression' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule' has been removed.","Add the property 'DynamicCompression' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.GetAzureRmFrontDoor","Get-AzFrontDoor","0","3010","The property 'ForwardingProtocol' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule' has been removed.","Add the property 'ForwardingProtocol' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.GetAzureRmFrontDoor","Get-AzFrontDoor","0","3010","The property 'QueryParameterStripDirective' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule' has been removed.","Add the property 'QueryParameterStripDirective' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.GetAzureRmFrontDoor","Get-AzFrontDoor","0","3010","The property 'CustomForwardingPath' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule' has been removed.","Add the property 'CustomForwardingPath' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.GetAzureRmFrontDoor","Get-AzFrontDoor","0","3010","The property 'BackendPoolId' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule' has been removed.","Add the property 'BackendPoolId' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRoutingRuleObject","New-AzFrontDoorRoutingRuleObject","0","3010","The property 'EnableCaching' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule' has been removed.","Add the property 'EnableCaching' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRoutingRuleObject","New-AzFrontDoorRoutingRuleObject","0","3010","The property 'DynamicCompression' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule' has been removed.","Add the property 'DynamicCompression' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRoutingRuleObject","New-AzFrontDoorRoutingRuleObject","0","3010","The property 'ForwardingProtocol' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule' has been removed.","Add the property 'ForwardingProtocol' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRoutingRuleObject","New-AzFrontDoorRoutingRuleObject","0","3010","The property 'QueryParameterStripDirective' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule' has been removed.","Add the property 'QueryParameterStripDirective' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRoutingRuleObject","New-AzFrontDoorRoutingRuleObject","0","3010","The property 'CustomForwardingPath' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule' has been removed.","Add the property 'CustomForwardingPath' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule'." +"Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRoutingRuleObject","New-AzFrontDoorRoutingRuleObject","0","3010","The property 'BackendPoolId' of type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule' has been removed.","Add the property 'BackendPoolId' back to type 'Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule'." diff --git a/tools/StaticAnalysis/Exceptions/Az.FrontDoor/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.FrontDoor/SignatureIssues.csv index 1f0d87f8118f..d21a1b328079 100644 --- a/tools/StaticAnalysis/Exceptions/Az.FrontDoor/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.FrontDoor/SignatureIssues.csv @@ -10,3 +10,4 @@ "Microsoft.Azure.Commands.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorMatchConditionObject","New-AzFrontDoorMatchConditionObject","1","8100","New-AzFrontDoorMatchConditionObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.Commands.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRoutingRuleObject","New-AzFrontDoorRoutingRuleObject","1","8100","New-AzFrontDoorRoutingRuleObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.Commands.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRuleGroupOverrideObject","New-AzFrontDoorRuleGroupOverrideObject","1","8100","New-AzFrontDoorRuleGroupOverrideObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.Commands.FrontDoor.dll","Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorManagedRuleOverrideObject","New-AzFrontDoorManagedRuleOverrideObject","1","8100","New-AzFrontDoorManagedRuleOverrideObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" diff --git a/tools/StaticAnalysis/Exceptions/Az.HDInsight/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.HDInsight/SignatureIssues.csv index c8c40093d532..74e10648da1e 100644 --- a/tools/StaticAnalysis/Exceptions/Az.HDInsight/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.HDInsight/SignatureIssues.csv @@ -34,13 +34,11 @@ "Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightScriptActionCommand","Add-AzHDInsightScriptAction","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Add-AzHDInsightScriptAction' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightMetastoreCommand","Add-AzHDInsightMetastore","1","8100","Add-AzHDInsightMetastore Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightMetastoreCommand","Add-AzHDInsightMetastore","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Add-AzHDInsightMetastore' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." -"Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightConfigValuesCommand","Add-AzHDInsightConfigValues","1","8100","Add-AzHDInsightConfigValues Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightConfigValuesCommand","Add-AzHDInsightConfigValues","1","8400","Add-AzHDInsightConfigValues uses the noun 'AzHDInsightConfigValues', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightConfigValuesCommand","Add-AzHDInsightConfigValues","1","8410","Parameter Hdfs of cmdlet Add-AzHDInsightConfigValues does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightConfigValuesCommand","Add-AzHDInsightConfigValues","1","8410","Parameter SparkDefaults of cmdlet Add-AzHDInsightConfigValues does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightConfigValuesCommand","Add-AzHDInsightConfigValues","1","8410","Parameter Spark2Defaults of cmdlet Add-AzHDInsightConfigValues does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightConfigValuesCommand","Add-AzHDInsightConfigValues","1","8510","Cmdlet 'Add-AzHDInsightConfigValues' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.GetAzureHDInsightPropertiesCommand","Get-AzHDInsightProperties","1","8400","Get-AzHDInsightProperties uses the noun 'AzHDInsightProperties', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." +"Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightConfigValuesCommand","Add-AzHDInsightConfigValue","1","8100","Add-AzHDInsightConfigValue Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightConfigValuesCommand","Add-AzHDInsightConfigValue","1","8410","Parameter Hdfs of cmdlet Add-AzHDInsightConfigValue does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightConfigValuesCommand","Add-AzHDInsightConfigValue","1","8410","Parameter SparkDefaults of cmdlet Add-AzHDInsightConfigValue does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightConfigValuesCommand","Add-AzHDInsightConfigValue","1","8410","Parameter Spark2Defaults of cmdlet Add-AzHDInsightConfigValue does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightConfigValuesCommand","Add-AzHDInsightConfigValue","1","8510","Cmdlet 'Add-AzHDInsightConfigValue' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.RevokeAzureHDInsightRdpServicesAccessCommand","Revoke-AzHDInsightRdpServicesAccess","1","8100","Revoke-AzHDInsightRdpServicesAccess Does not support ShouldProcess but the cmdlet verb Revoke indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.RevokeAzureHDInsightHttpServicesAccessCommand","Revoke-AzHDInsightHttpServicesAccess","1","8100","Revoke-AzHDInsightHttpServicesAccess Does not support ShouldProcess but the cmdlet verb Revoke indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.GrantAzureHDInsightRdpServicesAccessCommand","Grant-AzHDInsightRdpServicesAccess","1","8100","Grant-AzHDInsightRdpServicesAccess Does not support ShouldProcess but the cmdlet verb Grant indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" diff --git a/tools/StaticAnalysis/Exceptions/Az.IotHub/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.IotHub/SignatureIssues.csv index f81b6828c381..dade684c271a 100644 --- a/tools/StaticAnalysis/Exceptions/Az.IotHub/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.IotHub/SignatureIssues.csv @@ -2,9 +2,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll","Microsoft.Azure.Commands.Management.IotHub.AddAzureRmIotHubKey","Add-AzIotHubKey","1","8410","Parameter Rights of cmdlet Add-AzIotHubKey does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll","Microsoft.Azure.Commands.Management.IotHub.NewAzureRmIotHub","New-AzIotHub","1","8410","Parameter Units of cmdlet New-AzIotHub does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll","Microsoft.Azure.Commands.Management.IotHub.NewAzureRmIotHub","New-AzIotHub","1","8410","Parameter Properties of cmdlet New-AzIotHub does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll","Microsoft.Azure.Commands.Management.IotHub.NewAzureRmIotHubExportDevices","New-AzIotHubExportDevices","1","8400","New-AzIotHubExportDevices uses the noun 'AzIotHubExportDevices', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll","Microsoft.Azure.Commands.Management.IotHub.NewAzureRmIotHubExportDevices","New-AzIotHubExportDevices","1","8410","Parameter ExcludeKeys of cmdlet New-AzIotHubExportDevices does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll","Microsoft.Azure.Commands.Management.IotHub.NewAzureRmIotHubImportDevices","New-AzIotHubImportDevices","1","8400","New-AzIotHubImportDevices uses the noun 'AzIotHubImportDevices', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." +"Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll","Microsoft.Azure.Commands.Management.IotHub.NewAzureRmIotHubExportDevices","New-AzIotHubExportDevice","1","8410","Parameter ExcludeKeys of cmdlet New-AzIotHubExportDevice does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll","Microsoft.Azure.Commands.Management.IotHub.RemoveAzureRmIotHub","Remove-AzIotHub","1","8600","Cmdlet 'Remove-AzIotHub' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll","Microsoft.Azure.Commands.Management.IotHub.RemoveAzureRmIotHubCertificate","Remove-AzIotHubCertificate","1","8600","Cmdlet 'Remove-AzIotHubCertificate' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll","Microsoft.Azure.Commands.Management.IotHub.SetAzureRmIotHub","Set-AzIotHub","1","8410","Parameter Units of cmdlet Set-AzIotHub does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." diff --git a/tools/StaticAnalysis/Exceptions/Az.KeyVault/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.KeyVault/SignatureIssues.csv index 0bf90cff0375..8a34eb245109 100644 --- a/tools/StaticAnalysis/Exceptions/Az.KeyVault/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.KeyVault/SignatureIssues.csv @@ -19,6 +19,4 @@ "Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll","Microsoft.Azure.Commands.KeyVault.UpdateAzureKeyVaultKey","Update-AzKeyVaultKey","1","8410","Parameter Expires of cmdlet Update-AzKeyVaultKey does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll","Microsoft.Azure.Commands.KeyVault.UpdateAzureKeyVaultKey","Update-AzKeyVaultKey","1","8410","Parameter KeyOps of cmdlet Update-AzKeyVaultKey does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll","Microsoft.Azure.Commands.KeyVault.SetAzureKeyVaultSecret","Set-AzKeyVaultSecret","1","8410","Parameter Expires of cmdlet Set-AzKeyVaultSecret does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll","Microsoft.Azure.Commands.KeyVault.Commands.NewAzureKeyVaultCertificateAdministratorDetails","New-AzKeyVaultCertificateAdministratorDetails","1","8400","New-AzKeyVaultCertificateAdministratorDetails uses the noun 'AzKeyVaultCertificateAdministratorDetails', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll","Microsoft.Azure.Commands.KeyVault.Commands.NewAzureKeyVaultCertificateOrganizationDetails","New-AzKeyVaultCertificateOrganizationDetails","1","8400","New-AzKeyVaultCertificateOrganizationDetails uses the noun 'AzKeyVaultCertificateOrganizationDetails', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll","Microsoft.Azure.Commands.KeyVault.Commands.NewAzureKeyVaultCertificateOrganizationDetails","New-AzKeyVaultCertificateOrganizationDetails","1","8410","Parameter AdministratorDetails of cmdlet New-AzKeyVaultCertificateOrganizationDetails does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll","Microsoft.Azure.Commands.KeyVault.Commands.NewAzureKeyVaultCertificateOrganizationDetails","New-AzKeyVaultCertificateOrganizationDetail","1","8410","Parameter AdministratorDetails of cmdlet New-AzKeyVaultCertificateOrganizationDetail does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." diff --git a/tools/StaticAnalysis/Exceptions/Az.MachineLearning/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.MachineLearning/SignatureIssues.csv index 64da65d9ee8d..4304a89394fe 100644 --- a/tools/StaticAnalysis/Exceptions/Az.MachineLearning/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.MachineLearning/SignatureIssues.csv @@ -7,8 +7,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.dll","Microsoft.Azure.Commands.MachineLearning.UpdateAzureMLWebService","Update-AzMlWebService","1","8410","Parameter ServiceUpdates of cmdlet Update-AzMlWebService does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.dll","Microsoft.Azure.Commands.MachineLearning.UpdateAzureMLWebService","Update-AzMlWebService","1","8510","Cmdlet 'Update-AzMlWebService' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.dll","Microsoft.Azure.Commands.MachineLearning.Cmdlets.ExportWebServiceDefinition","Export-AzMlWebService","1","8510","Cmdlet 'Export-AzMlWebService' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.dll","Microsoft.Azure.Commands.MachineLearning.Cmdlets.GetAzureMLWebServiceKeys","Get-AzMlWebServiceKeys","1","8400","Get-AzMlWebServiceKeys uses the noun 'AzMlWebServiceKeys', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.dll","Microsoft.Azure.Commands.MachineLearning.Cmdlets.GetAzureMLWebServiceKeys","Get-AzMlWebServiceKeys","1","8510","Cmdlet 'Get-AzMlWebServiceKeys' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.dll","Microsoft.Azure.Commands.MachineLearning.Cmdlets.GetAzureMLWebServiceKeys","Get-AzMlWebServiceKey","1","8510","Cmdlet 'Get-AzMlWebServiceKey' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.dll","Microsoft.Azure.Commands.MachineLearning.Cmdlets.ImportWebServiceDefinition","Import-AzMlWebService","1","8100","Import-AzMlWebService Does not support ShouldProcess but the cmdlet verb Import indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.dll","Microsoft.Azure.Commands.MachineLearning.Cmdlets.ImportWebServiceDefinition","Import-AzMlWebService","1","8510","Cmdlet 'Import-AzMlWebService' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.dll","Microsoft.Azure.Commands.MachineLearning.Cmdlets.NewAzureMLWebService","New-AzMlWebService","1","8510","Cmdlet 'New-AzMlWebService' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." diff --git a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv index 5d91f7db792e..e53bec438dec 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv @@ -7,18 +7,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand","New-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendFqdns of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand","Set-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendIPAddresses of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand","Set-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendFqdns of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand","Add-AzApplicationGatewayBackendHttpSettings","1","8100","Add-AzApplicationGatewayBackendHttpSettings Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand","Add-AzApplicationGatewayBackendHttpSettings","1","8400","Add-AzApplicationGatewayBackendHttpSettings uses the noun 'AzApplicationGatewayBackendHttpSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand","Add-AzApplicationGatewayBackendHttpSettings","1","8410","Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendHttpSettings does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureApplicationGatewayBackendHttpSettings","Get-AzApplicationGatewayBackendHttpSettings","1","8400","Get-AzApplicationGatewayBackendHttpSettings uses the noun 'AzApplicationGatewayBackendHttpSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand","New-AzApplicationGatewayBackendHttpSettings","1","8100","New-AzApplicationGatewayBackendHttpSettings Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand","New-AzApplicationGatewayBackendHttpSettings","1","8400","New-AzApplicationGatewayBackendHttpSettings uses the noun 'AzApplicationGatewayBackendHttpSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand","New-AzApplicationGatewayBackendHttpSettings","1","8410","Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendHttpSettings does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendHttpSettingsCommand","Remove-AzApplicationGatewayBackendHttpSettings","1","8100","Remove-AzApplicationGatewayBackendHttpSettings Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendHttpSettingsCommand","Remove-AzApplicationGatewayBackendHttpSettings","1","8400","Remove-AzApplicationGatewayBackendHttpSettings uses the noun 'AzApplicationGatewayBackendHttpSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand","Set-AzApplicationGatewayBackendHttpSettings","1","8100","Set-AzApplicationGatewayBackendHttpSettings Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand","Set-AzApplicationGatewayBackendHttpSettings","1","8400","Set-AzApplicationGatewayBackendHttpSettings uses the noun 'AzApplicationGatewayBackendHttpSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand","Set-AzApplicationGatewayBackendHttpSettings","1","8410","Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendHttpSettings does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand","Add-AzApplicationGatewayBackendHttpSetting","1","8100","Add-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand","Add-AzApplicationGatewayBackendHttpSetting","1","8410","Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand","New-AzApplicationGatewayBackendHttpSetting","1","8100","New-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand","New-AzApplicationGatewayBackendHttpSetting","1","8410","Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendHttpSettingsCommand","Remove-AzApplicationGatewayBackendHttpSetting","1","8100","Remove-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand","Set-AzApplicationGatewayBackendHttpSetting","1","8100","Set-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand","Set-AzApplicationGatewayBackendHttpSetting","1","8410","Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureApplicationGatewayConnectionDrainingCommand","Get-AzApplicationGatewayConnectionDraining","1","8410","Parameter BackendHttpSettings of cmdlet Get-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayConnectionDrainingCommand","New-AzApplicationGatewayConnectionDraining","1","8100","New-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand","Remove-AzApplicationGatewayConnectionDraining","1","8100","Remove-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" @@ -27,7 +22,6 @@ "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand","Set-AzApplicationGatewayConnectionDraining","1","8410","Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayWebApplicationFirewallConfigurationCommand","New-AzApplicationGatewayWebApplicationFirewallConfiguration","1","8410","Parameter DisabledRuleGroups of cmdlet New-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayWebApplicationFirewallConfigurationCommand","Set-AzApplicationGatewayWebApplicationFirewallConfiguration","1","8410","Parameter DisabledRuleGroups of cmdlet Set-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureApplicationGatewayAvailableSslOptions","Get-AzApplicationGatewayAvailableSslOptions","1","8400","Get-AzApplicationGatewayAvailableSslOptions uses the noun 'AzApplicationGatewayAvailableSslOptions', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeHealthResponseMatchCommand","New-AzApplicationGatewayProbeHealthResponseMatch","1","8100","New-AzApplicationGatewayProbeHealthResponseMatch Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand","Add-AzApplicationGatewayFrontendIPConfig","1","8100","Add-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand","Add-AzApplicationGatewayFrontendIPConfig","1","8510","Cmdlet 'Add-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." @@ -47,7 +41,6 @@ "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayIPConfigurationCommand","Remove-AzApplicationGatewayIPConfiguration","1","8100","Remove-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand","Set-AzApplicationGatewayIPConfiguration","1","8100","Set-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand","Set-AzApplicationGatewayIPConfiguration","1","8510","Cmdlet 'Set-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureApplicationGatewayAvailableWafRuleSets","Get-AzApplicationGatewayAvailableWafRuleSets","1","8400","Get-AzApplicationGatewayAvailableWafRuleSets uses the noun 'AzApplicationGatewayAvailableWafRuleSets', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand","Add-AzApplicationGatewayHttpListener","1","8100","Add-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand","Add-AzApplicationGatewayHttpListener","1","8510","Cmdlet 'Add-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand","New-AzApplicationGatewayHttpListener","1","8100","New-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" @@ -129,7 +122,6 @@ "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitAuthorizationCommand","Add-AzExpressRouteCircuitAuthorization","1","8100","Add-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitAuthorizationCommand","New-AzExpressRouteCircuitAuthorization","1","8100","New-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitAuthorizationCommand","Remove-AzExpressRouteCircuitAuthorization","1","8100","Remove-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureExpressRouteCircuitStatsCommand","Get-AzExpressRouteCircuitStats","1","8400","Get-AzExpressRouteCircuitStats uses the noun 'AzExpressRouteCircuitStats', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand","Add-AzLoadBalancerInboundNatPoolConfig","1","8100","Add-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand","Add-AzLoadBalancerInboundNatPoolConfig","1","8510","Cmdlet 'Add-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand","New-AzLoadBalancerInboundNatPoolConfig","1","8100","New-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" diff --git a/tools/StaticAnalysis/Exceptions/Az.NotificationHubs/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.NotificationHubs/SignatureIssues.csv index 9e7b54bc40eb..d5e77c5fe32b 100644 --- a/tools/StaticAnalysis/Exceptions/Az.NotificationHubs/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.NotificationHubs/SignatureIssues.csv @@ -1,24 +1,13 @@ "AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.GetAzureNotificationHubAuthorizationRules","Get-AzNotificationHubAuthorizationRules","1","8400","Get-AzNotificationHubAuthorizationRules uses the noun 'AzNotificationHubAuthorizationRules', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.GetAzureNotificationHubListKeys","Get-AzNotificationHubListKeys","1","8400","Get-AzNotificationHubListKeys uses the noun 'AzNotificationHubListKeys', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.GetAzureNotificationHubPNSCredentials","Get-AzNotificationHubPNSCredentials","1","8400","Get-AzNotificationHubPNSCredentials uses the noun 'AzNotificationHubPNSCredentials', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." "Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.NewAzureNotificationHub","New-AzNotificationHub","1","8510","Cmdlet 'New-AzNotificationHub' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.NewAzureNotificationHubAuthorizationRules","New-AzNotificationHubAuthorizationRules","1","8400","New-AzNotificationHubAuthorizationRules uses the noun 'AzNotificationHubAuthorizationRules', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.NewAzureNotificationHubAuthorizationRules","New-AzNotificationHubAuthorizationRules","1","8510","Cmdlet 'New-AzNotificationHubAuthorizationRules' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.NewAzureNotificationHubAuthorizationRules","New-AzNotificationHubAuthorizationRule","1","8510","Cmdlet 'New-AzNotificationHubAuthorizationRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.NewAzureNotificationHubKey","New-AzNotificationHubKey","1","8420","Parameter set '__AllParameterSets' of cmdlet 'New-AzNotificationHubKey' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.RemoveAzureNotificationHub","Remove-AzNotificationHub","1","8600","Cmdlet 'Remove-AzNotificationHub' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.RemoveAzureNotificationHubAuthorizationRules","Remove-AzNotificationHubAuthorizationRules","1","8400","Remove-AzNotificationHubAuthorizationRules uses the noun 'AzNotificationHubAuthorizationRules', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.RemoveAzureNotificationHubAuthorizationRules","Remove-AzNotificationHubAuthorizationRules","1","8600","Cmdlet 'Remove-AzNotificationHubAuthorizationRules' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.RemoveAzureNotificationHubAuthorizationRules","Remove-AzNotificationHubAuthorizationRule","1","8600","Cmdlet 'Remove-AzNotificationHubAuthorizationRule' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.SetAzureNotificationHub","Set-AzNotificationHub","1","8510","Cmdlet 'Set-AzNotificationHub' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.SetAzureNotificationHubAuthorizationRules","Set-AzNotificationHubAuthorizationRules","1","8400","Set-AzNotificationHubAuthorizationRules uses the noun 'AzNotificationHubAuthorizationRules', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.SetAzureNotificationHubAuthorizationRules","Set-AzNotificationHubAuthorizationRules","1","8510","Cmdlet 'Set-AzNotificationHubAuthorizationRules' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace.GetAzureNotificationHubsNamespaceAuthorizationRules","Get-AzNotificationHubsNamespaceAuthorizationRules","1","8400","Get-AzNotificationHubsNamespaceAuthorizationRules uses the noun 'AzNotificationHubsNamespaceAuthorizationRules', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace.GetAzureNotificationHubsNamespaceListKeys","Get-AzNotificationHubsNamespaceListKeys","1","8400","Get-AzNotificationHubsNamespaceListKeys uses the noun 'AzNotificationHubsNamespaceListKeys', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace.NewAzureNotificationHubsNamespaceAuthorizationRules","New-AzNotificationHubsNamespaceAuthorizationRules","1","8400","New-AzNotificationHubsNamespaceAuthorizationRules uses the noun 'AzNotificationHubsNamespaceAuthorizationRules', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace.NewAzureNotificationHubsNamespaceAuthorizationRules","New-AzNotificationHubsNamespaceAuthorizationRules","1","8510","Cmdlet 'New-AzNotificationHubsNamespaceAuthorizationRules' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace.RemoveAzureNotificationHubsNamespaceAuthorizationRules","Remove-AzNotificationHubsNamespaceAuthorizationRules","1","8400","Remove-AzNotificationHubsNamespaceAuthorizationRules uses the noun 'AzNotificationHubsNamespaceAuthorizationRules', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace.SetAzureNotificationHubsNamespaceAuthorizationRules","Set-AzNotificationHubsNamespaceAuthorizationRules","1","8400","Set-AzNotificationHubsNamespaceAuthorizationRules uses the noun 'AzNotificationHubsNamespaceAuthorizationRules', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace.SetAzureNotificationHubsNamespaceAuthorizationRules","Set-AzNotificationHubsNamespaceAuthorizationRules","1","8510","Cmdlet 'Set-AzNotificationHubsNamespaceAuthorizationRules' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.NotificationHub.SetAzureNotificationHubAuthorizationRules","Set-AzNotificationHubAuthorizationRule","1","8510","Cmdlet 'Set-AzNotificationHubAuthorizationRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace.NewAzureNotificationHubsNamespaceAuthorizationRules","New-AzNotificationHubsNamespaceAuthorizationRule","1","8510","Cmdlet 'New-AzNotificationHubsNamespaceAuthorizationRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace.SetAzureNotificationHubsNamespaceAuthorizationRules","Set-AzNotificationHubsNamespaceAuthorizationRule","1","8510","Cmdlet 'Set-AzNotificationHubsNamespaceAuthorizationRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace.NewAzureNotificationHubsNamespace","New-AzNotificationHubsNamespace","1","8420","Parameter set '__AllParameterSets' of cmdlet 'New-AzNotificationHubsNamespace' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace.RemoveAzureNotificationHubsNamespace","Remove-AzNotificationHubsNamespace","1","8600","Cmdlet 'Remove-AzNotificationHubsNamespace' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll","Microsoft.Azure.Commands.NotificationHubs.Commands.Namespace.SetAzureNotificationHubsNamespace","Set-AzNotificationHubsNamespace","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Set-AzNotificationHubsNamespace' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." diff --git a/tools/StaticAnalysis/Exceptions/Az.OperationalInsights/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.OperationalInsights/SignatureIssues.csv index 933bdcf6edec..25d3b3767f6d 100644 --- a/tools/StaticAnalysis/Exceptions/Az.OperationalInsights/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.OperationalInsights/SignatureIssues.csv @@ -22,9 +22,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.NewAzureOperationalInsightsWindowsEventDataSourceCommand","New-AzOperationalInsightsWindowsEventDataSource","1","8420","Parameter set 'ByWorkspaceObject' of cmdlet 'New-AzOperationalInsightsWindowsEventDataSource' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.NewAzureOperationalInsightsWindowsEventDataSourceCommand","New-AzOperationalInsightsWindowsEventDataSource","1","8420","Parameter set 'ByWorkspaceName' of cmdlet 'New-AzOperationalInsightsWindowsEventDataSource' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.NewAzureOperationalInsightsWindowsEventDataSourceCommand","New-AzOperationalInsightsWindowsEventDataSource","1","8420","Parameter set '__AllParameterSets' of cmdlet 'New-AzOperationalInsightsWindowsEventDataSource' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." -"Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.GetAzureOperationalInsightsSavedSearchResultsCommand","Get-AzOperationalInsightsSavedSearchResults","1","8400","Get-AzOperationalInsightsSavedSearchResults uses the noun 'AzOperationalInsightsSavedSearchResults', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.GetAzureOperationalInsightsSearchResultsCommand","Get-AzOperationalInsightsSearchResults","1","8400","Get-AzOperationalInsightsSearchResults uses the noun 'AzOperationalInsightsSearchResults', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.GetAzureOperationalInsightsSearchResultsCommand","Get-AzOperationalInsightsSearchResults","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Get-AzOperationalInsightsSearchResults' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.GetAzureOperationalInsightsSearchResultsCommand","Get-AzOperationalInsightsSearchResult","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Get-AzOperationalInsightsSearchResult' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.NewAzureOperationalInsightsComputerGroupCommand","New-AzOperationalInsightsComputerGroup","1","8600","Cmdlet 'New-AzOperationalInsightsComputerGroup' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.NewAzureOperationalInsightsComputerGroupCommand","New-AzOperationalInsightsComputerGroup","1","8420","Parameter set '__AllParameterSets' of cmdlet 'New-AzOperationalInsightsComputerGroup' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.NewAzureOperationalInsightsSavedSearchCommand","New-AzOperationalInsightsSavedSearch","1","8600","Cmdlet 'New-AzOperationalInsightsSavedSearch' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." @@ -50,10 +48,6 @@ "Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.RemoveAzureOperationalInsightsStorageInsightCommand","Remove-AzOperationalInsightsStorageInsight","1","8600","Cmdlet 'Remove-AzOperationalInsightsStorageInsight' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.SetAzureOperationalInsightsIntelligencePackCommand","Set-AzOperationalInsightsIntelligencePack","1","8100","Set-AzOperationalInsightsIntelligencePack Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.SetAzureOperationalInsightsIntelligencePackCommand","Set-AzOperationalInsightsIntelligencePack","1","8600","Cmdlet 'Set-AzOperationalInsightsIntelligencePack' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.GetAzureOperationalInsightsIntelligencePacksCommand","Get-AzOperationalInsightsIntelligencePacks","1","8400","Get-AzOperationalInsightsIntelligencePacks uses the noun 'AzOperationalInsightsIntelligencePacks', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.GetAzureOperationalInsightsWorkspaceManagementGroupsCommand","Get-AzOperationalInsightsWorkspaceManagementGroups","1","8400","Get-AzOperationalInsightsWorkspaceManagementGroups uses the noun 'AzOperationalInsightsWorkspaceManagementGroups', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.GetAzureOperationalInsightsLinkTargetsCommand","Get-AzOperationalInsightsLinkTargets","1","8400","Get-AzOperationalInsightsLinkTargets uses the noun 'AzOperationalInsightsLinkTargets', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.GetAzureOperationalInsightsWorkspaceSharedKeysCommand","Get-AzOperationalInsightsWorkspaceSharedKeys","1","8400","Get-AzOperationalInsightsWorkspaceSharedKeys uses the noun 'AzOperationalInsightsWorkspaceSharedKeys', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." "Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.NewAzureOperationalInsightsWorkspaceCommand","New-AzOperationalInsightsWorkspace","1","8420","Parameter set '__AllParameterSets' of cmdlet 'New-AzOperationalInsightsWorkspace' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.RemoveAzureOperationalInsightsWorkspaceCommand","Remove-AzOperationalInsightsWorkspace","1","8600","Cmdlet 'Remove-AzOperationalInsightsWorkspace' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll","Microsoft.Azure.Commands.OperationalInsights.SetAzureOperationalInsightsWorkspaceCommand","Set-AzOperationalInsightsWorkspace","1","8100","Set-AzOperationalInsightsWorkspace Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" diff --git a/tools/StaticAnalysis/Exceptions/Az.Sql/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Sql/BreakingChangeIssues.csv index d9c7eb218024..2e27bcf8b338 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Sql/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Sql/BreakingChangeIssues.csv @@ -37,6 +37,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Auditing.Cmdlet.SetAzureSqlDatabaseAuditing","Set-AzSqlDatabaseAuditing","0","1050","The parameter set 'DefaultParameterSet' for cmdlet 'Set-AzSqlDatabaseAuditing' has been removed.","Add parameter set 'DefaultParameterSet' back to cmdlet 'Set-AzSqlDatabaseAuditing'." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Auditing.Cmdlet.SetAzureSqlServerAuditing","Set-AzSqlServerAuditing","0","1050","The parameter set 'StorageAccountSubscriptionIdSet' for cmdlet 'Set-AzSqlServerAuditing' has been removed.","Add parameter set 'StorageAccountSubscriptionIdSet' back to cmdlet 'Set-AzSqlServerAuditing'." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Auditing.Cmdlet.SetAzureSqlServerAuditing","Set-AzSqlServerAuditing","0","1050","The parameter set 'DefaultParameterSet' for cmdlet 'Set-AzSqlServerAuditing' has been removed.","Add parameter set 'DefaultParameterSet' back to cmdlet 'Set-AzSqlServerAuditing'." +"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Replication.Cmdlet.GetAzureSqlDatabaseReplicationLink","Get-AzSqlDatabaseReplicationLink","0","1050","The parameter set 'ByDatabaseName' for cmdlet 'Get-AzSqlDatabaseReplicationLink' has been removed.","Add parameter set 'ByDatabaseName' back to cmdlet 'Get-AzSqlDatabaseReplicationLink'." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ThreatDetection.Cmdlet.AzureRmSqlDatabaseThreatDetectionPolicy","Get-AzSqlDatabaseThreatDetectionPolicy","0","3020","The element type for property 'ExcludedDetectionTypes' has been changed from 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType' to 'System.String'.","Change the element type for property 'ExcludedDetectionTypes' back to 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType'." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ThreatDetection.Cmdlet.AzureRmSqlServerThreatDetectionPolicy","Get-AzSqlServerThreatDetectionPolicy","0","3020","The element type for property 'ExcludedDetectionTypes' has been changed from 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType' to 'System.String'.","Change the element type for property 'ExcludedDetectionTypes' back to 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType'." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ThreatDetection.Cmdlet.AzureRmSqlDatabaseThreatDetection","Remove-AzSqlDatabaseThreatDetectionPolicy","0","3020","The element type for property 'ExcludedDetectionTypes' has been changed from 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType' to 'System.String'.","Change the element type for property 'ExcludedDetectionTypes' back to 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType'." @@ -44,4 +45,4 @@ "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ThreatDetection.Cmdlet.SetAzureSqlDatabaseThreatDetection","Set-AzSqlDatabaseThreatDetectionPolicy","0","3020","The element type for property 'ExcludedDetectionTypes' has been changed from 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType' to 'System.String'.","Change the element type for property 'ExcludedDetectionTypes' back to 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType'." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ThreatDetection.Cmdlet.SetAzureSqlDatabaseThreatDetection","Set-AzSqlDatabaseThreatDetectionPolicy","0","2110","The element type for parameter 'ExcludedDetectionType' has been changed from 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType' to 'System.String'.","Change the element type for parameter 'ExcludedDetectionType' back to 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType'." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ThreatDetection.Cmdlet.SetAzureSqlServerThreatDetection","Set-AzSqlServerThreatDetectionPolicy","0","3020","The element type for property 'ExcludedDetectionTypes' has been changed from 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType' to 'System.String'.","Change the element type for property 'ExcludedDetectionTypes' back to 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType'." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ThreatDetection.Cmdlet.SetAzureSqlServerThreatDetection","Set-AzSqlServerThreatDetectionPolicy","0","2110","The element type for parameter 'ExcludedDetectionType' has been changed from 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType' to 'System.String'.","Change the element type for parameter 'ExcludedDetectionType' back to 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType'." \ No newline at end of file +"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ThreatDetection.Cmdlet.SetAzureSqlServerThreatDetection","Set-AzSqlServerThreatDetectionPolicy","0","2110","The element type for parameter 'ExcludedDetectionType' has been changed from 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType' to 'System.String'.","Change the element type for parameter 'ExcludedDetectionType' back to 'Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType'." diff --git a/tools/StaticAnalysis/Exceptions/Az.Sql/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Sql/SignatureIssues.csv index 4a674be02e38..23790df312bb 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Sql/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Sql/SignatureIssues.csv @@ -56,9 +56,8 @@ "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Replication.Cmdlet.SetAzureSqlDatabaseSecondary","Set-AzSqlDatabaseSecondary","1","8600","Cmdlet 'Set-AzSqlDatabaseSecondary' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.RecommendedElasticPools.Cmdlet.GetAzureSqlElasticPoolRecommendation","Get-AzSqlElasticPoolRecommendation","2","8200","Get-AzSqlElasticPoolRecommendation changes the confirm impact. Please ensure that the change in ConfirmImpact is justified","Verify that ConfirmImpact is changed appropriately by the cmdlet. It is very rare for a cmdlet to change the ConfirmImpact." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.RecommendedElasticPools.Cmdlet.GetAzureSqlElasticPoolRecommendation","Get-AzSqlElasticPoolRecommendation","1","8600","Cmdlet 'Get-AzSqlElasticPoolRecommendation' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Cmdlet.GetAzureSqlDatabaseIndexRecommendations","Get-AzSqlDatabaseIndexRecommendations","2","8200","Get-AzSqlDatabaseIndexRecommendations changes the confirm impact. Please ensure that the change in ConfirmImpact is justified","Verify that ConfirmImpact is changed appropriately by the cmdlet. It is very rare for a cmdlet to change the ConfirmImpact." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Cmdlet.GetAzureSqlDatabaseIndexRecommendations","Get-AzSqlDatabaseIndexRecommendations","1","8400","Get-AzSqlDatabaseIndexRecommendations uses the noun 'AzSqlDatabaseIndexRecommendations', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Cmdlet.GetAzureSqlDatabaseIndexRecommendations","Get-AzSqlDatabaseIndexRecommendations","1","8600","Cmdlet 'Get-AzSqlDatabaseIndexRecommendations' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Cmdlet.GetAzureSqlDatabaseIndexRecommendations","Get-AzSqlDatabaseIndexRecommendation","2","8200","Get-AzSqlDatabaseIndexRecommendation changes the confirm impact. Please ensure that the change in ConfirmImpact is justified","Verify that ConfirmImpact is changed appropriately by the cmdlet. It is very rare for a cmdlet to change the ConfirmImpact." +"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Cmdlet.GetAzureSqlDatabaseIndexRecommendations","Get-AzSqlDatabaseIndexRecommendation","1","8600","Cmdlet 'Get-AzSqlDatabaseIndexRecommendation' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Cmdlet.StartAzureSqlDatabaseExecuteIndexRecommendation","Start-AzSqlDatabaseExecuteIndexRecommendation","2","8010","Start-AzSqlDatabaseExecuteIndexRecommendation Changes the ConfirmImpact but does not set the SupportsShouldProcess property to true in the cmdlet attribute.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Cmdlet.StartAzureSqlDatabaseExecuteIndexRecommendation","Start-AzSqlDatabaseExecuteIndexRecommendation","1","8100","Start-AzSqlDatabaseExecuteIndexRecommendation Does not support ShouldProcess but the cmdlet verb Start indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Cmdlet.StartAzureSqlDatabaseExecuteIndexRecommendation","Start-AzSqlDatabaseExecuteIndexRecommendation","2","8200","Start-AzSqlDatabaseExecuteIndexRecommendation changes the confirm impact. Please ensure that the change in ConfirmImpact is justified","Verify that ConfirmImpact is changed appropriately by the cmdlet. It is very rare for a cmdlet to change the ConfirmImpact." @@ -177,9 +176,8 @@ "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Backup.Cmdlet.SetAzureSqlDatabaseBackupLongTermRetentionPolicy","Set-AzSqlDatabaseBackupLongTermRetentionPolicy","2","8200","Set-AzSqlDatabaseBackupLongTermRetentionPolicy changes the confirm impact. Please ensure that the change in ConfirmImpact is justified","Verify that ConfirmImpact is changed appropriately by the cmdlet. It is very rare for a cmdlet to change the ConfirmImpact." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Backup.Cmdlet.SetAzureSqlServerBackupLongTermRetentionVault","Set-AzSqlServerBackupLongTermRetentionVault","2","8200","Set-AzSqlServerBackupLongTermRetentionVault changes the confirm impact. Please ensure that the change in ConfirmImpact is justified","Verify that ConfirmImpact is changed appropriately by the cmdlet. It is very rare for a cmdlet to change the ConfirmImpact." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Backup.Cmdlet.SetAzureSqlServerBackupLongTermRetentionVault","Set-AzSqlServerBackupLongTermRetentionVault","1","8600","Cmdlet 'Set-AzSqlServerBackupLongTermRetentionVault' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Backup.Cmdlet.GetAzureSqlDatabaseRestorePoints","Get-AzSqlDatabaseRestorePoints","2","8200","Get-AzSqlDatabaseRestorePoints changes the confirm impact. Please ensure that the change in ConfirmImpact is justified","Verify that ConfirmImpact is changed appropriately by the cmdlet. It is very rare for a cmdlet to change the ConfirmImpact." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Backup.Cmdlet.GetAzureSqlDatabaseRestorePoints","Get-AzSqlDatabaseRestorePoints","1","8400","Get-AzSqlDatabaseRestorePoints uses the noun 'AzSqlDatabaseRestorePoints', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Backup.Cmdlet.GetAzureSqlDatabaseRestorePoints","Get-AzSqlDatabaseRestorePoints","1","8600","Cmdlet 'Get-AzSqlDatabaseRestorePoints' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Backup.Cmdlet.GetAzureSqlDatabaseRestorePoints","Get-AzSqlDatabaseRestorePoint","2","8200","Get-AzSqlDatabaseRestorePoint changes the confirm impact. Please ensure that the change in ConfirmImpact is justified","Verify that ConfirmImpact is changed appropriately by the cmdlet. It is very rare for a cmdlet to change the ConfirmImpact." +"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Backup.Cmdlet.GetAzureSqlDatabaseRestorePoints","Get-AzSqlDatabaseRestorePoint","1","8600","Cmdlet 'Get-AzSqlDatabaseRestorePoint' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.GetAzureSqlElasticPoolAdvisor","Get-AzSqlElasticPoolAdvisor","1","8600","Cmdlet 'Get-AzSqlElasticPoolAdvisor' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.GetAzureSqlElasticPoolAdvisor","Get-AzSqlElasticPoolAdvisor","1","8410","Parameter ExpandRecommendedActions of cmdlet Get-AzSqlElasticPoolAdvisor does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.GetAzureSqlServerAdvisors","Get-AzSqlServerAdvisor","1","8600","Cmdlet 'Get-AzSqlServerAdvisor' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." @@ -189,41 +187,20 @@ "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.GetAzureSqlDatabaseAdvisor","Get-AzSqlDatabaseAdvisor","1","8600","Cmdlet 'Get-AzSqlDatabaseAdvisor' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.GetAzureSqlDatabaseAdvisor","Get-AzSqlDatabaseAdvisor","1","8410","Parameter ExpandRecommendedActions of cmdlet Get-AzSqlDatabaseAdvisor does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.SetAzureSqlDatabaseAdvisorAutoExecuteStatus","Set-AzSqlDatabaseAdvisorAutoExecuteStatus","1","8600","Cmdlet 'Set-AzSqlDatabaseAdvisorAutoExecuteStatus' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.GetAzureSqlDatabaseVulnerabilityAssessmentSettings","Get-AzSqlDatabaseVulnerabilityAssessmentSettings","1","8400","Get-AzSqlDatabaseVulnerabilityAssessmentSettings uses the noun 'AzSqlDatabaseVulnerabilityAssessmentSettings'"," which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.ClearSqlDatabaseVulnerabilityAssessmentSettings","Clear-AzSqlDatabaseVulnerabilityAssessmentSettings","1","8400","Clear-AzSqlDatabaseVulnerabilityAssessmentSettings uses the noun 'AzSqlDatabaseVulnerabilityAssessmentSettings'"," which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.GetAzureSqlDatabaseVulnerabilityAssessmentSettings","Get-AzSqlDatabaseVulnerabilityAssessmentSettings","1","8400","Get-AzSqlDatabaseVulnerabilityAssessmentSettings uses the noun 'AzSqlDatabaseVulnerabilityAssessmentSettings'"," which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.ClearSqlDatabaseVulnerabilityAssessmentSettings","Clear-AzSqlDatabaseVulnerabilityAssessmentSettings","1","8400","Clear-AzSqlDatabaseVulnerabilityAssessmentSettings uses the noun 'AzSqlDatabaseVulnerabilityAssessmentSettings'"," which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlDatabaseVulnerabilityAssessmentSettings","Update-AzSqlDatabaseVulnerabilityAssessmentSettings","1","8400","Update-AzSqlDatabaseVulnerabilityAssessmentSettings uses the noun 'AzSqlDatabaseVulnerabilityAssessmentSettings'"," which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlDatabaseVulnerabilityAssessmentSettings","Update-AzSqlDatabaseVulnerabilityAssessmentSettings","1","8410","Parameter EmailAdmins of cmdlet Update-AzSqlDatabaseVulnerabilityAssessmentSettings does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlDatabaseVulnerabilityAssessmentSettings","Update-AzSqlDatabaseVulnerabilityAssessmentSetting","1","8410","Parameter EmailAdmins of cmdlet Update-AzSqlDatabaseVulnerabilityAssessmentSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ThreatDetection.Cmdlet.SetAzureSqlServerThreatDetection","Set-AzSqlServerThreatDetectionPolicy","1","8410","Parameter EmailAdmins of cmdlet Set-AzSqlServerThreatDetectionPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ThreatDetection.Cmdlet.SetAzureSqlDatabaseThreatDetection","Set-AzSqlDatabaseThreatDetectionPolicy","1","8410","Parameter EmailAdmins of cmdlet Set-AzSqlDatabaseThreatDetectionPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlDatabaseVulnerabilityAssessmentSettings","Update-AzSqlDatabaseVulnerabilityAssessmentSettings","1","8400","Update-AzSqlDatabaseVulnerabilityAssessmentSettings uses the noun 'AzSqlDatabaseVulnerabilityAssessmentSettings'"," which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlDatabaseVulnerabilityAssessmentSettings","Update-AzSqlDatabaseVulnerabilityAssessmentSettings","1","8410","Parameter EmailAdmins of cmdlet Update-AzSqlDatabaseVulnerabilityAssessmentSettings does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlDatabaseVulnerabilityAssessmentSettings","Update-AzSqlDatabaseVulnerabilityAssessmentSetting","1","8410","Parameter EmailAdmins of cmdlet Update-AzSqlDatabaseVulnerabilityAssessmentSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ThreatDetection.Cmdlet.SetAzureSqlServerThreatDetection","Set-AzSqlServerThreatDetectionPolicy","1","8410","Parameter EmailAdmins of cmdlet Set-AzSqlServerThreatDetectionPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ThreatDetection.Cmdlet.SetAzureSqlDatabaseThreatDetection","Set-AzSqlDatabaseThreatDetectionPolicy","1","8410","Parameter EmailAdmins of cmdlet Set-AzSqlDatabaseThreatDetectionPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Cmdlet.AddAzureRmSqlManagedInstanceTransparentDataEncryptionCertificate","Add-AzSqlManagedInstanceTransparentDataEncryptionCertificate","2","8200","Add-AzSqlManagedInstanceTransparentDataEncryptionCertificate changes the confirm impact. Please ensure that the change in ConfirmImpact is justified","Verify that ConfirmImpact is changed appropriately by the cmdlet. It is very rare for a cmdlet to change the ConfirmImpact." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Cmdlet.AddAzureRmSqlServerTransparentDataEncryptionCertificate","Add-AzSqlServerTransparentDataEncryptionCertificate","2","8200","Add-AzSqlServerTransparentDataEncryptionCertificate changes the confirm impact. Please ensure that the change in ConfirmImpact is justified","Verify that ConfirmImpact is changed appropriately by the cmdlet. It is very rare for a cmdlet to change the ConfirmImpact." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.GetAzureSqlDatabaseVulnerabilityAssessmentSettings","Get-AzSqlDatabaseVulnerabilityAssessmentSettings","1","8400","Get-AzSqlDatabaseVulnerabilityAssessmentSettings uses the noun 'AzSqlDatabaseVulnerabilityAssessmentSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.ClearSqlDatabaseVulnerabilityAssessmentSettings","Clear-AzSqlDatabaseVulnerabilityAssessmentSettings","1","8400","Clear-AzSqlDatabaseVulnerabilityAssessmentSettings uses the noun 'AzSqlDatabaseVulnerabilityAssessmentSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlDatabaseVulnerabilityAssessmentSettings","Update-AzSqlDatabaseVulnerabilityAssessmentSettings","1","8400","Update-AzSqlDatabaseVulnerabilityAssessmentSettings uses the noun 'AzSqlDatabaseVulnerabilityAssessmentSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Cmdlet.AddAzureRmSqlManagedInstanceTransparentDataEncryptionCertificate","Add-AzSqlManagedInstanceTransparentDataEncryptionCertificate","2","8200","Add-AzSqlManagedInstanceTransparentDataEncryptionCertificate changes the confirm impact. Please ensure that the change in ConfirmImpact is justified","Verify that ConfirmImpact is changed appropriately by the cmdlet. It is very rare for a cmdlet to change the ConfirmImpact." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Cmdlet.AddAzureRmSqlServerTransparentDataEncryptionCertificate","Add-AzSqlServerTransparentDataEncryptionCertificate","2","8200","Add-AzSqlServerTransparentDataEncryptionCertificate changes the confirm impact. Please ensure that the change in ConfirmImpact is justified","Verify that ConfirmImpact is changed appropriately by the cmdlet. It is very rare for a cmdlet to change the ConfirmImpact." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.GetAzureSqlDatabaseVulnerabilityAssessmentSettings","Get-AzSqlDatabaseVulnerabilityAssessmentSettings","1","8400","Get-AzSqlDatabaseVulnerabilityAssessmentSettings uses the noun 'AzSqlDatabaseVulnerabilityAssessmentSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.ClearSqlDatabaseVulnerabilityAssessmentSettings","Clear-AzSqlDatabaseVulnerabilityAssessmentSettings","1","8400","Clear-AzSqlDatabaseVulnerabilityAssessmentSettings uses the noun 'AzSqlDatabaseVulnerabilityAssessmentSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlDatabaseVulnerabilityAssessmentSettings","Update-AzSqlDatabaseVulnerabilityAssessmentSettings","1","8400","Update-AzSqlDatabaseVulnerabilityAssessmentSettings uses the noun 'AzSqlDatabaseVulnerabilityAssessmentSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.ClearSqlManagedDatabaseVulnerabilityAssessmentSettings","Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings","1","8400","Clear-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings uses the noun 'AzSqlInstanceDatabaseVulnerabilityAssessmentSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.GetAzureSqlManagedDatabaseVulnerabilityAssessmentSettings","Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings","1","8400","Get-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings uses the noun 'AzSqlInstanceDatabaseVulnerabilityAssessmentSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlManagedDatabaseVulnerabilityAssessmentSettings","Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings","1","8400","Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings uses the noun 'AzSqlInstanceDatabaseVulnerabilityAssessmentSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlManagedDatabaseVulnerabilityAssessmentSettings","Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings","1","8410","Parameter EmailAdmins of cmdlet Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSettings does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlManagedDatabaseVulnerabilityAssessmentSettings","Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting","1","8410","Parameter EmailAdmins of cmdlet Update-AzSqlInstanceDatabaseVulnerabilityAssessmentSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Backup.Cmdlet.SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy","Set-AzSqlDatabaseBackupShortTermRetentionPolicy","1","8410","Parameter RetentionDays of cmdlet Set-AzSqlDatabaseBackupShortTermRetentionPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.ClearSqlManagedInstanceVulnerabilityAssessmentSettings","Clear-AzSqlInstanceVulnerabilityAssessmentSettings","1","8400","Clear-AzSqlInstanceVulnerabilityAssessmentSettings uses the noun 'AzSqlInstanceVulnerabilityAssessmentSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.GetAzureSqlManagedInstanceVulnerabilityAssessmentSettings","Get-AzSqlInstanceVulnerabilityAssessmentSettings","1","8400","Get-AzSqlInstanceVulnerabilityAssessmentSettings uses the noun 'AzSqlInstanceVulnerabilityAssessmentSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlManagedInstanceVulnerabilityAssessmentSettings","Update-AzSqlInstanceVulnerabilityAssessmentSettings","1","8400","Update-AzSqlInstanceVulnerabilityAssessmentSettings uses the noun 'AzSqlInstanceVulnerabilityAssessmentSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlManagedInstanceVulnerabilityAssessmentSettings","Update-AzSqlInstanceVulnerabilityAssessmentSettings","1","8410","Parameter EmailAdmins of cmdlet Update-AzSqlInstanceVulnerabilityAssessmentSettings does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.ClearSqlServerVulnerabilityAssessmentSettings","Clear-AzSqlServerVulnerabilityAssessmentSettings","1","8400","Clear-AzSqlServerVulnerabilityAssessmentSettings uses the noun 'AzSqlServerVulnerabilityAssessmentSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.GetAzureSqlServerVulnerabilityAssessmentSettings","Get-AzSqlServerVulnerabilityAssessmentSettings","1","8400","Get-AzSqlServerVulnerabilityAssessmentSettings uses the noun 'AzSqlServerVulnerabilityAssessmentSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlServerVulnerabilityAssessmentSettings","Update-AzSqlServerVulnerabilityAssessmentSettings","1","8400","Update-AzSqlServerVulnerabilityAssessmentSettings uses the noun 'AzSqlServerVulnerabilityAssessmentSettings', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlServerVulnerabilityAssessmentSettings","Update-AzSqlServerVulnerabilityAssessmentSettings","1","8410","Parameter EmailAdmins of cmdlet Update-AzSqlServerVulnerabilityAssessmentSettings does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlManagedInstanceVulnerabilityAssessmentSettings","Update-AzSqlInstanceVulnerabilityAssessmentSetting","1","8410","Parameter EmailAdmins of cmdlet Update-AzSqlInstanceVulnerabilityAssessmentSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.VulnerabilityAssessmentSettings.Cmdlet.UpdateAzureSqlServerVulnerabilityAssessmentSettings","Update-AzSqlServerVulnerabilityAssessmentSetting","1","8410","Parameter EmailAdmins of cmdlet Update-AzSqlServerVulnerabilityAssessmentSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Auditing.Cmdlet.SetAzSqlServerAuditing","Set-AzSqlServerAuditing","1","8410","Parameter LogAnalytics of cmdlet Set-AzSqlServerAuditing does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Auditing.Cmdlet.SetAzSqlDatabaseAuditing","Set-AzSqlDatabaseAuditing","1","8410","Parameter LogAnalytics of cmdlet Set-AzSqlDatabaseAuditing does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "c:\workspace\powershell\artifacts\Debug\Az.Sql\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Auditing.Cmdlet.GetAzSqlServerAuditing","Get-AzSqlServerAuditing","1","8410","Parameter LogAnalytics of cmdlet Get-AzSqlServerAuditing does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." diff --git a/tools/StaticAnalysis/Exceptions/Az.Websites/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Websites/SignatureIssues.csv index 1a190228835a..2cc8953eda6a 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Websites/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Websites/SignatureIssues.csv @@ -15,14 +15,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotCmdlet","Get-AzWebAppSlot","1","8510","Cmdlet 'Get-AzWebAppSlot' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotConfigName","Get-AzWebAppSlotConfigName","1","8600","Cmdlet 'Get-AzWebAppSlotConfigName' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotConfigName","Get-AzWebAppSlotConfigName","1","8510","Cmdlet 'Get-AzWebAppSlotConfigName' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotMetricsCmdlet","Get-AzWebAppSlotMetrics","1","8400","Get-AzWebAppSlotMetrics uses the noun 'AzWebAppSlotMetrics', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotMetricsCmdlet","Get-AzWebAppSlotMetrics","1","8600","Cmdlet 'Get-AzWebAppSlotMetrics' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotMetricsCmdlet","Get-AzWebAppSlotMetrics","1","8410","Parameter Metrics of cmdlet Get-AzWebAppSlotMetrics does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotMetricsCmdlet","Get-AzWebAppSlotMetrics","1","8410","Parameter InstanceDetails of cmdlet Get-AzWebAppSlotMetrics does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotMetricsCmdlet","Get-AzWebAppSlotMetrics","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Get-AzWebAppSlotMetrics' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotMetricsCmdlet","Get-AzWebAppSlotMetrics","1","8420","Parameter set 'S1' of cmdlet 'Get-AzWebAppSlotMetrics' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotMetricsCmdlet","Get-AzWebAppSlotMetrics","1","8420","Parameter set 'S2' of cmdlet 'Get-AzWebAppSlotMetrics' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotMetricsCmdlet","Get-AzWebAppSlotMetrics","1","8510","Cmdlet 'Get-AzWebAppSlotMetrics' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotMetricsCmdlet","Get-AzWebAppSlotMetric","1","8600","Cmdlet 'Get-AzWebAppSlotMetric' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotMetricsCmdlet","Get-AzWebAppSlotMetric","1","8410","Parameter Metrics of cmdlet Get-AzWebAppSlotMetric does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotMetricsCmdlet","Get-AzWebAppSlotMetric","1","8410","Parameter InstanceDetails of cmdlet Get-AzWebAppSlotMetric does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotMetricsCmdlet","Get-AzWebAppSlotMetric","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Get-AzWebAppSlotMetric' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotMetricsCmdlet","Get-AzWebAppSlotMetric","1","8420","Parameter set 'S1' of cmdlet 'Get-AzWebAppSlotMetric' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotMetricsCmdlet","Get-AzWebAppSlotMetric","1","8420","Parameter set 'S2' of cmdlet 'Get-AzWebAppSlotMetric' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotMetricsCmdlet","Get-AzWebAppSlotMetric","1","8510","Cmdlet 'Get-AzWebAppSlotMetric' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotPublishingProfileCmdlet","Get-AzWebAppSlotPublishingProfile","1","8600","Cmdlet 'Get-AzWebAppSlotPublishingProfile' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotPublishingProfileCmdlet","Get-AzWebAppSlotPublishingProfile","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Get-AzWebAppSlotPublishingProfile' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotPublishingProfileCmdlet","Get-AzWebAppSlotPublishingProfile","1","8420","Parameter set 'S1' of cmdlet 'Get-AzWebAppSlotPublishingProfile' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." @@ -78,14 +77,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.RestoreAzureWebAppBackup","Restore-AzWebAppBackup","1","8510","Cmdlet 'Restore-AzWebAppBackup' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.RestoreAzureWebAppSnapshot","Restore-AzWebAppSnapshot","1","8600","Cmdlet 'Restore-AzWebAppSnapshot' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.RestoreAzureWebAppSnapshot","Restore-AzWebAppSnapshot","1","8510","Cmdlet 'Restore-AzWebAppSnapshot' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureAppServicePlanMetricsCmdlet","Get-AzAppServicePlanMetrics","1","8400","Get-AzAppServicePlanMetrics uses the noun 'AzAppServicePlanMetrics', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureAppServicePlanMetricsCmdlet","Get-AzAppServicePlanMetrics","1","8600","Cmdlet 'Get-AzAppServicePlanMetrics' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureAppServicePlanMetricsCmdlet","Get-AzAppServicePlanMetrics","1","8410","Parameter Metrics of cmdlet Get-AzAppServicePlanMetrics does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureAppServicePlanMetricsCmdlet","Get-AzAppServicePlanMetrics","1","8410","Parameter InstanceDetails of cmdlet Get-AzAppServicePlanMetrics does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureAppServicePlanMetricsCmdlet","Get-AzAppServicePlanMetrics","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Get-AzAppServicePlanMetrics' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureAppServicePlanMetricsCmdlet","Get-AzAppServicePlanMetrics","1","8420","Parameter set 'S1' of cmdlet 'Get-AzAppServicePlanMetrics' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureAppServicePlanMetricsCmdlet","Get-AzAppServicePlanMetrics","1","8420","Parameter set 'S2' of cmdlet 'Get-AzAppServicePlanMetrics' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureAppServicePlanMetricsCmdlet","Get-AzAppServicePlanMetrics","1","8510","Cmdlet 'Get-AzAppServicePlanMetrics' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureAppServicePlanMetricsCmdlet","Get-AzAppServicePlanMetric","1","8600","Cmdlet 'Get-AzAppServicePlanMetric' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureAppServicePlanMetricsCmdlet","Get-AzAppServicePlanMetric","1","8410","Parameter Metrics of cmdlet Get-AzAppServicePlanMetric does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureAppServicePlanMetricsCmdlet","Get-AzAppServicePlanMetric","1","8410","Parameter InstanceDetails of cmdlet Get-AzAppServicePlanMetric does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureAppServicePlanMetricsCmdlet","Get-AzAppServicePlanMetric","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Get-AzAppServicePlanMetric' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureAppServicePlanMetricsCmdlet","Get-AzAppServicePlanMetric","1","8420","Parameter set 'S1' of cmdlet 'Get-AzAppServicePlanMetric' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureAppServicePlanMetricsCmdlet","Get-AzAppServicePlanMetric","1","8420","Parameter set 'S2' of cmdlet 'Get-AzAppServicePlanMetric' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureAppServicePlanMetricsCmdlet","Get-AzAppServicePlanMetric","1","8510","Cmdlet 'Get-AzAppServicePlanMetric' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppCertificate","Get-AzWebAppCertificate","1","8600","Cmdlet 'Get-AzWebAppCertificate' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppSSLBinding","Get-AzWebAppSSLBinding","1","8600","Cmdlet 'Get-AzWebAppSSLBinding' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppSSLBinding","Get-AzWebAppSSLBinding","1","8510","Cmdlet 'Get-AzWebAppSSLBinding' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." @@ -110,14 +108,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppBackupCmdlet","Get-AzWebAppBackup","1","8510","Cmdlet 'Get-AzWebAppBackup' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppBackupConfiguration","Get-AzWebAppBackupConfiguration","1","8510","Cmdlet 'Get-AzWebAppBackupConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppBackupList","Get-AzWebAppBackupList","1","8510","Cmdlet 'Get-AzWebAppBackupList' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppMetricsCmdlet","Get-AzWebAppMetrics","1","8400","Get-AzWebAppMetrics uses the noun 'AzWebAppMetrics', which does not follow the enforced naming convention of using a singular noun for a cmdlet name.","Consider using a singular noun for the cmdlet name." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppMetricsCmdlet","Get-AzWebAppMetrics","1","8600","Cmdlet 'Get-AzWebAppMetrics' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppMetricsCmdlet","Get-AzWebAppMetrics","1","8410","Parameter Metrics of cmdlet Get-AzWebAppMetrics does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppMetricsCmdlet","Get-AzWebAppMetrics","1","8410","Parameter InstanceDetails of cmdlet Get-AzWebAppMetrics does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppMetricsCmdlet","Get-AzWebAppMetrics","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Get-AzWebAppMetrics' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppMetricsCmdlet","Get-AzWebAppMetrics","1","8420","Parameter set 'S1' of cmdlet 'Get-AzWebAppMetrics' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppMetricsCmdlet","Get-AzWebAppMetrics","1","8420","Parameter set 'S2' of cmdlet 'Get-AzWebAppMetrics' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppMetricsCmdlet","Get-AzWebAppMetrics","1","8510","Cmdlet 'Get-AzWebAppMetrics' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppMetricsCmdlet","Get-AzWebAppMetric","1","8600","Cmdlet 'Get-AzWebAppMetric' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppMetricsCmdlet","Get-AzWebAppMetric","1","8410","Parameter Metrics of cmdlet Get-AzWebAppMetric does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppMetricsCmdlet","Get-AzWebAppMetric","1","8410","Parameter InstanceDetails of cmdlet Get-AzWebAppMetric does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppMetricsCmdlet","Get-AzWebAppMetric","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Get-AzWebAppMetric' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppMetricsCmdlet","Get-AzWebAppMetric","1","8420","Parameter set 'S1' of cmdlet 'Get-AzWebAppMetric' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppMetricsCmdlet","Get-AzWebAppMetric","1","8420","Parameter set 'S2' of cmdlet 'Get-AzWebAppMetric' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppMetricsCmdlet","Get-AzWebAppMetric","1","8510","Cmdlet 'Get-AzWebAppMetric' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppPublishingProfileCmdlet","Get-AzWebAppPublishingProfile","1","8600","Cmdlet 'Get-AzWebAppPublishingProfile' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppPublishingProfileCmdlet","Get-AzWebAppPublishingProfile","1","8510","Cmdlet 'Get-AzWebAppPublishingProfile' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppCmdlet","Get-AzWebApp","1","8600","Cmdlet 'Get-AzWebApp' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." diff --git a/tools/TestNet472Modules.ps1 b/tools/TestNet472Modules.ps1 index d9e1a70de314..7bb58b351563 100644 --- a/tools/TestNet472Modules.ps1 +++ b/tools/TestNet472Modules.ps1 @@ -36,7 +36,7 @@ $rmItems | %{` -Wait ` -WorkingDirectory $testDir ` -NoNewWindow ` - -ArgumentList $_.FullName, $testConfig, '-trait "AcceptanceType=CheckIn"', '-notrait "Runtype=DesktopOnly"', '-notrait "Runtype=CoreOnly"', "-xml $logPath" ` + -ArgumentList $_.FullName, $testConfig, '-trait "AcceptanceType=CheckIn"', '-notrait "RunType=DesktopOnly"', '-notrait "RunType=CoreOnly"', "-xml $logPath" ` } finally { $copiedItems | %{Remove-Item -Force (Join-Path $testDir $_.Name)} diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json index f463daad0eaa..e69c7ebe68f4 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Common", "Name": "Microsoft.Azure.Commands.Common.VTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProfileName": "System.String" }, @@ -512,7 +512,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -752,7 +752,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1105,7 +1105,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1434,7 +1434,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1811,7 +1811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2144,7 +2144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2569,7 +2569,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2997,7 +2997,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3477,7 +3477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3646,7 +3646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3850,7 +3850,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4088,7 +4088,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4326,7 +4326,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4503,7 +4503,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4656,7 +4656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5492,7 +5492,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5980,7 +5980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6157,7 +6157,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6310,7 +6310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7803,7 +7803,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8105,7 +8105,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8413,7 +8413,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8736,7 +8736,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9018,7 +9018,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9273,7 +9273,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9501,7 +9501,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10456,13 +10456,31 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "AzureAnalysisServicesEndpointResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "Scope", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10747,6 +10765,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AzureAnalysisServicesEndpointResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Scope", @@ -10754,7 +10796,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11505,6 +11547,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AzureAnalysisServicesEndpointResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Scope", @@ -11512,7 +11578,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11908,6 +11974,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AzureAnalysisServicesEndpointResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Scope", @@ -11915,7 +12005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12425,7 +12515,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12591,7 +12681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13326,13 +13416,31 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "AzureAnalysisServicesEndpointResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "Scope", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13617,6 +13725,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AzureAnalysisServicesEndpointResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Scope", @@ -13624,7 +13756,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14375,6 +14507,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AzureAnalysisServicesEndpointResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Scope", @@ -14382,7 +14538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14778,6 +14934,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AzureAnalysisServicesEndpointResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Scope", @@ -14785,7 +14965,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15929,7 +16109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Errors", "Name": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ErrorCategory": "System.Management.Automation.ErrorCategoryInfo", "ErrorDetails": "System.Management.Automation.ErrorDetails", @@ -15986,7 +16166,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Errors", "Name": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "InnerException": "System.Boolean", "Exception": "System.Exception", @@ -16056,7 +16236,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Errors", "Name": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestMessage": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo", "ServerResponse": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo", @@ -16489,7 +16669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16703,7 +16883,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16904,7 +17084,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17064,7 +17244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Models", "Name": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -17297,7 +17477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Models", "Name": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -17390,7 +17570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17580,7 +17760,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17757,7 +17937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18463,7 +18643,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18605,7 +18785,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18823,7 +19003,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18965,7 +19145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19183,7 +19363,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19325,7 +19505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19540,7 +19720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19730,7 +19910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20085,7 +20265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20360,7 +20540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20561,7 +20741,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20916,7 +21096,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21191,7 +21371,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21392,7 +21572,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21711,7 +21891,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21938,7 +22118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22091,7 +22271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Profile.Common", "Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23175,7 +23355,7 @@ "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo": { "Namespace": "Microsoft.Azure.Commands.Profile.Errors", "Name": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Headers": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.IEnumerable`1[System.String]]", "Verb": "System.String", @@ -23272,7 +23452,7 @@ "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo": { "Namespace": "Microsoft.Azure.Commands.Profile.Errors", "Name": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Headers": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.IEnumerable`1[System.String]]", "ResponseStatusCode": "System.String", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.Dataplane.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.Dataplane.dll.json index 513e68a4ef35..9fa2620b438e 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.Dataplane.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.Dataplane.dll.json @@ -27,16 +27,6 @@ "Parameters": [], "ReturnType": "System.String" }, - { - "Name": "CreateEnvironment", - "Parameters": [ - { - "Name": "environmentName", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "Microsoft.Azure.Commands.AnalysisServices.Dataplane.AsAzureEnvironment" - }, { "Name": "Equals", "Parameters": [ @@ -96,7 +86,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -114,7 +104,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -216,7 +206,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -269,7 +259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -293,7 +283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -370,7 +360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -495,7 +485,7 @@ ], "Parameters": [ { - "Name": "Instance", + "Name": "OutputPath", "AliasList": [], "Type": { "Namespace": "System", @@ -513,7 +503,25 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "OutputPath", + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Instance", "AliasList": [], "Type": { "Namespace": "System", @@ -531,12 +539,12 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Force", + "Name": "PassThru", "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -546,7 +554,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -555,7 +563,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Instance", + "Name": "OutputPath", "AliasList": [], "Type": { "Namespace": "System", @@ -579,7 +587,31 @@ }, { "ParameterMetadata": { - "Name": "OutputPath", + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Instance", "AliasList": [], "Type": { "Namespace": "System", @@ -597,18 +629,18 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, + "Position": 0, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "PassThru", "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -618,7 +650,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -684,7 +716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -721,8 +753,8 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, + "Position": 0, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -732,7 +764,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -825,7 +857,7 @@ ], "Parameters": [ { - "Name": "Instance", + "Name": "Database", "AliasList": [], "Type": { "Namespace": "System", @@ -843,7 +875,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Database", + "Name": "Instance", "AliasList": [], "Type": { "Namespace": "System", @@ -866,7 +898,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -885,7 +917,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Instance", + "Name": "Database", "AliasList": [], "Type": { "Namespace": "System", @@ -903,13 +935,13 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": 0, + "Position": 1, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Database", + "Name": "Instance", "AliasList": [], "Type": { "Namespace": "System", @@ -927,7 +959,7 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": 1, + "Position": 0, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, @@ -938,7 +970,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1147,16 +1179,7 @@ { "Name": "", "ReturnType": null, - "Parameters": [ - { - "Name": "account", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "environment", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] + "Parameters": [] } ] }, @@ -1259,12 +1282,7 @@ { "Name": "", "ReturnType": null, - "Parameters": [ - { - "Name": "Name", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] + "Parameters": [] } ] }, diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll.json index ee6acbc8440a..aefee5d793cd 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FirewallConfig": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig", "GatewayInfo": "Microsoft.Azure.Commands.AnalysisServices.Models.ServerGateway", @@ -257,7 +257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EnablePowerBIService": "System.Boolean", "FirewallRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule]" @@ -338,7 +338,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421,7 +421,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -498,7 +498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FirewallRuleName": "System.String", "RangeStart": "System.String", @@ -782,7 +782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FirewallConfig": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig", "GatewayInfo": "Microsoft.Azure.Commands.AnalysisServices.Models.ServerGateway", @@ -1014,7 +1014,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EnablePowerBIService": "System.Boolean", "FirewallRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule]" @@ -1352,7 +1352,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EnablePowerBIService": "System.Boolean", "FirewallRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule]" @@ -1497,7 +1497,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FirewallConfig": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig", "GatewayInfo": "Microsoft.Azure.Commands.AnalysisServices.Models.ServerGateway", @@ -1782,7 +1782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FirewallConfig": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig", "GatewayInfo": "Microsoft.Azure.Commands.AnalysisServices.Models.ServerGateway", @@ -2067,7 +2067,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FirewallConfig": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig", "GatewayInfo": "Microsoft.Azure.Commands.AnalysisServices.Models.ServerGateway", @@ -2317,7 +2317,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EnablePowerBIService": "System.Boolean", "FirewallRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule]" @@ -2649,7 +2649,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EnablePowerBIService": "System.Boolean", "FirewallRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule]" @@ -3004,7 +3004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EnablePowerBIService": "System.Boolean", "FirewallRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule]" @@ -3335,7 +3335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EnablePowerBIService": "System.Boolean", "FirewallRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule]" @@ -3666,7 +3666,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EnablePowerBIService": "System.Boolean", "FirewallRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule]" @@ -3787,7 +3787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesServer, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FirewallConfig": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig", "GatewayInfo": "Microsoft.Azure.Commands.AnalysisServices.Models.ServerGateway", @@ -4398,7 +4398,7 @@ "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallConfig, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EnablePowerBIService": "System.Boolean", "FirewallRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule]" @@ -4452,7 +4452,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -4464,7 +4464,7 @@ "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.PsAzureAnalysisServicesFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FirewallRuleName": "System.String", "RangeStart": "System.String", @@ -4533,7 +4533,7 @@ "Microsoft.Azure.Commands.AnalysisServices.Models.ServerGateway": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.ServerGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.ServerGateway, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.ServerGateway, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "GatewayResourceId": "System.String", "GatewayObjectId": "System.String", @@ -4579,7 +4579,7 @@ "Microsoft.Azure.Commands.AnalysisServices.Models.ServerSku": { "Namespace": "Microsoft.Azure.Commands.AnalysisServices.Models", "Name": "Microsoft.Azure.Commands.AnalysisServices.Models.ServerSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.ServerSku, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.AnalysisServices.Models.ServerSku, Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Int32", "Tier": "System.String", @@ -4825,4 +4825,4 @@ "Constructors": [] } } -} \ No newline at end of file +} diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Automation.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Automation.dll.json index 6d70d15bcf39..a761342d7ee9 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Automation.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Automation.dll.json @@ -1432,7 +1432,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -1798,7 +1798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "AutomationAccountName": "System.String", @@ -2047,7 +2047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exportable": "System.Boolean", "ExpiryTime": "System.DateTimeOffset", @@ -2438,7 +2438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LogVerbose": "System.Boolean", "Tags": "System.Collections.Hashtable", @@ -2835,7 +2835,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Connection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FieldDefinitionValues": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -3359,7 +3359,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationTime": "System.DateTimeOffset", "LastModifiedTime": "System.DateTimeOffset", @@ -3748,7 +3748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CompilationJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "JobParameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -4622,7 +4622,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.JobStream", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Time": "System.DateTimeOffset", "JobId": "System.Guid", @@ -4723,7 +4723,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4952,7 +4952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.CompilationJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5191,7 +5191,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DscNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RegistrationTime": "System.DateTimeOffset", "LastSeen": "System.DateTimeOffset", @@ -5290,7 +5290,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5649,7 +5649,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5883,7 +5883,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6115,7 +6115,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.DscNodeStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6538,7 +6538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CompilationJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "JobParameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -7234,7 +7234,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Job": "Microsoft.Azure.Commands.Automation.Model.Job", "JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", @@ -8001,7 +8001,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeploymentSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeploymentSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeploymentSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", "JobScheduleId": "System.Guid", @@ -8388,7 +8388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DscNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RegistrationTime": "System.DateTimeOffset", "LastSeen": "System.DateTimeOffset", @@ -9187,7 +9187,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DscOnboardingMetaconfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscOnboardingMetaconfig, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscOnboardingMetaconfig, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "AutomationAccountName": "System.String", @@ -9560,7 +9560,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorkerGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorkerGroup, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorkerGroup, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RunbookWorker": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker]", "ResourceGroupName": "System.String", @@ -9951,7 +9951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Job", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "JobParameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -10842,7 +10842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.JobStream", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Time": "System.DateTimeOffset", "JobId": "System.Guid", @@ -10943,7 +10943,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.StreamType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.StreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.StreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11167,7 +11167,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.StreamType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.StreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.StreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11401,7 +11401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.JobStreamRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStreamRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobStreamRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Value": "System.Collections.Hashtable", "Time": "System.DateTimeOffset", @@ -11745,7 +11745,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Module", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsGlobal": "System.Boolean", "CreationTime": "System.DateTimeOffset", @@ -12137,7 +12137,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Runbook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LogVerbose": "System.Boolean", "LogProgress": "System.Boolean", @@ -12538,7 +12538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -12944,7 +12944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -13752,7 +13752,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControl", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoSync": "System.Boolean", "PublishRunbook": "System.Boolean", @@ -14284,7 +14284,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationTime": "System.DateTimeOffset", "SourceControlSyncJobId": "System.Guid", @@ -14363,7 +14363,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationTime": "System.DateTimeOffset", "SourceControlSyncJobId": "System.Guid", @@ -14713,7 +14713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStream", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStream, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SourceControlSyncJobId": "System.Guid", "Time": "System.Nullable`1[System.DateTimeOffset]", @@ -14795,7 +14795,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStreamRecord", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStreamRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJobStreamRecord, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Value": "System.Collections.Hashtable", "SourceControlSyncJobId": "System.Guid", @@ -14923,7 +14923,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15173,7 +15173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Common", "Name": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Common.SourceControlSyncJobStreamType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15407,7 +15407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Variable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Encrypted": "System.Boolean", "CreationTime": "System.DateTimeOffset", @@ -15797,7 +15797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Webhook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -16329,7 +16329,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LogVerbose": "System.Boolean", "Tags": "System.Collections.Hashtable", @@ -16848,7 +16848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationTime": "System.DateTimeOffset", "LastModifiedTime": "System.DateTimeOffset", @@ -17233,7 +17233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Runbook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LogVerbose": "System.Boolean", "LogProgress": "System.Boolean", @@ -17904,7 +17904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -18294,7 +18294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exportable": "System.Boolean", "ExpiryTime": "System.DateTimeOffset", @@ -18873,7 +18873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Connection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FieldDefinitionValues": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -19385,7 +19385,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationTime": "System.DateTimeOffset", "LastModifiedTime": "System.DateTimeOffset", @@ -19854,7 +19854,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AgentRegistration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "AutomationAccountName": "System.String", @@ -20151,7 +20151,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Module", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsGlobal": "System.Boolean", "CreationTime": "System.DateTimeOffset", @@ -20495,7 +20495,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Runbook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LogVerbose": "System.Boolean", "LogProgress": "System.Boolean", @@ -21261,7 +21261,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -21423,7 +21423,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Cmdlet", "Name": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth", "GenericTypeArguments": [], @@ -21461,7 +21461,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Cmdlet", "Name": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22279,7 +22279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Cmdlet", "Name": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth", "GenericTypeArguments": [], @@ -22589,7 +22589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Cmdlet", "Name": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DayOfWeekOccurrence, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23721,7 +23721,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControl", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoSync": "System.Boolean", "PublishRunbook": "System.Boolean", @@ -24363,7 +24363,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Variable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Encrypted": "System.Boolean", "CreationTime": "System.DateTimeOffset", @@ -24875,7 +24875,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Webhook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -25429,7 +25429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Runbook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LogVerbose": "System.Boolean", "LogProgress": "System.Boolean", @@ -26453,7 +26453,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -26977,7 +26977,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -31760,7 +31760,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.AutomationAccount, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -32108,7 +32108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CertificateInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exportable": "System.Boolean", "ExpiryTime": "System.DateTimeOffset", @@ -32693,7 +32693,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Connection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Connection, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FieldDefinitionValues": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -33163,7 +33163,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CredentialInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationTime": "System.DateTimeOffset", "LastModifiedTime": "System.DateTimeOffset", @@ -33632,7 +33632,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DscNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RegistrationTime": "System.DateTimeOffset", "LastSeen": "System.DateTimeOffset", @@ -34155,7 +34155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Module", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Module, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsGlobal": "System.Boolean", "CreationTime": "System.DateTimeOffset", @@ -34681,7 +34681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Runbook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Runbook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LogVerbose": "System.Boolean", "LogProgress": "System.Boolean", @@ -35354,7 +35354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -35890,7 +35890,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Variable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Variable, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Encrypted": "System.Boolean", "CreationTime": "System.DateTimeOffset", @@ -36518,7 +36518,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Webhook", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Webhook, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -36904,7 +36904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.CompilationJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.CompilationJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "JobParameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -37291,7 +37291,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Job": "Microsoft.Azure.Commands.Automation.Model.Job", "JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", @@ -37538,7 +37538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -37645,7 +37645,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Job": "Microsoft.Azure.Commands.Automation.Model.Job", "JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", @@ -37978,7 +37978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -38239,7 +38239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Job": "Microsoft.Azure.Commands.Automation.Model.Job", "JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", @@ -38644,7 +38644,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Job", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "JobParameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -39420,7 +39420,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControlSyncJob, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationTime": "System.DateTimeOffset", "SourceControlSyncJobId": "System.Guid", @@ -39842,7 +39842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Job": "Microsoft.Azure.Commands.Automation.Model.Job", "JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", @@ -40405,7 +40405,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.NodeConfigurationDeployment, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Job": "Microsoft.Azure.Commands.Automation.Model.Job", "JobSchedule": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", @@ -41220,7 +41220,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DscNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DscNode, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RegistrationTime": "System.DateTimeOffset", "LastSeen": "System.DateTimeOffset", @@ -42278,7 +42278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.SourceControl", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.SourceControl, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoSync": "System.Boolean", "PublishRunbook": "System.Boolean", @@ -42836,7 +42836,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule", "ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo", @@ -43339,7 +43339,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetComputerType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ComputerType", "OperatingSystem": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType", @@ -43433,7 +43433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperatingSystem": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType", "Status": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus", @@ -43494,7 +43494,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -43747,7 +43747,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -43889,7 +43889,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperatingSystem": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType", "Status": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus", @@ -43956,7 +43956,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -44098,7 +44098,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -44339,7 +44339,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRun, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperatingSystem": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType", "Status": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus", @@ -44437,7 +44437,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule", "ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo", @@ -44493,7 +44493,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -44513,7 +44513,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -44766,7 +44766,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -44792,7 +44792,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -44934,7 +44934,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule", "ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo", @@ -44996,7 +44996,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -45022,7 +45022,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -45164,7 +45164,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -45190,7 +45190,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -45431,7 +45431,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TagSettings": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings", "Locations": "System.String[]", @@ -45540,7 +45540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -45790,7 +45790,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -45998,7 +45998,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule", "ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo", @@ -46055,7 +46055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -46306,7 +46306,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties", "GenericTypeArguments": [], @@ -46324,7 +46324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties", "GenericTypeArguments": [], @@ -46360,7 +46360,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -46463,7 +46463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses", "GenericTypeArguments": [], @@ -46517,7 +46517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses", "GenericTypeArguments": [], @@ -46646,7 +46646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -46909,7 +46909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties", "GenericTypeArguments": [], @@ -46933,7 +46933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties", "GenericTypeArguments": [], @@ -46981,7 +46981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -47206,7 +47206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses", "GenericTypeArguments": [], @@ -47278,7 +47278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -47541,7 +47541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties", "GenericTypeArguments": [], @@ -47565,7 +47565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties", "GenericTypeArguments": [], @@ -47613,7 +47613,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -47838,7 +47838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses", "GenericTypeArguments": [], @@ -47910,7 +47910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -48173,7 +48173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties", "GenericTypeArguments": [], @@ -48197,7 +48197,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties[], Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties", "GenericTypeArguments": [], @@ -48245,7 +48245,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -48505,7 +48505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule", "ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo", @@ -48794,7 +48794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScheduleConfiguration": "Microsoft.Azure.Commands.Automation.Model.Schedule", "ErrorInfo": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo", @@ -49478,7 +49478,7 @@ "Microsoft.Azure.Commands.Automation.Model.Job": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Job", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Job, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "JobParameters": "System.Collections.Hashtable", "CreationTime": "System.DateTimeOffset", @@ -49572,7 +49572,7 @@ "Microsoft.Azure.Commands.Automation.Model.JobSchedule": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.JobSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.JobSchedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -49653,7 +49653,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -49665,7 +49665,7 @@ "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.HybridRunbookWorker, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RegistrationTime": "System.DateTimeOffset", "LastSeenDateTime": "System.DateTimeOffset", @@ -49722,7 +49722,7 @@ "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DayOfWeek": "Microsoft.Azure.Commands.Automation.Model.DayOfWeek", "DaysOfMonth": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth]" @@ -49767,7 +49767,7 @@ "Microsoft.Azure.Commands.Automation.Model.DayOfWeek": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.DayOfWeek", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DayOfWeek, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.DayOfWeek, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Occurrence": "System.String", "Day": "System.String" @@ -49812,7 +49812,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -49824,7 +49824,7 @@ "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth": { "Namespace": "Microsoft.Azure.Commands.Automation.Cmdlet", "Name": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Cmdlet.DaysOfMonth, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -49919,7 +49919,7 @@ "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -50014,7 +50014,7 @@ "Microsoft.Azure.Commands.Automation.Model.WeeklyScheduleOptions": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.WeeklyScheduleOptions", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.WeeklyScheduleOptions, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.WeeklyScheduleOptions, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DaysOfWeek": "System.Collections.Generic.IList`1[System.String]" }, @@ -50271,7 +50271,7 @@ "Microsoft.Azure.Commands.Automation.Model.Schedule": { "Namespace": "Microsoft.Azure.Commands.Automation.Model", "Name": "Microsoft.Azure.Commands.Automation.Model.Schedule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.Schedule, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MonthlyScheduleOptions": "Microsoft.Azure.Commands.Automation.Model.MonthlyScheduleOptions", "Frequency": "Microsoft.Azure.Commands.Automation.Model.ScheduleFrequency", @@ -50352,7 +50352,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ErrorInfo, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Code": "System.String", "Message": "System.String" @@ -50397,7 +50397,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Tasks": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Tasks", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Tasks, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Tasks, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PreTask": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task", "PostTask": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task" @@ -50442,7 +50442,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.Task, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "source": "System.String" @@ -50487,7 +50487,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateConfiguration": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Linux": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxConfiguration", "OperatingSystem": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType", @@ -50537,7 +50537,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxConfiguration": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "rebootSetting": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting", "IncludedPackageClassifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses]", @@ -50584,7 +50584,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -50679,7 +50679,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -50691,7 +50691,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.LinuxPackageClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -50786,7 +50786,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.OperatingSystemType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -50881,7 +50881,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateTargets": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateTargets", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateTargets, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.UpdateTargets, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureQueries": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties]", "NonAzureQueries": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties]" @@ -50926,7 +50926,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -50938,7 +50938,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.AzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TagSettings": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings", "Locations": "System.String[]", @@ -50984,7 +50984,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagSettings, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FilterOperator": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.List`1[System.String]]" @@ -51029,7 +51029,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.TagOperators, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -51149,7 +51149,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -51161,7 +51161,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.NonAzureQueryProperties, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FunctionAlias": "System.String", "WorkspaceResourceId": "System.String" @@ -51206,7 +51206,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsConfiguration": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "rebootSetting": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.RebootSetting", "IncludedUpdateClassifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses]", @@ -51253,7 +51253,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -51265,7 +51265,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.WindowsUpdateClasses, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -51382,7 +51382,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ComputerType": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ComputerType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ComputerType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.ComputerType, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -51477,7 +51477,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateMachineRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -51572,7 +51572,7 @@ "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus": { "Namespace": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement", "Name": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Automation.Model.UpdateManagement.SoftwareUpdateRunStatus, Microsoft.Azure.PowerShell.Cmdlets.Automation, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json index 73fcc61ccca3..438921c78dd0 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -263,7 +263,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -772,7 +772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -1092,7 +1092,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -1163,7 +1163,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -1344,7 +1344,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -1536,7 +1536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -1728,7 +1728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -1901,7 +1901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "Version": "System.String", @@ -1958,7 +1958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageDetails, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageDetails, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "SupportsMultipleExtensions": "System.Nullable`1[System.Boolean]", @@ -2324,7 +2324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "PublisherName": "System.String", @@ -2557,7 +2557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineADDomainExtensionContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineADDomainExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineADDomainExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -2901,7 +2901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -3569,7 +3569,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -3945,7 +3945,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -4267,7 +4267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -4669,7 +4669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Extension.AEM", "Name": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Result": "System.Boolean", "PartialResults": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]", @@ -5060,7 +5060,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -5514,7 +5514,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -5855,7 +5855,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -6171,13 +6171,13 @@ "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetCustomScriptExtensionByContainerAndFileNames", + "DefaultParameterSetName": "ByNameWithContainerAndFileNamesParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -6228,7 +6228,7 @@ ], "Parameters": [ { - "Name": "ContainerName", + "Name": "ResourceGroupName", "AliasList": [], "Type": { "Namespace": "System", @@ -6246,14 +6246,16 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "FileName", - "AliasList": [], + "Name": "VMName", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": "System.String", + "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -6264,8 +6266,10 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "StorageAccountName", - "AliasList": [], + "Name": "Name", + "AliasList": [ + "ExtensionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -6282,7 +6286,83 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "StorageEndpointSuffix", + "Name": "VMObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Compute.Models", + "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", + "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", + "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", + "HardwareProfile": "Microsoft.Azure.Management.Compute.Models.HardwareProfile", + "NetworkProfile": "Microsoft.Azure.Management.Compute.Models.NetworkProfile", + "OSProfile": "Microsoft.Azure.Management.Compute.Models.OSProfile", + "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", + "StorageProfile": "Microsoft.Azure.Management.Compute.Models.StorageProfile", + "AvailabilitySetReference": "Microsoft.Azure.Management.Compute.Models.SubResource", + "Identity": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity", + "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Extensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension]", + "Zones": "System.Collections.Generic.IList`1[System.String]", + "StatusCode": "System.Net.HttpStatusCode", + "LicenseType": "System.String", + "ProvisioningState": "System.String", + "Location": "System.String", + "Type": "System.String", + "Name": "System.String", + "VmId": "System.String", + "FullyQualifiedDomainName": "System.String", + "Id": "System.String", + "RequestId": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", "AliasList": [], "Type": { "Namespace": "System", @@ -6300,7 +6380,81 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "StorageAccountKey", + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Compute.Models", + "Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", + "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", + "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", + "CommandToExecute": "System.String", + "ProvisioningState": "System.String", + "ProtectedSettings": "System.String", + "PublicSettings": "System.String", + "Id": "System.String", + "TypeHandlerVersion": "System.String", + "ExtensionType": "System.String", + "Etag": "System.String", + "Location": "System.String", + "Name": "System.String", + "VMName": "System.String", + "ResourceGroupName": "System.String", + "Publisher": "System.String", + "ForceUpdateTag": "System.String", + "Uri": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "psExt", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ContainerName", "AliasList": [], "Type": { "Namespace": "System", @@ -6318,7 +6472,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "FileUri", + "Name": "FileName", "AliasList": [], "Type": { "Namespace": "System", @@ -6336,11 +6490,8 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Run", - "AliasList": [ - "RunFile", - "Command" - ], + "Name": "StorageAccountName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", @@ -6357,7 +6508,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Argument", + "Name": "StorageEndpointSuffix", "AliasList": [], "Type": { "Namespace": "System", @@ -6375,12 +6526,12 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "SecureExecution", + "Name": "StorageAccountKey", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6390,17 +6541,17 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "FileUri", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": null, + "ElementType": "System.String", "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -6411,9 +6562,10 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VMName", + "Name": "Run", "AliasList": [ - "ResourceName" + "RunFile", + "Command" ], "Type": { "Namespace": "System", @@ -6431,10 +6583,8 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ExtensionName" - ], + "Name": "Argument", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", @@ -6450,6 +6600,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "SecureExecution", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "TypeHandlerVersion", "AliasList": [ @@ -6561,11 +6729,11 @@ ], "ParameterSets": [ { - "Name": "SetCustomScriptExtensionByContainerAndFileNames", + "Name": "ByNameWithContainerAndFileNamesParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ContainerName", + "Name": "ResourceGroupName", "AliasList": [], "Type": { "Namespace": "System", @@ -6583,20 +6751,22 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": -2147483648, + "Position": 0, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "FileName", - "AliasList": [], + "Name": "VMName", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": "System.String", + "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -6607,14 +6777,16 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": -2147483648, + "Position": 1, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "StorageAccountName", - "AliasList": [], + "Name": "Name", + "AliasList": [ + "ExtensionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -6637,7 +6809,7 @@ }, { "ParameterMetadata": { - "Name": "StorageEndpointSuffix", + "Name": "ContainerName", "AliasList": [], "Type": { "Namespace": "System", @@ -6654,21 +6826,21 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "StorageAccountKey", + "Name": "FileName", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": null, + "ElementType": "System.String", "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -6678,18 +6850,15 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Run", - "AliasList": [ - "RunFile", - "Command" - ], + "Name": "StorageAccountName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", @@ -6712,7 +6881,7 @@ }, { "ParameterMetadata": { - "Name": "Argument", + "Name": "StorageEndpointSuffix", "AliasList": [], "Type": { "Namespace": "System", @@ -6736,12 +6905,12 @@ }, { "ParameterMetadata": { - "Name": "SecureExecution", + "Name": "StorageAccountKey", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6751,7 +6920,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -6760,8 +6929,11 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], + "Name": "Run", + "AliasList": [ + "RunFile", + "Command" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -6777,17 +6949,15 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": 0, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VMName", - "AliasList": [ - "ResourceName" - ], + "Name": "Argument", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", @@ -6803,21 +6973,19 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": 1, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ExtensionName" - ], + "Name": "SecureExecution", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6827,7 +6995,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -6975,18 +7143,18 @@ ] }, { - "Name": "SetCustomScriptExtensionByUriLinks", + "Name": "ByNameWithFileUriParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "FileUri", + "Name": "ResourceGroupName", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": "System.String", + "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -6996,17 +7164,16 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, + "Mandatory": true, + "Position": 0, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Run", + "Name": "VMName", "AliasList": [ - "RunFile", - "Command" + "ResourceName" ], "Type": { "Namespace": "System", @@ -7023,15 +7190,17 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, + "Mandatory": true, + "Position": 1, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Argument", - "AliasList": [], + "Name": "Name", + "AliasList": [ + "ExtensionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -7054,14 +7223,14 @@ }, { "ParameterMetadata": { - "Name": "SecureExecution", + "Name": "FileUri", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": null, + "ElementType": "System.String", "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -7069,7 +7238,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -7078,8 +7247,11 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], + "Name": "Run", + "AliasList": [ + "RunFile", + "Command" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -7095,17 +7267,15 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": 0, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VMName", - "AliasList": [ - "ResourceName" - ], + "Name": "Argument", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", @@ -7121,21 +7291,19 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": 1, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ExtensionName" - ], + "Name": "SecureExecution", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7145,7 +7313,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -7293,14 +7461,13 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "ByParentObjectWithContainerAndFileNamesParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Run", + "Name": "Name", "AliasList": [ - "RunFile", - "Command" + "ExtensionName" ], "Type": { "Namespace": "System", @@ -7317,62 +7484,96 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Argument", + "Name": "VMObject", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, + "Namespace": "Microsoft.Azure.Commands.Compute.Models", + "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", + "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", + "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", + "HardwareProfile": "Microsoft.Azure.Management.Compute.Models.HardwareProfile", + "NetworkProfile": "Microsoft.Azure.Management.Compute.Models.NetworkProfile", + "OSProfile": "Microsoft.Azure.Management.Compute.Models.OSProfile", + "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", + "StorageProfile": "Microsoft.Azure.Management.Compute.Models.StorageProfile", + "AvailabilitySetReference": "Microsoft.Azure.Management.Compute.Models.SubResource", + "Identity": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity", + "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Extensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension]", + "Zones": "System.Collections.Generic.IList`1[System.String]", + "StatusCode": "System.Net.HttpStatusCode", + "LicenseType": "System.String", + "ProvisioningState": "System.String", + "Location": "System.String", + "Type": "System.String", + "Name": "System.String", + "VmId": "System.String", + "FullyQualifiedDomainName": "System.String", + "Id": "System.String", + "RequestId": "System.String", + "ResourceGroupName": "System.String" + }, "ElementType": null, "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] }, "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SecureExecution", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ContainerName", "AliasList": [], "Type": { "Namespace": "System", @@ -7390,22 +7591,20 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": 0, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VMName", - "AliasList": [ - "ResourceName" - ], + "Name": "FileName", + "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": null, + "ElementType": "System.String", "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -7416,16 +7615,14 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": 1, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ExtensionName" - ], + "Name": "StorageAccountName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", @@ -7444,15 +7641,12 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TypeHandlerVersion", - "AliasList": [ - "HandlerVersion", - "Version" - ], + "Name": "StorageEndpointSuffix", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", @@ -7471,11 +7665,11 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "StorageAccountKey", "AliasList": [], "Type": { "Namespace": "System", @@ -7495,36 +7689,2098 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DisableAutoUpgradeMinorVersion", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ForceRerun", - "AliasList": [], + "Name": "Run", + "AliasList": [ + "RunFile", + "Command" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Argument", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SecureExecution", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TypeHandlerVersion", + "AliasList": [ + "HandlerVersion", + "Version" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DisableAutoUpgradeMinorVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ForceRerun", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByParentObjectWithFileUriParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ExtensionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VMObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Compute.Models", + "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", + "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", + "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", + "HardwareProfile": "Microsoft.Azure.Management.Compute.Models.HardwareProfile", + "NetworkProfile": "Microsoft.Azure.Management.Compute.Models.NetworkProfile", + "OSProfile": "Microsoft.Azure.Management.Compute.Models.OSProfile", + "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", + "StorageProfile": "Microsoft.Azure.Management.Compute.Models.StorageProfile", + "AvailabilitySetReference": "Microsoft.Azure.Management.Compute.Models.SubResource", + "Identity": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity", + "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Extensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension]", + "Zones": "System.Collections.Generic.IList`1[System.String]", + "StatusCode": "System.Net.HttpStatusCode", + "LicenseType": "System.String", + "ProvisioningState": "System.String", + "Location": "System.String", + "Type": "System.String", + "Name": "System.String", + "VmId": "System.String", + "FullyQualifiedDomainName": "System.String", + "Id": "System.String", + "RequestId": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FileUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Run", + "AliasList": [ + "RunFile", + "Command" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Argument", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SecureExecution", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TypeHandlerVersion", + "AliasList": [ + "HandlerVersion", + "Version" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DisableAutoUpgradeMinorVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ForceRerun", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceIdWithContainerAndFileNamesParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ContainerName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageEndpointSuffix", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountKey", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Run", + "AliasList": [ + "RunFile", + "Command" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Argument", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SecureExecution", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TypeHandlerVersion", + "AliasList": [ + "HandlerVersion", + "Version" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DisableAutoUpgradeMinorVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ForceRerun", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceIdWithFileUriParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FileUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Run", + "AliasList": [ + "RunFile", + "Command" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Argument", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SecureExecution", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TypeHandlerVersion", + "AliasList": [ + "HandlerVersion", + "Version" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DisableAutoUpgradeMinorVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ForceRerun", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByInputObjectWithContainerAndFileNamesParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Compute.Models", + "Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", + "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", + "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", + "CommandToExecute": "System.String", + "ProvisioningState": "System.String", + "ProtectedSettings": "System.String", + "PublicSettings": "System.String", + "Id": "System.String", + "TypeHandlerVersion": "System.String", + "ExtensionType": "System.String", + "Etag": "System.String", + "Location": "System.String", + "Name": "System.String", + "VMName": "System.String", + "ResourceGroupName": "System.String", + "Publisher": "System.String", + "ForceUpdateTag": "System.String", + "Uri": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "psExt", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ContainerName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FileName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageEndpointSuffix", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountKey", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Run", + "AliasList": [ + "RunFile", + "Command" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Argument", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SecureExecution", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TypeHandlerVersion", + "AliasList": [ + "HandlerVersion", + "Version" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DisableAutoUpgradeMinorVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ForceRerun", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByInputObjectWithFileUriParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Compute.Models", + "Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", + "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", + "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", + "CommandToExecute": "System.String", + "ProvisioningState": "System.String", + "ProtectedSettings": "System.String", + "PublicSettings": "System.String", + "Id": "System.String", + "TypeHandlerVersion": "System.String", + "ExtensionType": "System.String", + "Etag": "System.String", + "Location": "System.String", + "Name": "System.String", + "VMName": "System.String", + "ResourceGroupName": "System.String", + "Publisher": "System.String", + "ForceUpdateTag": "System.String", + "Uri": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "psExt", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FileUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Run", + "AliasList": [ + "RunFile", + "Command" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Argument", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SecureExecution", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TypeHandlerVersion", + "AliasList": [ + "HandlerVersion", + "Version" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DisableAutoUpgradeMinorVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ForceRerun", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Run", + "AliasList": [ + "RunFile", + "Command" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Argument", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SecureExecution", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TypeHandlerVersion", + "AliasList": [ + "HandlerVersion", + "Version" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DisableAutoUpgradeMinorVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ForceRerun", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", @@ -7603,7 +9859,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -7937,7 +10193,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -8217,7 +10473,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -8288,7 +10544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -8417,7 +10673,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -8570,7 +10826,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -9212,7 +11468,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -9546,7 +11802,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -9868,7 +12124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -11206,7 +13462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.VirtualMachineSqlServerExtensionContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.VirtualMachineSqlServerExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.VirtualMachineSqlServerExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -11494,7 +13750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.AutoBackupSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enable": "System.Boolean", "EnableEncryption": "System.Boolean", @@ -12652,7 +14908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enable": "System.Boolean", "MaintenanceWindowStartingHour": "System.Int32", @@ -12959,7 +15215,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enable": "System.Boolean", "Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]", @@ -13288,7 +15544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -13568,7 +15824,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -13698,7 +15954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enable": "System.Boolean", "MaintenanceWindowStartingHour": "System.Int32", @@ -13754,7 +16010,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.AutoBackupSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enable": "System.Boolean", "EnableEncryption": "System.Boolean", @@ -13817,7 +16073,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enable": "System.Boolean", "Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]", @@ -14030,7 +16286,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enable": "System.Boolean", "MaintenanceWindowStartingHour": "System.Int32", @@ -14092,7 +16348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.AutoBackupSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enable": "System.Boolean", "EnableEncryption": "System.Boolean", @@ -14161,7 +16417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute", "Name": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enable": "System.Boolean", "Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]", @@ -14300,7 +16556,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineAccessExtensionContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineAccessExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineAccessExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -14641,7 +16897,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -14963,7 +17219,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -15459,7 +17715,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "Version": "System.String", @@ -15516,7 +17772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageDetail", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageDetail, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageDetail, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutomaticOSUpgradeProperties": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties", "OSDiskImage": "Microsoft.Azure.Management.Compute.Models.OSDiskImage", @@ -16111,7 +18367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "Offer": "System.String", @@ -16343,7 +18599,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "PublisherName": "System.String", @@ -16532,7 +18788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.Net.HttpStatusCode", "Skus": "System.String", @@ -17304,7 +19560,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSUsage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "Microsoft.Azure.Management.Compute.Models.UsageName", "StatusCode": "System.Net.HttpStatusCode", @@ -17494,7 +19750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineSize", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineSize, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineSize, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MemoryInMB": "System.Int32", "NumberOfCores": "System.Int32", @@ -17968,7 +20224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -18742,7 +20998,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -19592,7 +21848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -20432,7 +22688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -20908,7 +23164,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -21564,7 +23820,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -21643,7 +23899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -21798,7 +24054,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -21981,7 +24237,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -22054,7 +24310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -22132,7 +24388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -22520,7 +24776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -22907,7 +25163,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -23550,7 +25806,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -23629,7 +25885,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -23805,7 +26061,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -23984,7 +26240,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -24187,7 +26443,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -24266,7 +26522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -24439,7 +26695,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -24646,7 +26902,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -24725,7 +26981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -24878,7 +27134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -25059,7 +27315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -26098,7 +28354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters", "Vhd": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", @@ -27354,7 +29610,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -27433,7 +29689,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -27570,7 +29826,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -27729,7 +29985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -27808,7 +30064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -27946,7 +30202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -28106,7 +30362,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -28185,7 +30441,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -28322,7 +30578,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -28481,7 +30737,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -28560,7 +30816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -28749,7 +31005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -28949,7 +31205,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -29101,7 +31357,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -29234,7 +31490,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -29313,7 +31569,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -29544,7 +31800,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -29796,7 +32052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -30050,7 +32306,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -30283,7 +32539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -30362,7 +32618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -30713,7 +32969,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -31033,7 +33289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -31401,7 +33657,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -31721,7 +33977,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -32089,7 +34345,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -32337,7 +34593,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -32542,7 +34798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -32621,7 +34877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -33038,7 +35294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -33442,7 +35698,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -33942,7 +36198,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -34346,7 +36602,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -34846,7 +37102,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -35235,7 +37491,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -35314,7 +37570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -35503,7 +37759,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -35732,7 +37988,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -35811,7 +38067,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -36018,7 +38274,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -36242,7 +38498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -36394,7 +38650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -36527,7 +38783,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -36600,7 +38856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", "MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", @@ -37183,7 +39439,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -37256,7 +39512,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", "MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", @@ -37412,7 +39668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37724,7 +39980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38160,7 +40416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -38212,7 +40468,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -38327,7 +40583,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -38947,7 +41203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -40396,7 +42652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -40971,7 +43227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -41065,7 +43321,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -41334,7 +43590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -41606,7 +43862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -41904,7 +44160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -42152,7 +44408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -42376,7 +44632,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -42605,7 +44861,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.VhdUploadContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdUploadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdUploadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalFilePath": "System.IO.FileInfo", "DestinationUri": "System.Uri" @@ -43265,7 +45521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.VhdDownloadContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdDownloadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdDownloadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalFilePath": "System.IO.FileInfo", "Source": "System.Uri" @@ -44071,7 +46327,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile", @@ -44138,7 +46394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile", @@ -44315,7 +46571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile", @@ -44534,7 +46790,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile", @@ -45283,7 +47539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile", @@ -45350,7 +47606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile", @@ -45473,7 +47729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile", @@ -45613,7 +47869,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile", @@ -45736,7 +47992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile", @@ -45839,7 +48095,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile", @@ -46010,7 +48266,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile", @@ -46225,7 +48481,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile", @@ -46328,7 +48584,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile", @@ -46499,7 +48755,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile", @@ -46714,7 +48970,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -47097,7 +49353,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile", @@ -47258,15 +49514,747 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzDiskConfig", + "Name": "New-AzDiskConfig", + "ClassName": "Microsoft.Azure.Commands.Compute.Automation.NewAzureRmDiskConfigCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", + "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", + "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", + "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", + "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Zones": "System.Collections.Generic.IList`1[System.String]", + "OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", + "TimeCreated": "System.Nullable`1[System.DateTime]", + "DiskSizeGB": "System.Nullable`1[System.Int32]", + "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]", + "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]", + "HyperVGeneration": "System.String", + "ManagedBy": "System.String", + "ProvisioningState": "System.String", + "DiskState": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "SkuName", + "AliasList": [ + "AccountType" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "OsType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DiskSizeGB", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Zone", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HyperVGeneration", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DiskIOPSReadWrite", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DiskMBpsReadWrite", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CreateOption", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "StorageAccountId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ImageReference", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.Compute.Models", + "Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Lun": "System.Nullable`1[System.Int32]", + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "id", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "lun", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SourceUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SourceResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EncryptionSettingsEnabled", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Boolean" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DiskEncryptionKey", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.Compute.Models", + "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", + "SecretUrl": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "sourceVault", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "secretUrl", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "KeyEncryptionKey", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.Compute.Models", + "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", + "KeyUrl": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "sourceVault", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "keyUrl", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SkuName", + "AliasList": [ + "AccountType" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "OsType", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [], + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" + ], "Methods": [], "Constructors": [] }, @@ -47282,676 +50270,12 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "New", - "NounName": "AzDiskConfig", - "Name": "New-AzDiskConfig", - "ClassName": "Microsoft.Azure.Commands.Compute.Automation.NewAzureRmDiskConfigCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", - "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", - "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", - "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", - "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", - "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Zones": "System.Collections.Generic.IList`1[System.String]", - "OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "TimeCreated": "System.Nullable`1[System.DateTime]", - "DiskSizeGB": "System.Nullable`1[System.Int32]", - "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]", - "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]", - "HyperVGeneration": "System.String", - "ManagedBy": "System.String", - "ProvisioningState": "System.String", - "DiskState": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "SkuName", - "AliasList": [ - "AccountType" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "OsType", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" - ], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DiskSizeGB", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Zone", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DiskIOPSReadWrite", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DiskMBpsReadWrite", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CreateOption", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "StorageAccountId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ImageReference", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Lun": "System.Nullable`1[System.Int32]", - "Id": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Validate", - "Parameters": [], - "ReturnType": "System.Void" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "id", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "lun", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceUri", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceResourceId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EncryptionSettingsEnabled", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "System.Boolean" - ], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DiskEncryptionKey", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", - "SecretUrl": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Validate", - "Parameters": [], - "ReturnType": "System.Void" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "sourceVault", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "secretUrl", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "KeyEncryptionKey", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault", - "KeyUrl": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Validate", - "Parameters": [], - "ReturnType": "System.Void" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "sourceVault", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "keyUrl", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "SkuName", - "AliasList": [ - "AccountType" - ], + "Name": "DiskSizeGB", + "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -47964,23 +50288,21 @@ "ValidateNotNullOrEmpty": false }, "Mandatory": false, - "Position": 0, + "Position": 2, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "OsType", + "Name": "Location", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" - ], + "GenericTypeArguments": [], "Methods": [], "Constructors": [] }, @@ -47990,20 +50312,20 @@ "ValidateNotNullOrEmpty": false }, "Mandatory": false, - "Position": 1, + "Position": 3, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DiskSizeGB", + "Name": "Zone", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": null, + "ElementType": "System.String", "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -48014,13 +50336,13 @@ "ValidateNotNullOrEmpty": false }, "Mandatory": false, - "Position": 2, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Location", + "Name": "HyperVGeneration", "AliasList": [], "Type": { "Namespace": "System", @@ -48038,30 +50360,6 @@ "ValidateNotNullOrEmpty": false }, "Mandatory": false, - "Position": 3, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Zone", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -48552,7 +50850,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -49308,7 +51606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -49380,7 +51678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -49526,7 +51824,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -49702,7 +52000,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -49774,7 +52072,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -49920,7 +52218,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -50096,7 +52394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -50168,7 +52466,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -50314,7 +52612,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -50490,7 +52788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -50550,7 +52848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -50684,7 +52982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -50848,7 +53146,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -50908,7 +53206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -51042,7 +53340,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -51206,7 +53504,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -51316,7 +53614,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -51494,7 +53792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -51714,7 +54012,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -52101,7 +54399,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -52395,7 +54693,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessSAS": "System.String" }, @@ -52820,7 +55118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -53165,7 +55463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -53275,7 +55573,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -53334,7 +55632,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -53512,7 +55810,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -53695,7 +55993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku", @@ -53915,7 +56213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile", @@ -54811,7 +57109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile", @@ -54967,7 +57265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile", @@ -55675,7 +57973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile", @@ -56125,7 +58423,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -56294,7 +58592,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile", @@ -56812,7 +59110,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile", @@ -56978,7 +59276,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile", "StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile", @@ -57522,7 +59820,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -59752,7 +62050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -59898,7 +62196,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -61184,7 +63482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -62074,7 +64372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -62225,7 +64523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -62727,7 +65025,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -62901,7 +65199,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed", "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier", @@ -63321,7 +65619,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -63868,7 +66166,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -63987,7 +66285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -64448,7 +66746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -64753,7 +67051,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -64886,7 +67184,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -65355,7 +67653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -65520,7 +67818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -65889,7 +68187,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -65950,7 +68248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -66177,7 +68475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -66464,7 +68762,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -67035,7 +69333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -67096,7 +69394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -67215,7 +69513,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -67351,7 +69649,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -67468,7 +69766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -67529,7 +69827,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -67778,7 +70076,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -68093,7 +70391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -68192,7 +70490,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -68359,7 +70657,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -68568,7 +70866,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -68667,7 +70965,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -68870,7 +71168,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -69028,7 +71326,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -69401,7 +71699,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -69788,7 +72086,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile", "SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource", @@ -70113,7 +72411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Properties": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput", @@ -70877,7 +73175,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Properties": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput", @@ -71429,7 +73727,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSResourceSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSResourceSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSResourceSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacity", "Capabilities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities]", @@ -71588,7 +73886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -71726,6 +74024,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "HyperVGeneration", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "Tag", "AliasList": [], @@ -72190,6 +74506,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "HyperVGeneration", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "Tag", @@ -72628,7 +74968,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -73298,7 +75638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -73366,7 +75706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -73508,7 +75848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -73680,7 +76020,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -73748,7 +76088,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -73890,7 +76230,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -74062,7 +76402,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -74130,7 +76470,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -74272,7 +76612,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -74444,7 +76784,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -74502,7 +76842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -74634,7 +76974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -74796,7 +77136,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -74854,7 +77194,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -74986,7 +77326,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -75148,7 +77488,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -75254,7 +77594,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -75428,7 +77768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -75644,7 +77984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -76031,7 +78371,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -76321,7 +78661,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessSAS": "System.String" }, @@ -76746,7 +79086,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -77091,7 +79431,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -77197,7 +79537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -77254,7 +79594,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -77428,7 +79768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", "EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection", @@ -77609,7 +79949,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData", "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", @@ -77825,7 +80165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandDocument", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandDocument, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandDocument, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OsType": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes", "Parameters": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition]", @@ -78102,7 +80442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -78581,7 +80921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRollingUpgradeStatusInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRollingUpgradeStatusInfo, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRollingUpgradeStatusInfo, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Policy": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy", @@ -78864,7 +81204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -79209,7 +81549,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -79709,7 +82049,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -80764,7 +83104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Item": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", @@ -80954,7 +83294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -81604,7 +83944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -81832,7 +84172,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -81964,7 +84304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk", "GenericTypeArguments": [], @@ -82000,7 +84340,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -82206,7 +84546,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk", "GenericTypeArguments": [], @@ -82298,7 +84638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk", "GenericTypeArguments": [], @@ -82414,7 +84754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk", "GenericTypeArguments": [], @@ -82506,7 +84846,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -82587,7 +84927,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk", "GenericTypeArguments": [], @@ -82686,7 +85026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -82757,7 +85097,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -82944,7 +85284,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -83173,7 +85513,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -83244,7 +85584,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -83481,7 +85821,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -83778,7 +86118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -83849,7 +86189,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -84122,7 +86462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -84467,7 +86807,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -84538,7 +86878,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -84795,7 +87135,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -85118,7 +87458,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -85189,7 +87529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -85334,7 +87674,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -85509,7 +87849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -85580,7 +87920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -85725,7 +88065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -85900,7 +88240,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -85971,7 +88311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -86118,7 +88458,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -86295,7 +88635,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -91459,7 +93799,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -91530,7 +93870,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -91677,7 +94017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -91821,7 +94161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -91967,7 +94307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -92094,7 +94434,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -92165,7 +94505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -92310,7 +94650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -92454,7 +94794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -92598,7 +94938,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -92725,7 +95065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -92796,7 +95136,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -92941,7 +95281,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -93085,7 +95425,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -93229,7 +95569,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -93356,7 +95696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -93427,7 +95767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -93574,7 +95914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -93751,7 +96091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -93822,7 +96162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -94153,7 +96493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -94574,7 +96914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -94645,7 +96985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -94826,7 +97166,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -95049,7 +97389,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -95120,7 +97460,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -95505,7 +97845,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -95998,7 +98338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -96107,7 +98447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -96806,7 +99146,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -97809,7 +100149,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -98446,7 +100786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -98875,7 +101215,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRecoveryWalkResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRecoveryWalkResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRecoveryWalkResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "WalkPerformed": "System.Nullable`1[System.Boolean]", "NextPlatformUpdateDomain": "System.Nullable`1[System.Int32]" @@ -99003,7 +101343,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -99480,7 +101820,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -99657,7 +101997,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -100182,7 +102522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", "Capacity": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuCapacity", @@ -100459,7 +102799,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -101556,7 +103896,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -101943,7 +104283,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -102330,7 +104670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -102717,7 +105057,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -102826,7 +105166,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -103859,7 +106199,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -105137,7 +107477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -106326,7 +108666,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -106671,7 +109011,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "StartTime": "System.Nullable`1[System.DateTime]", @@ -107058,7 +109398,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Error": "Microsoft.Azure.Management.Compute.Models.ApiError", "Item": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", @@ -107232,7 +109572,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -107861,7 +110201,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", @@ -108090,7 +110430,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -108166,7 +110506,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -108491,7 +110831,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -108876,7 +111216,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -108952,7 +111292,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -109084,7 +111424,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", @@ -109240,7 +111580,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Extension.DSC", "Name": "Microsoft.Azure.Commands.Compute.Extension.DSC.VirtualMachineDscExtensionContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.DSC.VirtualMachineDscExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.DSC.VirtualMachineDscExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -109573,7 +111913,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", "MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", @@ -110713,7 +113053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -110985,7 +113325,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -112223,7 +114563,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -112294,7 +114634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -112516,7 +114856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -112792,7 +115132,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -113498,7 +115838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -114102,7 +116442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -116182,7 +118522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -116458,7 +118798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -117004,7 +119344,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption", "Name": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureDiskEncryptionExtensionContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureDiskEncryptionExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureDiskEncryptionExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", @@ -117395,7 +119735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -117717,7 +120057,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -119781,7 +122121,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsSuccessStatusCode": "System.Boolean", "StatusCode": "System.Net.HttpStatusCode", @@ -120103,7 +122443,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models", "Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Plan": "Microsoft.Azure.Management.Compute.Models.Plan", "Sku": "Microsoft.Azure.Management.Compute.Models.Sku", @@ -120570,7 +122910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVmssDiskEncryptionStatusContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EncryptionSettings": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings", "EncryptionEnabled": "System.Boolean", @@ -120850,7 +123190,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVmssVMDiskEncryptionStatusContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssVMDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssVMDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OsVolumeEncrypted": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus", "DataVolumesEncrypted": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus", @@ -121172,7 +123512,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineScaleSetExtension", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", "Settings": "System.Object", @@ -122610,7 +124950,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -122622,7 +124962,7 @@ "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult": { "Namespace": "Microsoft.Azure.Commands.Compute.Extension.AEM", "Name": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Result": "System.Boolean", "PartialResults": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]", @@ -122707,15 +125047,107 @@ "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.Plan": { + "Microsoft.Azure.Commands.Compute.Models.DisplayHintType": { + "Namespace": "Microsoft.Azure.Commands.Compute.Models", + "Name": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.Plan", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Plan, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Name": "System.String", - "Publisher": "System.String", - "Product": "System.String", - "PromotionCode": "System.String" + "UltraSSDEnabled": "System.Nullable`1[System.Boolean]" }, "ElementType": null, "GenericTypeArguments": [], @@ -122757,33 +125189,74 @@ "ReturnType": null, "Parameters": [ { - "Name": "name", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "publisher", + "Name": "ultraSSDEnabled", "Type": "System.Reflection.RuntimeParameterInfo" - }, + } + ] + } + ] + }, + "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile": { + "Namespace": "Microsoft.Azure.Management.Compute.Models", + "Name": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ { - "Name": "product", + "Name": "obj", "Type": "System.Reflection.RuntimeParameterInfo" - }, + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ { - "Name": "promotionCode", + "Name": "bootDiagnostics", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.Sku": { + "Microsoft.Azure.Management.Compute.Models.BootDiagnostics": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.Sku", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Sku, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Capacity": "System.Nullable`1[System.Int64]", - "Tier": "System.String", - "Name": "System.String" + "Enabled": "System.Nullable`1[System.Boolean]", + "StorageUri": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -122825,50 +125298,27 @@ "ReturnType": null, "Parameters": [ { - "Name": "name", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "tier", + "Name": "enabled", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "capacity", + "Name": "storageUri", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Nullable`1[System.Int64]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int64]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "System.Int64" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.UpgradePolicy": { + "Microsoft.Azure.Management.Compute.Models.HardwareProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.UpgradePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradePolicy, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.HardwareProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.HardwareProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutomaticOSUpgradePolicy": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy", - "RollingUpgradePolicy": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy", - "Mode": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]" + "VmSize": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "Validate", - "Parameters": [], - "ReturnType": "System.Void" - }, { "Name": "ToString", "Parameters": [], @@ -122906,28 +125356,86 @@ "ReturnType": null, "Parameters": [ { - "Name": "mode", + "Name": "vmSize", "Type": "System.Reflection.RuntimeParameterInfo" - }, + } + ] + } + ] + }, + "Microsoft.Azure.Management.Compute.Models.NetworkProfile": { + "Namespace": "Microsoft.Azure.Management.Compute.Models", + "Name": "Microsoft.Azure.Management.Compute.Models.NetworkProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.NetworkProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkInterfaces": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ { - "Name": "rollingUpgradePolicy", + "Name": "obj", "Type": "System.Reflection.RuntimeParameterInfo" - }, + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ { - "Name": "automaticOSUpgradePolicy", + "Name": "networkInterfaces", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy": { + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "EnableAutomaticOSUpgrade": "System.Nullable`1[System.Boolean]", - "DisableAutomaticRollback": "System.Nullable`1[System.Boolean]" + "Primary": "System.Nullable`1[System.Boolean]", + "Id": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -122969,35 +125477,34 @@ "ReturnType": null, "Parameters": [ { - "Name": "enableAutomaticOSUpgrade", + "Name": "id", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "disableAutomaticRollback", + "Name": "primary", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy": { + "Microsoft.Azure.Management.Compute.Models.OSProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.OSProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "MaxBatchInstancePercent": "System.Nullable`1[System.Int32]", - "MaxUnhealthyInstancePercent": "System.Nullable`1[System.Int32]", - "MaxUnhealthyUpgradedInstancePercent": "System.Nullable`1[System.Int32]", - "PauseTimeBetweenBatches": "System.String" + "LinuxConfiguration": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration", + "WindowsConfiguration": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration", + "Secrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup]", + "AllowExtensionOperations": "System.Nullable`1[System.Boolean]", + "ComputerName": "System.String", + "AdminUsername": "System.String", + "AdminPassword": "System.String", + "CustomData": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "Validate", - "Parameters": [], - "ReturnType": "System.Void" - }, { "Name": "ToString", "Parameters": [], @@ -123035,45 +125542,58 @@ "ReturnType": null, "Parameters": [ { - "Name": "maxBatchInstancePercent", + "Name": "computerName", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "maxUnhealthyInstancePercent", + "Name": "adminUsername", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "maxUnhealthyUpgradedInstancePercent", + "Name": "adminPassword", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "pauseTimeBetweenBatches", + "Name": "customData", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "windowsConfiguration", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "linuxConfiguration", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "secrets", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "allowExtensionOperations", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.UpgradeMode" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.UpgradeMode": { + "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.UpgradeMode", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, + "Name": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Ssh": "Microsoft.Azure.Management.Compute.Models.SshConfiguration", + "DisablePasswordAuthentication": "System.Nullable`1[System.Boolean]", + "ProvisionVMAgent": "System.Nullable`1[System.Boolean]" + }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, { "Name": "Equals", "Parameters": [ @@ -123090,68 +125610,133 @@ "ReturnType": "System.Int32" }, { - "Name": "ToString", + "Name": "GetType", "Parameters": [], - "ReturnType": "System.String" + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] }, { - "Name": "ToString", + "Name": "", + "ReturnType": null, "Parameters": [ { - "Name": "format", + "Name": "disablePasswordAuthentication", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "provider", + "Name": "ssh", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provisionVMAgent", "Type": "System.Reflection.RuntimeParameterInfo" } - ], + ] + } + ] + }, + "Microsoft.Azure.Management.Compute.Models.SshConfiguration": { + "Namespace": "Microsoft.Azure.Management.Compute.Models", + "Name": "Microsoft.Azure.Management.Compute.Models.SshConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicKeys": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SshPublicKey]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { - "Name": "CompareTo", + "Name": "Equals", "Parameters": [ { - "Name": "target", + "Name": "obj", "Type": "System.Reflection.RuntimeParameterInfo" } ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" }, { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] }, { - "Name": "ToString", + "Name": "", + "ReturnType": null, "Parameters": [ { - "Name": "provider", + "Name": "publicKeys", "Type": "System.Reflection.RuntimeParameterInfo" } - ], + ] + } + ] + }, + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SshPublicKey]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SshPublicKey]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SshPublicKey, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.SshPublicKey" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.SshPublicKey": { + "Namespace": "Microsoft.Azure.Management.Compute.Models", + "Name": "Microsoft.Azure.Management.Compute.Models.SshPublicKey", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshPublicKey, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Path": "System.String", + "KeyData": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { - "Name": "HasFlag", + "Name": "Equals", "Parameters": [ { - "Name": "flag", + "Name": "obj", "Type": "System.Reflection.RuntimeParameterInfo" } ], "ReturnType": "System.Boolean" }, { - "Name": "GetTypeCode", + "Name": "GetHashCode", "Parameters": [], - "ReturnType": "System.TypeCode" + "ReturnType": "System.Int32" }, { "Name": "GetType", @@ -123159,17 +125744,38 @@ "ReturnType": "System.Type" } ], - "Constructors": [] + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "path", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "keyData", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity": { + "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" + "WinRM": "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration", + "AdditionalUnattendContent": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent]", + "ProvisionVMAgent": "System.Nullable`1[System.Boolean]", + "EnableAutomaticUpdates": "System.Nullable`1[System.Boolean]", + "TimeZone": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -123211,45 +125817,102 @@ "ReturnType": null, "Parameters": [ { - "Name": "principalId", + "Name": "provisionVMAgent", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "tenantId", + "Name": "enableAutomaticUpdates", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "type", + "Name": "timeZone", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "userAssignedIdentities", + "Name": "additionalUnattendContent", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "winRM", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue]": { + "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration": { + "Namespace": "Microsoft.Azure.Management.Compute.Models", + "Name": "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Listeners": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.WinRMListener]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "listeners", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.WinRMListener]": { "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.WinRMListener]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.WinRMListener, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "System.String", - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue" + "Microsoft.Azure.Management.Compute.Models.WinRMListener" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue": { + "Microsoft.Azure.Management.Compute.Models.WinRMListener": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.WinRMListener", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMListener, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PrincipalId": "System.String", - "ClientId": "System.String" + "Protocol": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]", + "CertificateUrl": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -123291,33 +125954,33 @@ "ReturnType": null, "Parameters": [ { - "Name": "principalId", + "Name": "protocol", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "clientId", + "Name": "certificateUrl", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]": { + "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType" + "Microsoft.Azure.Management.Compute.Models.ProtocolTypes" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType": { + "Microsoft.Azure.Management.Compute.Models.ProtocolTypes": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.ProtocolTypes", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -123409,29 +126072,31 @@ ], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMProfile": { + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", - "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", - "ExtensionProfile": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtensionProfile", - "NetworkProfile": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile", - "OsProfile": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile", - "StorageProfile": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile", - "LicenseType": "System.String", - "Priority": "System.String", - "EvictionPolicy": "System.String" + "ComponentName": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]", + "PassName": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]", + "SettingName": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]", + "Content": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "Validate", - "Parameters": [], - "ReturnType": "System.Void" - }, { "Name": "ToString", "Parameters": [], @@ -123469,60 +126134,152 @@ "ReturnType": null, "Parameters": [ { - "Name": "osProfile", + "Name": "passName", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "storageProfile", + "Name": "componentName", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "additionalCapabilities", + "Name": "settingName", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "networkProfile", + "Name": "content", "Type": "System.Reflection.RuntimeParameterInfo" - }, + } + ] + } + ] + }, + "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.ComponentNames" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.ComponentNames": { + "Namespace": "Microsoft.Azure.Management.Compute.Models", + "Name": "Microsoft.Azure.Management.Compute.Models.ComponentNames", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ { - "Name": "diagnosticsProfile", + "Name": "obj", "Type": "System.Reflection.RuntimeParameterInfo" - }, + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ { - "Name": "extensionProfile", + "Name": "format", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "licenseType", + "Name": "provider", "Type": "System.Reflection.RuntimeParameterInfo" - }, + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ { - "Name": "priority", + "Name": "target", "Type": "System.Reflection.RuntimeParameterInfo" - }, + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ { - "Name": "evictionPolicy", + "Name": "format", "Type": "System.Reflection.RuntimeParameterInfo" } - ] + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" } - ] + ], + "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities": { + "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.PassNames" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.PassNames": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UltraSSDEnabled": "System.Nullable`1[System.Boolean]" - }, + "Name": "Microsoft.Azure.Management.Compute.Models.PassNames", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, { "Name": "Equals", "Parameters": [ @@ -123539,44 +126296,97 @@ "ReturnType": "System.Int32" }, { - "Name": "GetType", + "Name": "ToString", "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ + "ReturnType": "System.String" + }, { - "Name": "", - "ReturnType": null, - "Parameters": [] + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" }, { - "Name": "", - "ReturnType": null, + "Name": "CompareTo", "Parameters": [ { - "Name": "ultraSSDEnabled", + "Name": "target", "Type": "System.Reflection.RuntimeParameterInfo" } - ] + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" } - ] + ], + "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile": { + "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.SettingNames" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.SettingNames": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics" - }, + "Name": "Microsoft.Azure.Management.Compute.Models.SettingNames", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, { "Name": "Equals", "Parameters": [ @@ -123593,36 +126403,96 @@ "ReturnType": "System.Int32" }, { - "Name": "GetType", + "Name": "ToString", "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ + "ReturnType": "System.String" + }, { - "Name": "", - "ReturnType": null, - "Parameters": [] + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" }, { - "Name": "", - "ReturnType": null, + "Name": "CompareTo", "Parameters": [ { - "Name": "bootDiagnostics", + "Name": "target", "Type": "System.Reflection.RuntimeParameterInfo" } - ] + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" } - ] + ], + "Constructors": [] + }, + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup" + ], + "Methods": [], + "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.BootDiagnostics": { + "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Enabled": "System.Nullable`1[System.Boolean]", - "StorageUri": "System.String" + "SourceVault": "Microsoft.Azure.Management.Compute.Models.SubResource", + "VaultCertificates": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultCertificate]" }, "ElementType": null, "GenericTypeArguments": [], @@ -123664,23 +126534,36 @@ "ReturnType": null, "Parameters": [ { - "Name": "enabled", + "Name": "sourceVault", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "storageUri", + "Name": "vaultCertificates", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtensionProfile": { + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultCertificate]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultCertificate]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.VaultCertificate" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.VaultCertificate": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtensionProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtensionProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VaultCertificate", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Extensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension]" + "CertificateUrl": "System.String", + "CertificateStore": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -123722,41 +126605,26 @@ "ReturnType": null, "Parameters": [ { - "Name": "extensions", + "Name": "certificateUrl", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "certificateStore", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension": { + "Microsoft.Azure.Management.Compute.Models.Plan": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.Plan", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Plan, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ProvisionAfterExtensions": "System.Collections.Generic.IList`1[System.String]", - "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", - "Settings": "System.Object", - "ProtectedSettings": "System.Object", "Name": "System.String", - "ForceUpdateTag": "System.String", "Publisher": "System.String", - "Type": "System.String", - "TypeHandlerVersion": "System.String", - "ProvisioningState": "System.String", - "Id": "System.String" + "Product": "System.String", + "PromotionCode": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -123797,75 +126665,43 @@ "Name": "", "ReturnType": null, "Parameters": [ - { - "Name": "id", - "Type": "System.Reflection.RuntimeParameterInfo" - }, { "Name": "name", "Type": "System.Reflection.RuntimeParameterInfo" }, - { - "Name": "forceUpdateTag", - "Type": "System.Reflection.RuntimeParameterInfo" - }, { "Name": "publisher", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "type", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "typeHandlerVersion", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "autoUpgradeMinorVersion", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "settings", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "protectedSettings", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provisioningState", + "Name": "product", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "provisionAfterExtensions", + "Name": "promotionCode", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Object": { - "Namespace": "System", - "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile": { + "Microsoft.Azure.Management.Compute.Models.StorageProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.StorageProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.StorageProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "HealthProbe": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", - "NetworkInterfaceConfigurations": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration]" + "ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageReference", + "OsDisk": "Microsoft.Azure.Management.Compute.Models.OSDisk", + "DataDisks": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDisk]" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, { "Name": "ToString", "Parameters": [], @@ -123903,22 +126739,30 @@ "ReturnType": null, "Parameters": [ { - "Name": "healthProbe", + "Name": "imageReference", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "networkInterfaceConfigurations", + "Name": "osDisk", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "dataDisks", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.ApiEntityReference": { + "Microsoft.Azure.Management.Compute.Models.ImageReference": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.ImageReference", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "Publisher": "System.String", + "Offer": "System.String", + "Sku": "System.String", + "Version": "System.String", "Id": "System.String" }, "ElementType": null, @@ -123963,36 +126807,43 @@ { "Name": "id", "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "publisher", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "offer", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "sku", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "version", + "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration": { + "Microsoft.Azure.Management.Compute.Models.OSDisk": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.OSDisk", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDisk, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", - "DnsSettings": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings", - "IpConfigurations": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration]", - "Primary": "System.Nullable`1[System.Boolean]", - "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", - "EnableIPForwarding": "System.Nullable`1[System.Boolean]", + "DiffDiskSettings": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings", + "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings", + "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters", + "Vhd": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", + "Image": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", + "Caching": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", + "OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", + "WriteAcceleratorEnabled": "System.Nullable`1[System.Boolean]", + "DiskSizeGB": "System.Nullable`1[System.Int32]", "Name": "System.String", - "Id": "System.String" + "CreateOption": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -124038,48 +126889,60 @@ "Name": "", "ReturnType": null, "Parameters": [ + { + "Name": "createOption", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "osType", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "encryptionSettings", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "name", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "ipConfigurations", + "Name": "vhd", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "id", + "Name": "image", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "primary", + "Name": "caching", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "enableAcceleratedNetworking", + "Name": "writeAcceleratorEnabled", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "networkSecurityGroup", + "Name": "diffDiskSettings", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "dnsSettings", + "Name": "diskSizeGB", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "enableIPForwarding", + "Name": "managedDisk", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings": { + "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DnsServers": "System.Collections.Generic.IList`1[System.String]" + "Option": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -124121,40 +126984,21 @@ "ReturnType": null, "Parameters": [ { - "Name": "dnsServers", + "Name": "option", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration": { + "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Subnet": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", - "PublicIPAddressConfiguration": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration", - "ApplicationGatewayBackendAddressPools": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResource]", - "ApplicationSecurityGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResource]", - "LoadBalancerBackendAddressPools": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResource]", - "LoadBalancerInboundNatPools": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResource]", - "Primary": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "PrivateIPAddressVersion": "System.String", - "Id": "System.String" + "KeyEncryptionKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference", + "DiskEncryptionKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference", + "Enabled": "System.Nullable`1[System.Boolean]" }, "ElementType": null, "GenericTypeArguments": [], @@ -124201,59 +127045,28 @@ "ReturnType": null, "Parameters": [ { - "Name": "name", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "id", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "subnet", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "primary", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "publicIPAddressConfiguration", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "privateIPAddressVersion", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "applicationGatewayBackendAddressPools", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "applicationSecurityGroups", + "Name": "diskEncryptionKey", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "loadBalancerBackendAddressPools", + "Name": "keyEncryptionKey", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "loadBalancerInboundNatPools", + "Name": "enabled", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration": { + "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PublicIPPrefix": "Microsoft.Azure.Management.Compute.Models.SubResource", - "DnsSettings": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings", - "IpTags": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag]", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String" + "SourceVault": "Microsoft.Azure.Management.Compute.Models.SubResource", + "KeyUrl": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -124300,35 +127113,24 @@ "ReturnType": null, "Parameters": [ { - "Name": "name", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "idleTimeoutInMinutes", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "dnsSettings", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "ipTags", + "Name": "keyUrl", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "publicIPPrefix", + "Name": "sourceVault", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings": { + "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DomainNameLabel": "System.String" + "SourceVault": "Microsoft.Azure.Management.Compute.Models.SubResource", + "SecretUrl": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -124375,32 +127177,24 @@ "ReturnType": null, "Parameters": [ { - "Name": "domainNameLabel", + "Name": "secretUrl", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "sourceVault", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag": { + "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "IpTagType": "System.String", - "Tag": "System.String" + "StorageAccountType": "System.String", + "Id": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -124442,29 +127236,23 @@ "ReturnType": null, "Parameters": [ { - "Name": "ipTagType", + "Name": "id", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "tag", + "Name": "storageAccountType", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile": { + "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LinuxConfiguration": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration", - "WindowsConfiguration": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration", - "Secrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup]", - "ComputerNamePrefix": "System.String", - "AdminUsername": "System.String", - "AdminPassword": "System.String", - "CustomData": "System.String" + "Uri": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -124506,54 +127294,33 @@ "ReturnType": null, "Parameters": [ { - "Name": "computerNamePrefix", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "adminUsername", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "adminPassword", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "customData", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "windowsConfiguration", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "linuxConfiguration", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "secrets", + "Name": "uri", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration": { + "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.CachingTypes" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.CachingTypes": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Ssh": "Microsoft.Azure.Management.Compute.Models.SshConfiguration", - "DisablePasswordAuthentication": "System.Nullable`1[System.Boolean]", - "ProvisionVMAgent": "System.Nullable`1[System.Boolean]" - }, + "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, { "Name": "Equals", "Parameters": [ @@ -124570,66 +127337,68 @@ "ReturnType": "System.Int32" }, { - "Name": "GetType", + "Name": "ToString", "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] + "ReturnType": "System.String" }, { - "Name": "", - "ReturnType": null, + "Name": "ToString", "Parameters": [ { - "Name": "disablePasswordAuthentication", + "Name": "format", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "ssh", + "Name": "provider", "Type": "System.Reflection.RuntimeParameterInfo" - }, + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ { - "Name": "provisionVMAgent", + "Name": "target", "Type": "System.Reflection.RuntimeParameterInfo" } - ] - } - ] - }, - "Microsoft.Azure.Management.Compute.Models.SshConfiguration": { - "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.SshConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PublicKeys": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SshPublicKey]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ + ], + "ReturnType": "System.Int32" + }, { "Name": "ToString", - "Parameters": [], + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], "ReturnType": "System.String" }, { - "Name": "Equals", + "Name": "ToString", "Parameters": [ { - "Name": "obj", + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", "Type": "System.Reflection.RuntimeParameterInfo" } ], "ReturnType": "System.Boolean" }, { - "Name": "GetHashCode", + "Name": "GetTypeCode", "Parameters": [], - "ReturnType": "System.Int32" + "ReturnType": "System.TypeCode" }, { "Name": "GetType", @@ -124637,52 +127406,28 @@ "ReturnType": "System.Type" } ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "publicKeys", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] + "Constructors": [] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SshPublicKey]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SshPublicKey]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SshPublicKey, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.SshPublicKey" + "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.SshPublicKey": { + "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.SshPublicKey", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshPublicKey, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Path": "System.String", - "KeyData": "System.String" - }, + "Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, { "Name": "Equals", "Parameters": [ @@ -124699,47 +127444,112 @@ "ReturnType": "System.Int32" }, { - "Name": "GetType", + "Name": "ToString", "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] + "ReturnType": "System.String" }, { - "Name": "", - "ReturnType": null, + "Name": "ToString", "Parameters": [ { - "Name": "path", + "Name": "format", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "keyData", + "Name": "provider", "Type": "System.Reflection.RuntimeParameterInfo" } - ] + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" } - ] + ], + "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration": { + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDisk]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDisk]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DataDisk, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.DataDisk" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.DataDisk": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.DataDisk", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DataDisk, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "WinRM": "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration", - "AdditionalUnattendContent": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent]", - "ProvisionVMAgent": "System.Nullable`1[System.Boolean]", - "EnableAutomaticUpdates": "System.Nullable`1[System.Boolean]", - "TimeZone": "System.String" + "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters", + "Vhd": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", + "Image": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", + "Lun": "System.Int32", + "Caching": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", + "WriteAcceleratorEnabled": "System.Nullable`1[System.Boolean]", + "DiskSizeGB": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "CreateOption": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, { "Name": "ToString", "Parameters": [], @@ -124777,35 +127587,54 @@ "ReturnType": null, "Parameters": [ { - "Name": "provisionVMAgent", + "Name": "lun", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "enableAutomaticUpdates", + "Name": "createOption", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "timeZone", + "Name": "name", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "additionalUnattendContent", + "Name": "vhd", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "winRM", + "Name": "image", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "caching", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "writeAcceleratorEnabled", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "diskSizeGB", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "managedDisk", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Listeners": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.WinRMListener]" + "UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -124847,32 +127676,45 @@ "ReturnType": null, "Parameters": [ { - "Name": "listeners", + "Name": "principalId", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "tenantId", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "type", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "userAssignedIdentities", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.WinRMListener]": { + "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue]": { "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.WinRMListener]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.WinRMListener, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.WinRMListener" + "System.String", + "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.WinRMListener": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.WinRMListener", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMListener, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Protocol": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]", - "CertificateUrl": "System.String" + "PrincipalId": "System.String", + "ClientId": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -124914,33 +127756,33 @@ "ReturnType": null, "Parameters": [ { - "Name": "protocol", + "Name": "principalId", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "certificateUrl", + "Name": "clientId", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]": { + "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.ProtocolTypes" + "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.ProtocolTypes": { + "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.ProtocolTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -125032,27 +127874,23 @@ ], "Constructors": [] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ComponentName": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]", - "PassName": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]", - "SettingName": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]", - "Content": "System.String" + "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", + "MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", + "VmAgent": "Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView", + "Disks": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskInstanceView]", + "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", + "Extensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView]", + "PlatformUpdateDomain": "System.Nullable`1[System.Int32]", + "PlatformFaultDomain": "System.Nullable`1[System.Int32]", + "ComputerName": "System.String", + "OsName": "System.String", + "OsVersion": "System.String", + "RdpThumbPrint": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -125094,45 +127932,74 @@ "ReturnType": null, "Parameters": [ { - "Name": "passName", + "Name": "platformUpdateDomain", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "componentName", + "Name": "platformFaultDomain", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "settingName", + "Name": "computerName", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "content", + "Name": "osName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "osVersion", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "rdpThumbPrint", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "vmAgent", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "maintenanceRedeployStatus", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "disks", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "extensions", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "bootDiagnostics", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "statuses", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.ComponentNames" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.ComponentNames": { + "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.ComponentNames", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, + "Name": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Status": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", + "SerialConsoleLogBlobUri": "System.String", + "ConsoleScreenshotBlobUri": "System.String" + }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, { "Name": "Equals", "Parameters": [ @@ -125149,97 +128016,58 @@ "ReturnType": "System.Int32" }, { - "Name": "ToString", + "Name": "GetType", "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, + "ReturnType": "System.Type" + } + ], + "Constructors": [ { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" + "Name": "", + "ReturnType": null, + "Parameters": [] }, { - "Name": "ToString", + "Name": "", + "ReturnType": null, "Parameters": [ { - "Name": "format", + "Name": "consoleScreenshotBlobUri", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ + }, { - "Name": "provider", + "Name": "serialConsoleLogBlobUri", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ + }, { - "Name": "flag", + "Name": "status", "Type": "System.Reflection.RuntimeParameterInfo" } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" + ] } - ], - "Constructors": [] - }, - "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.PassNames" - ], - "Methods": [], - "Constructors": [] + ] }, - "Microsoft.Azure.Management.Compute.Models.PassNames": { + "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.PassNames", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, + "Name": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LastOperationResultCode": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes]", + "IsCustomerInitiatedMaintenanceAllowed": "System.Nullable`1[System.Boolean]", + "PreMaintenanceWindowStartTime": "System.Nullable`1[System.DateTime]", + "PreMaintenanceWindowEndTime": "System.Nullable`1[System.DateTime]", + "MaintenanceWindowStartTime": "System.Nullable`1[System.DateTime]", + "MaintenanceWindowEndTime": "System.Nullable`1[System.DateTime]", + "LastOperationMessage": "System.String" + }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, { "Name": "Equals", "Parameters": [ @@ -125256,93 +128084,69 @@ "ReturnType": "System.Int32" }, { - "Name": "ToString", + "Name": "GetType", "Parameters": [], - "ReturnType": "System.String" + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] }, { - "Name": "ToString", + "Name": "", + "ReturnType": null, "Parameters": [ { - "Name": "format", + "Name": "isCustomerInitiatedMaintenanceAllowed", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "provider", + "Name": "preMaintenanceWindowStartTime", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ + }, { - "Name": "target", + "Name": "preMaintenanceWindowEndTime", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ + }, { - "Name": "format", + "Name": "maintenanceWindowStartTime", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ + }, { - "Name": "provider", + "Name": "maintenanceWindowEndTime", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ + }, + { + "Name": "lastOperationResultCode", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { - "Name": "flag", + "Name": "lastOperationMessage", "Type": "System.Reflection.RuntimeParameterInfo" } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" + ] } - ], - "Constructors": [] + ] }, - "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]": { + "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.SettingNames" + "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.SettingNames": { + "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.SettingNames", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -125434,25 +128238,14 @@ ], "Constructors": [] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SourceVault": "Microsoft.Azure.Management.Compute.Models.SubResource", - "VaultCertificates": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultCertificate]" + "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", + "ExtensionHandlers": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView]", + "VmAgentVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -125494,36 +128287,41 @@ "ReturnType": null, "Parameters": [ { - "Name": "sourceVault", + "Name": "vmAgentVersion", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "vaultCertificates", + "Name": "extensionHandlers", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "statuses", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultCertificate]": { + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView]": { "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.VaultCertificate" + "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.VaultCertificate": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VaultCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "CertificateUrl": "System.String", - "CertificateStore": "System.String" + "Status": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", + "TypeHandlerVersion": "System.String", + "Type": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -125565,34 +128363,45 @@ "ReturnType": null, "Parameters": [ { - "Name": "certificateUrl", + "Name": "type", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "certificateStore", + "Name": "typeHandlerVersion", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "status", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile": { + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskInstanceView]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskInstanceView]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.DiskInstanceView" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.DiskInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.DiskInstanceView", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageReference", - "OsDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk", - "DataDisks": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk]" + "EncryptionSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings]", + "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", + "Name": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "Validate", - "Parameters": [], - "ReturnType": "System.Void" - }, { "Name": "ToString", "Parameters": [], @@ -125630,31 +128439,55 @@ "ReturnType": null, "Parameters": [ { - "Name": "imageReference", + "Name": "name", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "osDisk", + "Name": "encryptionSettings", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "dataDisks", + "Name": "statuses", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.ImageReference": { + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings" + ], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.ImageReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Publisher": "System.String", - "Offer": "System.String", - "Sku": "System.String", - "Version": "System.String", - "Id": "System.String" + "Substatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", + "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", + "Name": "System.String", + "Type": "System.String", + "TypeHandlerVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -125696,44 +128529,60 @@ "ReturnType": null, "Parameters": [ { - "Name": "id", + "Name": "name", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "publisher", + "Name": "type", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "offer", + "Name": "typeHandlerVersion", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "sku", + "Name": "substatuses", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "version", + "Name": "statuses", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk": { + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DiffDiskSettings": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings", - "Image": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", - "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters", - "VhdContainers": "System.Collections.Generic.IList`1[System.String]", - "Caching": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "WriteAcceleratorEnabled": "System.Nullable`1[System.Boolean]", - "DiskSizeGB": "System.Nullable`1[System.Int32]", + "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", + "Settings": "System.Object", + "ProtectedSettings": "System.Object", + "ForceUpdateTag": "System.String", + "Publisher": "System.String", + "VirtualMachineExtensionType": "System.String", + "TypeHandlerVersion": "System.String", + "ProvisioningState": "System.String", + "Id": "System.String", "Name": "System.String", - "CreateOption": "System.String" + "Type": "System.String", + "Location": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -125780,7 +128629,11 @@ "ReturnType": null, "Parameters": [ { - "Name": "createOption", + "Name": "location", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "id", "Type": "System.Reflection.RuntimeParameterInfo" }, { @@ -125788,47 +128641,71 @@ "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "caching", + "Name": "type", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "writeAcceleratorEnabled", + "Name": "tags", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "diffDiskSettings", + "Name": "forceUpdateTag", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "diskSizeGB", + "Name": "publisher", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "osType", + "Name": "virtualMachineExtensionType", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "image", + "Name": "typeHandlerVersion", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "vhdContainers", + "Name": "autoUpgradeMinorVersion", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "managedDisk", + "Name": "settings", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "protectedSettings", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provisioningState", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "instanceView", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings": { + "System.Object": { + "Namespace": "System", + "Name": "System.Object", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.Sku": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.Sku", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Sku, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Option": "System.String" + "Capacity": "System.Nullable`1[System.Int64]", + "Tier": "System.String", + "Name": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -125870,23 +128747,50 @@ "ReturnType": null, "Parameters": [ { - "Name": "option", + "Name": "name", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "tier", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "capacity", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk": { + "System.Nullable`1[System.Int64]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Int64" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.UpgradePolicy": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.UpgradePolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradePolicy, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Uri": "System.String" + "AutomaticOSUpgradePolicy": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy", + "RollingUpgradePolicy": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy", + "Mode": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, { "Name": "ToString", "Parameters": [], @@ -125924,19 +128828,28 @@ "ReturnType": null, "Parameters": [ { - "Name": "uri", + "Name": "mode", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "rollingUpgradePolicy", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "automaticOSUpgradePolicy", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters": { + "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "StorageAccountType": "System.String" + "EnableAutomaticOSUpgrade": "System.Nullable`1[System.Boolean]", + "DisableAutomaticRollback": "System.Nullable`1[System.Boolean]" }, "ElementType": null, "GenericTypeArguments": [], @@ -125978,33 +128891,40 @@ "ReturnType": null, "Parameters": [ { - "Name": "storageAccountType", + "Name": "enableAutomaticOSUpgrade", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "disableAutomaticRollback", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.CachingTypes" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.CachingTypes": { + "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, + "Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "MaxBatchInstancePercent": "System.Nullable`1[System.Int32]", + "MaxUnhealthyInstancePercent": "System.Nullable`1[System.Int32]", + "MaxUnhealthyUpgradedInstancePercent": "System.Nullable`1[System.Int32]", + "PauseTimeBetweenBatches": "System.String" + }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, { "Name": "Equals", "Parameters": [ @@ -126021,93 +128941,57 @@ "ReturnType": "System.Int32" }, { - "Name": "ToString", + "Name": "GetType", "Parameters": [], - "ReturnType": "System.String" - }, + "ReturnType": "System.Type" + } + ], + "Constructors": [ { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" + "Name": "", + "ReturnType": null, + "Parameters": [] }, { - "Name": "CompareTo", + "Name": "", + "ReturnType": null, "Parameters": [ { - "Name": "target", + "Name": "maxBatchInstancePercent", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ + }, { - "Name": "format", + "Name": "maxUnhealthyInstancePercent", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ + }, { - "Name": "provider", + "Name": "maxUnhealthyUpgradedInstancePercent", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ + }, { - "Name": "flag", + "Name": "pauseTimeBetweenBatches", "Type": "System.Reflection.RuntimeParameterInfo" } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" + ] } - ], - "Constructors": [] + ] }, - "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]": { + "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" + "Microsoft.Azure.Management.Compute.Models.UpgradeMode" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes": { + "Microsoft.Azure.Management.Compute.Models.UpgradeMode": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.UpgradeMode", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -126199,39 +129083,19 @@ ], "Constructors": [] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters", - "Lun": "System.Int32", - "Caching": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "WriteAcceleratorEnabled": "System.Nullable`1[System.Boolean]", - "DiskSizeGB": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "CreateOption": "System.String" + "UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "Validate", - "Parameters": [], - "ReturnType": "System.Void" - }, { "Name": "ToString", "Parameters": [], @@ -126269,139 +129133,49 @@ "ReturnType": null, "Parameters": [ { - "Name": "lun", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "createOption", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "name", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "caching", + "Name": "principalId", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "writeAcceleratorEnabled", + "Name": "tenantId", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "diskSizeGB", + "Name": "type", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "managedDisk", + "Name": "userAssignedIdentities", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", - "Name": "System.String", - "BlobEndPoint": "System.String", - "TableEndPoint": "System.String", - "QueueEndPoint": "System.String", - "FileEndPoint": "System.String", - "StorageAccountName": "System.String", - "EndPointSuffix": "System.String", - "ConnectionString": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]": { + "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue]": { "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential": { - "Namespace": "Microsoft.Azure.Commands.Compute", - "Name": "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "CredentialName": "System.String", - "KeyVaultName": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } + "System.String", + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue" ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] - } - ] - }, - "System.Security.SecureString": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutomaticOSUpgradeSupported": "System.Boolean" + "PrincipalId": "System.String", + "ClientId": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "Validate", - "Parameters": [], - "ReturnType": "System.Void" - }, { "Name": "ToString", "Parameters": [], @@ -126439,80 +129213,31 @@ "ReturnType": null, "Parameters": [ { - "Name": "automaticOSUpgradeSupported", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "Microsoft.Azure.Management.Compute.Models.OSDiskImage": { - "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.OSDiskImage", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDiskImage, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OperatingSystem": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Validate", - "Parameters": [], - "ReturnType": "System.Void" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", + "Name": "principalId", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ + }, { - "Name": "operatingSystem", + "Name": "clientId", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.PurchasePlan": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.PurchasePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PurchasePlan, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Publisher": "System.String", - "Name": "System.String", - "Product": "System.String" + "AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities", + "DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile", + "ExtensionProfile": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtensionProfile", + "NetworkProfile": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile", + "OsProfile": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile", + "StorageProfile": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile", + "LicenseType": "System.String", + "Priority": "System.String", + "EvictionPolicy": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -126559,227 +129284,51 @@ "ReturnType": null, "Parameters": [ { - "Name": "publisher", + "Name": "osProfile", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "name", + "Name": "storageProfile", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "product", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDiskImage]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDiskImage]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DataDiskImage, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.DataDiskImage" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.DataDiskImage": { - "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.DataDiskImage", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DataDiskImage, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Lun": "System.Nullable`1[System.Int32]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "lun", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "Microsoft.Azure.Management.Compute.Models.UsageName": { - "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.UsageName", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UsageName, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Value": "System.String", - "LocalizedValue": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "value", + "Name": "additionalCapabilities", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "localizedValue", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "Microsoft.Azure.Management.Compute.Models.ApiError": { - "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.ApiError", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiError, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Innererror": "Microsoft.Azure.Management.Compute.Models.InnerError", - "Details": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ApiErrorBase]", - "Code": "System.String", - "Target": "System.String", - "Message": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", + "Name": "networkProfile", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ + }, { - "Name": "details", + "Name": "diagnosticsProfile", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "innererror", + "Name": "extensionProfile", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "code", + "Name": "licenseType", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "target", + "Name": "priority", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "message", + "Name": "evictionPolicy", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.InnerError": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtensionProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.InnerError", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.InnerError, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtensionProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtensionProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Exceptiontype": "System.String", - "Errordetail": "System.String" + "Extensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension]" }, "ElementType": null, "GenericTypeArguments": [], @@ -126821,37 +129370,41 @@ "ReturnType": null, "Parameters": [ { - "Name": "exceptiontype", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "errordetail", + "Name": "extensions", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ApiErrorBase]": { + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension]": { "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ApiErrorBase]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ApiErrorBase, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.ApiErrorBase" + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.ApiErrorBase": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.ApiErrorBase", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiErrorBase, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetExtension, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Code": "System.String", - "Target": "System.String", - "Message": "System.String" + "ProvisionAfterExtensions": "System.Collections.Generic.IList`1[System.String]", + "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", + "Settings": "System.Object", + "ProtectedSettings": "System.Object", + "Name": "System.String", + "ForceUpdateTag": "System.String", + "Publisher": "System.String", + "Type": "System.String", + "TypeHandlerVersion": "System.String", + "ProvisioningState": "System.String", + "Id": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -126893,122 +129446,60 @@ "ReturnType": null, "Parameters": [ { - "Name": "code", + "Name": "id", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "target", + "Name": "name", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "message", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "Microsoft.Azure.Commands.Compute.Models.DisplayHintType": { - "Namespace": "Microsoft.Azure.Commands.Compute.Models", - "Name": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", + "Name": "forceUpdateTag", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ + }, { - "Name": "format", + "Name": "publisher", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "provider", + "Name": "type", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ + }, { - "Name": "target", + "Name": "typeHandlerVersion", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ + }, { - "Name": "format", + "Name": "autoUpgradeMinorVersion", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ + }, { - "Name": "provider", + "Name": "settings", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ + }, { - "Name": "flag", + "Name": "protectedSettings", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" + }, + { + "Name": "provisioningState", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provisionAfterExtensions", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] } - ], - "Constructors": [] + ] }, - "Microsoft.Azure.Management.Compute.Models.HardwareProfile": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.HardwareProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.HardwareProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VmSize": "System.String" + "HealthProbe": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", + "NetworkInterfaceConfigurations": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration]" }, "ElementType": null, "GenericTypeArguments": [], @@ -127050,19 +129541,23 @@ "ReturnType": null, "Parameters": [ { - "Name": "vmSize", + "Name": "healthProbe", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "networkInterfaceConfigurations", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.NetworkProfile": { + "Microsoft.Azure.Management.Compute.Models.ApiEntityReference": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.NetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.NetworkProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkInterfaces": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference]" + "Id": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -127104,36 +129599,47 @@ "ReturnType": null, "Parameters": [ { - "Name": "networkInterfaces", + "Name": "id", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference]": { + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration]": { "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference" + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Management.Compute.Models.SubResource", + "DnsSettings": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings", + "IpConfigurations": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration]", "Primary": "System.Nullable`1[System.Boolean]", + "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", + "EnableIPForwarding": "System.Nullable`1[System.Boolean]", + "Name": "System.String", "Id": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, { "Name": "ToString", "Parameters": [], @@ -127170,6 +129676,14 @@ "Name": "", "ReturnType": null, "Parameters": [ + { + "Name": "name", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "ipConfigurations", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "id", "Type": "System.Reflection.RuntimeParameterInfo" @@ -127177,24 +129691,33 @@ { "Name": "primary", "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "enableAcceleratedNetworking", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "networkSecurityGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "dnsSettings", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "enableIPForwarding", + "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.OSProfile": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.OSProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LinuxConfiguration": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration", - "WindowsConfiguration": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration", - "Secrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup]", - "AllowExtensionOperations": "System.Nullable`1[System.Boolean]", - "ComputerName": "System.String", - "AdminUsername": "System.String", - "AdminPassword": "System.String", - "CustomData": "System.String" + "DnsServers": "System.Collections.Generic.IList`1[System.String]" }, "ElementType": null, "GenericTypeArguments": [], @@ -127236,49 +129759,40 @@ "ReturnType": null, "Parameters": [ { - "Name": "computerName", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "adminUsername", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "adminPassword", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "customData", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "windowsConfiguration", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "linuxConfiguration", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "secrets", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "allowExtensionOperations", + "Name": "dnsServers", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.StorageProfile": { + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.StorageProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.StorageProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageReference", - "OsDisk": "Microsoft.Azure.Management.Compute.Models.OSDisk", - "DataDisks": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDisk]" + "Subnet": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference", + "PublicIPAddressConfiguration": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration", + "ApplicationGatewayBackendAddressPools": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResource]", + "ApplicationSecurityGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResource]", + "LoadBalancerBackendAddressPools": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResource]", + "LoadBalancerInboundNatPools": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResource]", + "Primary": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "PrivateIPAddressVersion": "System.String", + "Id": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -127325,37 +129839,59 @@ "ReturnType": null, "Parameters": [ { - "Name": "imageReference", + "Name": "name", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "osDisk", + "Name": "id", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "dataDisks", + "Name": "subnet", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "primary", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "publicIPAddressConfiguration", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "privateIPAddressVersion", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "applicationGatewayBackendAddressPools", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "applicationSecurityGroups", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "loadBalancerBackendAddressPools", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "loadBalancerInboundNatPools", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.OSDisk": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.OSDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDisk, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DiffDiskSettings": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings", - "EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings", - "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters", - "Vhd": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", - "Image": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", - "Caching": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", - "OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", - "WriteAcceleratorEnabled": "System.Nullable`1[System.Boolean]", - "DiskSizeGB": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "CreateOption": "System.String" + "PublicIPPrefix": "Microsoft.Azure.Management.Compute.Models.SubResource", + "DnsSettings": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings", + "IpTags": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag]", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -127401,62 +129937,36 @@ "Name": "", "ReturnType": null, "Parameters": [ - { - "Name": "createOption", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "osType", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "encryptionSettings", - "Type": "System.Reflection.RuntimeParameterInfo" - }, { "Name": "name", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "vhd", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "image", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "caching", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "writeAcceleratorEnabled", + "Name": "idleTimeoutInMinutes", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "diffDiskSettings", + "Name": "dnsSettings", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "diskSizeGB", + "Name": "ipTags", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "managedDisk", + "Name": "publicIPPrefix", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "KeyEncryptionKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference", - "DiskEncryptionKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference", - "Enabled": "System.Nullable`1[System.Boolean]" + "DomainNameLabel": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -127503,37 +130013,36 @@ "ReturnType": null, "Parameters": [ { - "Name": "diskEncryptionKey", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "keyEncryptionKey", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "enabled", + "Name": "domainNameLabel", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference": { + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SourceVault": "Microsoft.Azure.Management.Compute.Models.SubResource", - "KeyUrl": "System.String" + "IpTagType": "System.String", + "Tag": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "Validate", - "Parameters": [], - "ReturnType": "System.Void" - }, { "Name": "ToString", "Parameters": [], @@ -127571,33 +130080,33 @@ "ReturnType": null, "Parameters": [ { - "Name": "keyUrl", + "Name": "ipTagType", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "sourceVault", + "Name": "tag", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SourceVault": "Microsoft.Azure.Management.Compute.Models.SubResource", - "SecretUrl": "System.String" + "LinuxConfiguration": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration", + "WindowsConfiguration": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration", + "Secrets": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup]", + "ComputerNamePrefix": "System.String", + "AdminUsername": "System.String", + "AdminPassword": "System.String", + "CustomData": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "Validate", - "Parameters": [], - "ReturnType": "System.Void" - }, { "Name": "ToString", "Parameters": [], @@ -127635,28 +130144,54 @@ "ReturnType": null, "Parameters": [ { - "Name": "secretUrl", + "Name": "computerNamePrefix", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "sourceVault", + "Name": "adminUsername", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "adminPassword", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "customData", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "windowsConfiguration", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "linuxConfiguration", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "secrets", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "StorageAccountType": "System.String", - "Id": "System.String" + "ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageReference", + "OsDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk", + "DataDisks": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk]" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, { "Name": "ToString", "Parameters": [], @@ -127694,39 +130229,32 @@ "ReturnType": null, "Parameters": [ { - "Name": "id", + "Name": "imageReference", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "storageAccountType", + "Name": "osDisk", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "dataDisks", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDisk]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDisk]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DataDisk, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.DataDisk" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.DataDisk": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.DataDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DataDisk, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters", - "Vhd": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", + "DiffDiskSettings": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings", "Image": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", - "Lun": "System.Int32", + "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters", + "VhdContainers": "System.Collections.Generic.IList`1[System.String]", "Caching": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", + "OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]", "WriteAcceleratorEnabled": "System.Nullable`1[System.Boolean]", "DiskSizeGB": "System.Nullable`1[System.Int32]", "Name": "System.String", @@ -127777,35 +130305,39 @@ "ReturnType": null, "Parameters": [ { - "Name": "lun", + "Name": "createOption", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "createOption", + "Name": "name", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "name", + "Name": "caching", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "vhd", + "Name": "writeAcceleratorEnabled", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "image", + "Name": "diffDiskSettings", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "caching", + "Name": "diskSizeGB", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "writeAcceleratorEnabled", + "Name": "osType", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "diskSizeGB", + "Name": "image", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "vhdContainers", "Type": "System.Reflection.RuntimeParameterInfo" }, { @@ -127816,15 +130348,12 @@ } ] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" + "StorageAccountType": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -127866,49 +130395,46 @@ "ReturnType": null, "Parameters": [ { - "Name": "principalId", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "tenantId", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "type", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "userAssignedIdentities", + "Name": "storageAccountType", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue]": { + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk]": { "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "System.String", - "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue" + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue": { + "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PrincipalId": "System.String", - "ClientId": "System.String" + "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters", + "Lun": "System.Int32", + "Caching": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]", + "WriteAcceleratorEnabled": "System.Nullable`1[System.Boolean]", + "DiskSizeGB": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "CreateOption": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, { "Name": "ToString", "Parameters": [], @@ -127946,34 +130472,76 @@ "ReturnType": null, "Parameters": [ { - "Name": "principalId", + "Name": "lun", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "clientId", + "Name": "createOption", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "name", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "caching", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "writeAcceleratorEnabled", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "diskSizeGB", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "managedDisk", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView": { - "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", - "MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", - "VmAgent": "Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView", - "Disks": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskInstanceView]", - "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", - "Extensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView]", - "PlatformUpdateDomain": "System.Nullable`1[System.Int32]", - "PlatformFaultDomain": "System.Nullable`1[System.Int32]", - "ComputerName": "System.String", - "OsName": "System.String", - "OsVersion": "System.String", - "RdpThumbPrint": "System.String" + "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", + "Name": "System.String", + "BlobEndPoint": "System.String", + "TableEndPoint": "System.String", + "QueueEndPoint": "System.String", + "FileEndPoint": "System.String", + "StorageAccountName": "System.String", + "EndPointSuffix": "System.String", + "ConnectionString": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential": { + "Namespace": "Microsoft.Azure.Commands.Compute", + "Name": "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "CredentialName": "System.String", + "KeyVaultName": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -128009,75 +130577,34 @@ "Name": "", "ReturnType": null, "Parameters": [] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "platformUpdateDomain", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "platformFaultDomain", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "computerName", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "osName", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "osVersion", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "rdpThumbPrint", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "vmAgent", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "maintenanceRedeployStatus", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "disks", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "extensions", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "bootDiagnostics", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "statuses", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] } ] }, - "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView": { + "System.Security.SecureString": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Status": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", - "SerialConsoleLogBlobUri": "System.String", - "ConsoleScreenshotBlobUri": "System.String" + "AutomaticOSUpgradeSupported": "System.Boolean" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, { "Name": "ToString", "Parameters": [], @@ -128115,37 +130642,28 @@ "ReturnType": null, "Parameters": [ { - "Name": "consoleScreenshotBlobUri", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "serialConsoleLogBlobUri", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "status", + "Name": "automaticOSUpgradeSupported", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus": { + "Microsoft.Azure.Management.Compute.Models.OSDiskImage": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.OSDiskImage", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDiskImage, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LastOperationResultCode": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes]", - "IsCustomerInitiatedMaintenanceAllowed": "System.Nullable`1[System.Boolean]", - "PreMaintenanceWindowStartTime": "System.Nullable`1[System.DateTime]", - "PreMaintenanceWindowEndTime": "System.Nullable`1[System.DateTime]", - "MaintenanceWindowStartTime": "System.Nullable`1[System.DateTime]", - "MaintenanceWindowEndTime": "System.Nullable`1[System.DateTime]", - "LastOperationMessage": "System.String" + "OperatingSystem": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, { "Name": "ToString", "Parameters": [], @@ -128183,57 +130701,35 @@ "ReturnType": null, "Parameters": [ { - "Name": "isCustomerInitiatedMaintenanceAllowed", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "preMaintenanceWindowStartTime", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "preMaintenanceWindowEndTime", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "maintenanceWindowStartTime", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "maintenanceWindowEndTime", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "lastOperationResultCode", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "lastOperationMessage", + "Name": "operatingSystem", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes": { + "Microsoft.Azure.Management.Compute.Models.PurchasePlan": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, + "Name": "Microsoft.Azure.Management.Compute.Models.PurchasePlan", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PurchasePlan, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Publisher": "System.String", + "Name": "System.String", + "Product": "System.String" + }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, { "Name": "Equals", "Parameters": [ @@ -128250,85 +130746,55 @@ "ReturnType": "System.Int32" }, { - "Name": "ToString", + "Name": "GetType", "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, + "ReturnType": "System.Type" + } + ], + "Constructors": [ { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" + "Name": "", + "ReturnType": null, + "Parameters": [] }, { - "Name": "ToString", + "Name": "", + "ReturnType": null, "Parameters": [ { - "Name": "format", + "Name": "publisher", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ + }, { - "Name": "provider", + "Name": "name", "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ + }, { - "Name": "flag", + "Name": "product", "Type": "System.Reflection.RuntimeParameterInfo" } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" + ] } + ] + }, + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDiskImage]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDiskImage]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DataDiskImage, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Compute.Models.DataDiskImage" ], + "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView": { + "Microsoft.Azure.Management.Compute.Models.DataDiskImage": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.DataDiskImage", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DataDiskImage, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", - "ExtensionHandlers": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView]", - "VmAgentVersion": "System.String" + "Lun": "System.Nullable`1[System.Int32]" }, "ElementType": null, "GenericTypeArguments": [], @@ -128370,41 +130836,20 @@ "ReturnType": null, "Parameters": [ { - "Name": "vmAgentVersion", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "extensionHandlers", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "statuses", + "Name": "lun", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView": { + "Microsoft.Azure.Management.Compute.Models.UsageName": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.UsageName", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UsageName, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Status": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus", - "TypeHandlerVersion": "System.String", - "Type": "System.String" + "Value": "System.String", + "LocalizedValue": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -128446,41 +130891,27 @@ "ReturnType": null, "Parameters": [ { - "Name": "type", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "typeHandlerVersion", + "Name": "value", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "status", + "Name": "localizedValue", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskInstanceView]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskInstanceView]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.DiskInstanceView" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.DiskInstanceView": { + "Microsoft.Azure.Management.Compute.Models.ApiError": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.DiskInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.ApiError", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiError, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "EncryptionSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings]", - "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", - "Name": "System.String" + "Innererror": "Microsoft.Azure.Management.Compute.Models.InnerError", + "Details": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ApiErrorBase]", + "Code": "System.String", + "Target": "System.String", + "Message": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -128522,55 +130953,36 @@ "ReturnType": null, "Parameters": [ { - "Name": "name", + "Name": "details", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "encryptionSettings", + "Name": "innererror", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "statuses", + "Name": "code", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "message", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings" - ], - "Methods": [], - "Constructors": [] - }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView": { + "Microsoft.Azure.Management.Compute.Models.InnerError": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.InnerError", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.InnerError, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Substatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", - "Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]", - "Name": "System.String", - "Type": "System.String", - "TypeHandlerVersion": "System.String" + "Exceptiontype": "System.String", + "Errordetail": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -128612,69 +131024,41 @@ "ReturnType": null, "Parameters": [ { - "Name": "name", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "type", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "typeHandlerVersion", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "substatuses", + "Name": "exceptiontype", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "statuses", + "Name": "errordetail", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension]": { + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ApiErrorBase]": { "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ApiErrorBase]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ApiErrorBase, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension" + "Microsoft.Azure.Management.Compute.Models.ApiErrorBase" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension": { + "Microsoft.Azure.Management.Compute.Models.ApiErrorBase": { "Namespace": "Microsoft.Azure.Management.Compute.Models", - "Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Compute.Models.ApiErrorBase", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiErrorBase, Microsoft.Azure.Management.Compute, Version=25.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView", - "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", - "Settings": "System.Object", - "ProtectedSettings": "System.Object", - "ForceUpdateTag": "System.String", - "Publisher": "System.String", - "VirtualMachineExtensionType": "System.String", - "TypeHandlerVersion": "System.String", - "ProvisioningState": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Location": "System.String" + "Code": "System.String", + "Target": "System.String", + "Message": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "Validate", - "Parameters": [], - "ReturnType": "System.Void" - }, { "Name": "ToString", "Parameters": [], @@ -128712,59 +131096,15 @@ "ReturnType": null, "Parameters": [ { - "Name": "location", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "id", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "name", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "type", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "tags", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "forceUpdateTag", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "publisher", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "virtualMachineExtensionType", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "typeHandlerVersion", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "autoUpgradeMinorVersion", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "settings", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "protectedSettings", + "Name": "code", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "provisioningState", + "Name": "target", "Type": "System.Reflection.RuntimeParameterInfo" }, { - "Name": "instanceView", + "Name": "message", "Type": "System.Reflection.RuntimeParameterInfo" } ] @@ -129984,7 +132324,7 @@ "Microsoft.Azure.Management.Compute.Models.EncryptionSettings": { "Namespace": "Microsoft.Azure.Management.Compute.Models", "Name": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "KeyEncryptionKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference", "DiskEncryptionKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference", @@ -133103,7 +135443,7 @@ "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters", "Vhd": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk", @@ -133336,7 +135676,7 @@ "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings": { "Namespace": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption", "Name": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "KeyVaultURL": "System.String", "KeyEncryptionKeyURL": "System.String", @@ -133457,7 +135797,7 @@ "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus": { "Namespace": "Microsoft.Azure.Commands.Compute.Models", "Name": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.6.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.dll.json index 3955a96ca277..1214a0ad9d0c 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ContainerInstance.Models", "Name": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.ContainerInstance.Models.ContainerGroupIdentity", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -522,7 +522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ContainerInstance.Models", "Name": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.ContainerInstance.Models.ContainerGroupIdentity", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -839,7 +839,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ContainerInstance.Models", "Name": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.ContainerInstance.Models.ContainerGroupIdentity", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -1238,7 +1238,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ContainerInstance.Models", "Name": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.ContainerInstance.Models.ContainerGroupIdentity", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -4546,7 +4546,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ContainerInstance.Models", "Name": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.ContainerInstance.Models.ContainerGroupIdentity", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -4663,7 +4663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ContainerInstance.Models", "Name": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.ContainerInstance.Models.ContainerGroupIdentity", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -4934,7 +4934,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ContainerInstance.Models", "Name": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.ContainerInstance.Models.ContainerGroupIdentity", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -5667,7 +5667,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerInstance.Models.PSContainer]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerInstance.Models.PSContainer]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ContainerInstance.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ContainerInstance.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -5679,7 +5679,7 @@ "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainer": { "Namespace": "Microsoft.Azure.Commands.ContainerInstance.Models", "Name": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CurrentState": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerState", "PreviousState": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerState", @@ -5746,7 +5746,7 @@ "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerState": { "Namespace": "Microsoft.Azure.Commands.ContainerInstance.Models", "Name": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerState, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerState, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartTime": "System.Nullable`1[System.DateTime]", "FinishTime": "System.Nullable`1[System.DateTime]", @@ -5828,7 +5828,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerInstance.Models.PSEvent]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerInstance.Models.PSEvent]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ContainerInstance.Models.PSEvent, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ContainerInstance.Models.PSEvent, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -5840,7 +5840,7 @@ "Microsoft.Azure.Commands.ContainerInstance.Models.PSEvent": { "Namespace": "Microsoft.Azure.Commands.ContainerInstance.Models", "Name": "Microsoft.Azure.Commands.ContainerInstance.Models.PSEvent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSEvent, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSEvent, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FirstTimestamp": "System.Nullable`1[System.DateTime]", "LastTimestamp": "System.Nullable`1[System.DateTime]", @@ -6028,7 +6028,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerInstance.Models.PSPort]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.ContainerInstance.Models.PSPort]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ContainerInstance.Models.PSPort, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.ContainerInstance.Models.PSPort, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -6040,7 +6040,7 @@ "Microsoft.Azure.Commands.ContainerInstance.Models.PSPort": { "Namespace": "Microsoft.Azure.Commands.ContainerInstance.Models", "Name": "Microsoft.Azure.Commands.ContainerInstance.Models.PSPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSPort, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSPort, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PortProperty": "System.Int32", "Protocol": "System.String" @@ -6415,7 +6415,7 @@ "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup": { "Namespace": "Microsoft.Azure.Commands.ContainerInstance.Models", "Name": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ContainerInstance.Models.PSContainerGroup, Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.ContainerInstance.Models.ContainerGroupIdentity", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -6640,4 +6640,4 @@ "Constructors": [] } } -} \ No newline at end of file +} diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll.json index c8842a9bde0b..38eb3c5ea7dd 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSActivityWindow", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSActivityWindow, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSActivityWindow, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutputDatasets": "System.Collections.Generic.IList`1[System.String]", "InputDatasets": "System.Collections.Generic.IList`1[System.String]", @@ -103,7 +103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -472,7 +472,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -1627,7 +1627,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -1938,7 +1938,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -2061,7 +2061,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2208,7 +2208,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2372,7 +2372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2486,7 +2486,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -2554,7 +2554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2679,7 +2679,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2747,7 +2747,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -2821,7 +2821,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2889,7 +2889,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2964,7 +2964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Availability": "Microsoft.Azure.Management.DataFactories.Common.Models.Availability", "Policy": "Microsoft.Azure.Management.DataFactories.Common.Models.Policy", @@ -3035,7 +3035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -3196,7 +3196,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -3529,7 +3529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Availability": "Microsoft.Azure.Management.DataFactories.Common.Models.Availability", "Policy": "Microsoft.Azure.Management.DataFactories.Common.Models.Policy", @@ -3600,7 +3600,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -3722,7 +3722,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3797,7 +3797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -3919,7 +3919,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4083,7 +4083,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4199,7 +4199,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4293,7 +4293,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4311,7 +4311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -4474,7 +4474,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4568,7 +4568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -4642,7 +4642,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4784,7 +4784,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4885,7 +4885,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSliceRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSliceRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSliceRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataSliceEnd": "System.DateTime", @@ -4964,7 +4964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -5143,7 +5143,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -5548,7 +5548,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSlice", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSlice, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataSlice, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Start": "System.DateTime", "End": "System.DateTime", @@ -5638,7 +5638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -5933,7 +5933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -6294,7 +6294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSRunLogInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSRunLogInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSRunLogInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SasUri": "System.String", "StorageAccountName": "System.String", @@ -6361,7 +6361,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -6465,7 +6465,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6558,7 +6558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -6656,7 +6656,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6820,7 +6820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6936,7 +6936,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7117,7 +7117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -7469,7 +7469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -7963,7 +7963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -8085,7 +8085,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8265,7 +8265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -8387,7 +8387,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8662,7 +8662,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8940,7 +8940,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Key1": "System.String", "Key2": "System.String" @@ -9005,7 +9005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -9168,7 +9168,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -9501,7 +9501,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "RegisterTime": "System.Nullable`1[System.DateTime]", @@ -9579,7 +9579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -9740,7 +9740,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -10073,7 +10073,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGatewayAuthKey, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Key1": "System.String", "Key2": "System.String" @@ -10138,7 +10138,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -10322,7 +10322,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -10736,7 +10736,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "RegisterTime": "System.Nullable`1[System.DateTime]", @@ -10814,7 +10814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -10993,7 +10993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -11417,7 +11417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -11521,7 +11521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11596,7 +11596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -11694,7 +11694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11834,7 +11834,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11926,7 +11926,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12001,7 +12001,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactoryGateway, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "RegisterTime": "System.Nullable`1[System.DateTime]", @@ -12079,7 +12079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -12258,7 +12258,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -12663,7 +12663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.HubBaseProperties", "HubName": "System.String", @@ -12748,7 +12748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -12959,7 +12959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -13224,7 +13224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSHub, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.HubBaseProperties", "HubName": "System.String", @@ -13327,7 +13327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13345,7 +13345,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -13536,7 +13536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13604,7 +13604,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -13726,7 +13726,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13890,7 +13890,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14004,7 +14004,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14022,7 +14022,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -14191,7 +14191,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14259,7 +14259,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -14359,7 +14359,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14501,7 +14501,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14576,7 +14576,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.LinkedServiceProperties", "LinkedServiceName": "System.String", @@ -14643,7 +14643,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -14804,7 +14804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -15137,7 +15137,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.LinkedServiceProperties", "LinkedServiceName": "System.String", @@ -15204,7 +15204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -15326,7 +15326,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15401,7 +15401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -15523,7 +15523,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15687,7 +15687,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15803,7 +15803,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15897,7 +15897,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15915,7 +15915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -16078,7 +16078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16172,7 +16172,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -16246,7 +16246,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16388,7 +16388,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16489,7 +16489,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.PipelineProperties", "PipelineName": "System.String", @@ -16574,7 +16574,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -16785,7 +16785,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -17050,7 +17050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.PipelineProperties", "PipelineName": "System.String", @@ -17135,7 +17135,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -17239,7 +17239,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17362,7 +17362,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17430,7 +17430,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -17552,7 +17552,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17716,7 +17716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17810,7 +17810,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17848,7 +17848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -17991,7 +17991,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18085,7 +18085,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18159,7 +18159,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18301,7 +18301,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18441,7 +18441,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18654,7 +18654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -18962,7 +18962,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -19084,7 +19084,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19102,7 +19102,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19251,7 +19251,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19275,7 +19275,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19343,7 +19343,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -19491,7 +19491,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19515,7 +19515,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19705,7 +19705,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19729,7 +19729,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19843,7 +19843,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -20056,7 +20056,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactories.Models", "Name": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactories.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactories, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactories.Models.DataFactoryProperties", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json index b67f4d5c987b..13c93269a3e5 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json @@ -14,9 +14,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -370,9 +371,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -460,7 +462,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -567,7 +569,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -635,9 +637,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -713,7 +716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -805,7 +808,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -873,7 +876,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -942,15 +945,16 @@ "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByFactoryName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -1015,6 +1019,27 @@ } ], "Parameters": [ + { + "Name": "ResourceId", + "AliasList": [ + "Id", + "DataFactoryId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, { "Name": "ResourceGroupName", "AliasList": [], @@ -1053,6 +1078,79 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", + "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "DataFactoryName": "System.String", + "DataFactoryId": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataFactory", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "resourceGroupName", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "Location", "AliasList": [], @@ -1095,7 +1193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1107,6 +1205,150 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "AccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RepositoryName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "CollaborationBranch", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RootFolder", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "LastCommitId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProjectName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TenantId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HostName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, { "Name": "DefaultProfile", "AliasList": [ @@ -1124,30 +1366,2290 @@ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [ + "Id", + "DataFactoryId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceIdFactoryRepoVstsConfig", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [ + "Id", + "DataFactoryId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RepositoryName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CollaborationBranch", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RootFolder", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LastCommitId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProjectName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TenantId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceIdFactoryRepoGitConfig", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [ + "Id", + "DataFactoryId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RepositoryName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CollaborationBranch", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RootFolder", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LastCommitId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HostName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByFactoryName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "DataFactoryName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByFactoryNameFactoryRepoGitConfig", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "DataFactoryName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RepositoryName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CollaborationBranch", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RootFolder", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LastCommitId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HostName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByFactoryNameFactoryRepoVstsConfig", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "DataFactoryName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RepositoryName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CollaborationBranch", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RootFolder", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LastCommitId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProjectName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TenantId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByInputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", + "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "DataFactoryName": "System.String", + "DataFactoryId": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataFactory", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "resourceGroupName", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByInputObjectFactoryRepoVstsConfig", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", + "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "DataFactoryName": "System.String", + "DataFactoryId": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataFactory", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "resourceGroupName", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RepositoryName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CollaborationBranch", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RootFolder", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LastCommitId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProjectName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TenantId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByInputObjectFactoryRepoGitConfig", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", + "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "DataFactoryName": "System.String", + "DataFactoryId": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ProvisioningState": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataFactory", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "resourceGroupName", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "RepositoryName", "AliasList": [], "Type": { "Namespace": "System", @@ -1164,17 +3666,15 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": 0, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "DataFactoryName" - ], + "Name": "CollaborationBranch", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", @@ -1190,14 +3690,62 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": 1, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "RootFolder", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LastCommitId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HostName", "AliasList": [], "Type": { "Namespace": "System", @@ -1215,18 +3763,18 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": 2, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Force", "AliasList": [], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1239,10 +3787,54 @@ "ValidateNotNullOrEmpty": false }, "Mandatory": false, - "Position": 3, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "Force", @@ -1250,7 +3842,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1327,9 +3919,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -1438,9 +4031,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -1703,9 +4297,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -2016,7 +4611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset", "Structure": "System.Object", @@ -2131,9 +4726,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -2422,9 +5018,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -2702,7 +5299,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset", "Structure": "System.Object", @@ -2832,7 +5429,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2963,7 +5560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3031,7 +5628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset", "Structure": "System.Object", @@ -3113,7 +5710,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3205,7 +5802,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3273,7 +5870,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3348,7 +5945,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset", "Structure": "System.Object", @@ -3519,7 +6116,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3676,7 +6273,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3794,7 +6391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3862,7 +6459,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3939,7 +6536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -4006,7 +6603,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NodeCount": "System.Nullable`1[System.Int32]", "MaxParallelExecutionsPerNode": "System.Nullable`1[System.Int32]", @@ -4087,7 +6684,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -4154,7 +6751,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthorizationType": "System.String", "Name": "System.String", @@ -4246,7 +6843,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4320,7 +6917,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -4503,7 +7100,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4571,7 +7168,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4665,7 +7262,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4733,7 +7330,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -4809,7 +7406,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4884,7 +7481,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthKey1": "System.String", "AuthKey2": "System.String" @@ -5023,7 +7620,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -5320,7 +7917,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -5491,7 +8088,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeMetrics", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeMetrics, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeMetrics, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Nodes": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData]", "IntegrationRuntimeName": "System.String", @@ -5641,7 +8238,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -5938,7 +8535,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -6109,7 +8706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError]", "ResourceGroupName": "System.String", @@ -6185,7 +8782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "IsActiveDispatcher": "System.Nullable`1[System.Boolean]", @@ -6302,7 +8899,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6394,7 +8991,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -6527,7 +9124,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6691,7 +9288,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6809,7 +9406,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6877,7 +9474,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -6977,7 +9574,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7147,7 +9744,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -7444,7 +10041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -7615,7 +10212,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthKey1": "System.String", "AuthKey2": "System.String" @@ -7699,7 +10296,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7793,7 +10390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -7929,7 +10526,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8098,7 +10695,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8219,7 +10816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8287,7 +10884,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -8390,7 +10987,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8502,7 +11099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8596,7 +11193,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -8729,7 +11326,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8895,7 +11492,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9013,7 +11610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9081,7 +11678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -9181,7 +11778,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9293,7 +11890,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9385,7 +11982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -9518,7 +12115,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9682,7 +12279,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9800,7 +12397,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9868,7 +12465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -9968,7 +12565,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10043,7 +12640,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -10170,7 +12767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -10373,7 +12970,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10563,7 +13160,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10744,7 +13341,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11021,7 +13618,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11190,7 +13787,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11430,7 +14027,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11707,7 +14304,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11924,7 +14521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11992,7 +14589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -12166,7 +14763,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12443,7 +15040,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12511,7 +15108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -12662,7 +15259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12781,7 +15378,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12856,7 +15453,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LastOperation": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult", "OtherErrors": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError]", @@ -12949,7 +15546,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13043,7 +15640,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -13152,7 +15749,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13294,7 +15891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13388,7 +15985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13456,7 +16053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -13532,7 +16129,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13626,7 +16223,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13720,7 +16317,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -13829,7 +16426,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13971,7 +16568,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14065,7 +16662,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14133,7 +16730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -14209,7 +16806,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14303,7 +16900,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14395,7 +16992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -14504,7 +17101,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14644,7 +17241,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14738,7 +17335,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14806,7 +17403,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -14882,7 +17479,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14957,7 +17554,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Links": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime]", @@ -15165,7 +17762,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -15665,7 +18262,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -15845,7 +18442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "IsActiveDispatcher": "System.Nullable`1[System.Boolean]", @@ -16054,7 +18651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -16537,7 +19134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Type": "System.String", @@ -16712,7 +19309,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService", "Name": "System.String", @@ -16826,9 +19423,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -17117,9 +19715,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -17415,7 +20014,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17433,9 +20032,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -17678,7 +20278,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17796,9 +20396,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -17874,7 +20475,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17942,7 +20543,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18056,7 +20657,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService", "Name": "System.String", @@ -18185,7 +20786,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18316,7 +20917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18384,7 +20985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService", "Name": "System.String", @@ -18465,7 +21066,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18557,7 +21158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18625,7 +21226,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18700,7 +21301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService", "Name": "System.String", @@ -18870,7 +21471,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19027,7 +21628,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19145,7 +21746,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19213,7 +21814,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19290,7 +21891,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -19405,9 +22006,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -19696,9 +22298,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -19976,7 +22579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -20106,7 +22709,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20237,7 +22840,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20305,7 +22908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -20387,7 +22990,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20479,7 +23082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20547,7 +23150,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20622,7 +23225,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -20793,7 +23396,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20950,7 +23553,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21068,7 +23671,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21136,7 +23739,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21213,7 +23816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSActivityRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSActivityRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSActivityRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ActivityRunStart": "System.Nullable`1[System.DateTime]", "ActivityRunEnd": "System.Nullable`1[System.DateTime]", @@ -21223,6 +23826,7 @@ "Error": "System.Object", "ResourceGroupName": "System.String", "DataFactoryName": "System.String", + "ActivityRunId": "System.String", "ActivityName": "System.String", "PipelineRunId": "System.String", "PipelineName": "System.String", @@ -21386,9 +23990,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -21653,9 +24258,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -22038,7 +24644,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "LastUpdated": "System.Nullable`1[System.DateTime]", @@ -22119,9 +24725,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -22338,9 +24945,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -22484,9 +25092,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -23009,7 +25618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerRunTimestamp": "System.Nullable`1[System.DateTime]", "ResourceGroupName": "System.String", @@ -23142,9 +25751,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -23363,9 +25973,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -23702,7 +26313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -23779,7 +26390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -23984,7 +26595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -24134,7 +26745,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", "Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", @@ -24634,7 +27245,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "LastUpdated": "System.Nullable`1[System.DateTime]", @@ -24732,7 +27343,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24750,9 +27361,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -24897,7 +27509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "LastUpdated": "System.Nullable`1[System.DateTime]", @@ -24983,7 +27595,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25123,7 +27735,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25215,9 +27827,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -25293,7 +27906,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25361,7 +27974,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25436,7 +28049,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -25551,9 +28164,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -25842,9 +28456,10 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", + "RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "DataFactoryName": "System.String", "DataFactoryId": "System.String", @@ -26122,7 +28737,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -26252,7 +28867,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26383,7 +28998,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26451,7 +29066,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -26533,7 +29148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26625,7 +29240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26693,7 +29308,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26768,7 +29383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -26939,7 +29554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27096,7 +29711,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27214,7 +29829,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27282,7 +29897,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27359,7 +29974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -27456,7 +30071,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -27586,7 +30201,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27717,7 +30332,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27785,7 +30400,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -27867,7 +30482,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27959,7 +30574,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28027,7 +30642,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28102,7 +30717,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -28199,7 +30814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -28329,7 +30944,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28460,7 +31075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28528,7 +31143,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models", "Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger", "Name": "System.String", @@ -28610,7 +31225,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28702,7 +31317,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28770,7 +31385,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28976,7 +31591,7 @@ "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrincipalId": "System.Nullable`1[System.Guid]", "TenantId": "System.Nullable`1[System.Guid]", @@ -29065,6 +31680,95 @@ "Methods": [], "Constructors": [] }, + "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration": { + "Namespace": "Microsoft.Azure.Management.DataFactory.Models", + "Name": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AccountName": "System.String", + "RepositoryName": "System.String", + "CollaborationBranch": "System.String", + "RootFolder": "System.String", + "LastCommitId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "accountName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "repositoryName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "collaborationBranch", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "rootFolder", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "lastCommitId", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "System.Void": { + "Namespace": "System", + "Name": "System.Void", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, "System.Collections.Generic.IDictionary`2[System.String,System.String]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -29209,16 +31913,6 @@ "Methods": [], "Constructors": [] }, - "System.Void": { - "Namespace": "System", - "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", @@ -29258,7 +31952,7 @@ "Microsoft.Azure.Management.DataFactory.Models.Dataset": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.Dataset", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Dataset, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Dataset, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Folder": "Microsoft.Azure.Management.DataFactory.Models.DatasetFolder", "LinkedServiceName": "Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference", @@ -29266,6 +31960,7 @@ "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Annotations": "System.Collections.Generic.IList`1[System.Object]", "Structure": "System.Object", + "Schema": "System.Object", "Description": "System.String" }, "ElementType": null, @@ -29328,6 +32023,10 @@ "Name": "structure", "Type": "System.Reflection.RuntimeParameterInfo" }, + { + "Name": "schema", + "Type": "System.Reflection.RuntimeParameterInfo" + }, { "Name": "parameters", "Type": "System.Reflection.RuntimeParameterInfo" @@ -29347,7 +32046,7 @@ "Microsoft.Azure.Management.DataFactory.Models.DatasetFolder": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.DatasetFolder", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.DatasetFolder, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.DatasetFolder, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String" }, @@ -29401,7 +32100,7 @@ "Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "ReferenceName": "System.String", @@ -29489,7 +32188,7 @@ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -29502,7 +32201,7 @@ "Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultValue": "System.Object", "Type": "System.String" @@ -29590,7 +32289,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -29602,7 +32301,7 @@ "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "SentBytes": "System.Nullable`1[System.Double]", @@ -29708,7 +32407,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -29720,7 +32419,7 @@ "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Parameters": "System.Collections.Generic.IList`1[System.String]", @@ -29828,7 +32527,7 @@ "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Parameters": "System.Collections.Generic.IList`1[System.String]", @@ -29912,7 +32611,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -29924,7 +32623,7 @@ "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError]", @@ -29993,7 +32692,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -30005,7 +32704,7 @@ "Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreateTime": "System.Nullable`1[System.DateTime]", "Name": "System.String", @@ -30079,7 +32778,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -30091,7 +32790,7 @@ "Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.SelfHostedIntegrationRuntimeNode, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]", @@ -30257,7 +32956,7 @@ "Microsoft.Azure.Management.DataFactory.Models.LinkedService": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.LinkedService", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedService, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.LinkedService, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectVia": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference", "Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]", @@ -30336,7 +33035,7 @@ "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "ReferenceName": "System.String", @@ -30401,7 +33100,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.Activity, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.Activity, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -30413,7 +33112,7 @@ "Microsoft.Azure.Management.DataFactory.Models.Activity": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.Activity", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Activity, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Activity, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "DependsOn": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ActivityDependency]", @@ -30492,7 +33191,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ActivityDependency]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ActivityDependency]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ActivityDependency, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.ActivityDependency, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -30504,7 +33203,7 @@ "Microsoft.Azure.Management.DataFactory.Models.ActivityDependency": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.ActivityDependency", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ActivityDependency, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.ActivityDependency, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", "DependencyConditions": "System.Collections.Generic.IList`1[System.String]", @@ -30573,7 +33272,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.UserProperty]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.UserProperty]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.UserProperty, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.DataFactory.Models.UserProperty, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -30585,7 +33284,7 @@ "Microsoft.Azure.Management.DataFactory.Models.UserProperty": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.UserProperty", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.UserProperty, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.UserProperty, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.Object", "Name": "System.String" @@ -30649,9 +33348,10 @@ "Microsoft.Azure.Management.DataFactory.Models.Trigger": { "Namespace": "Microsoft.Azure.Management.DataFactory.Models", "Name": "Microsoft.Azure.Management.DataFactory.Models.Trigger", - "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Trigger, Microsoft.Azure.Management.DataFactory, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Management.DataFactory.Models.Trigger, Microsoft.Azure.Management.DataFactory, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]", + "Annotations": "System.Collections.Generic.IList`1[System.Object]", "Description": "System.String", "RuntimeState": "System.String" }, @@ -30705,6 +33405,10 @@ { "Name": "runtimeState", "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "annotations", + "Type": "System.Reflection.RuntimeParameterInfo" } ] } diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll.json index 185292e4b4e3..e329d0a1708e 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CertificateSource": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource]", @@ -155,7 +155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CertificateSource": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource]", @@ -446,7 +446,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CertificateSource": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource]", @@ -615,7 +615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CertificateSource": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource]", @@ -756,7 +756,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CertificateSource": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource]", @@ -1429,7 +1429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CertificateSource": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource]", @@ -1547,7 +1547,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CertificateSource": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource]", @@ -1788,7 +1788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", "FrontendEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint]", @@ -1797,6 +1797,7 @@ "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule]", "Tags": "System.Collections.Hashtable", "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", + "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck]", "FriendlyName": "System.String", "ResourceState": "System.String", "ProvisioningState": "System.String", @@ -2028,13 +2029,16 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", "ManagedRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", "Tags": "System.Collections.Hashtable", "PolicyEnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "PolicyMode": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMode]", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.UInt16]", + "RedirectUrl": "System.String", + "CustomBlockResponseBody": "System.String", "Etag": "System.String", "ProvisioningState": "System.String", "Id": "System.String", @@ -2264,7 +2268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CertificateSource": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource]", @@ -2387,7 +2391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", "FrontendEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint]", @@ -2396,6 +2400,7 @@ "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule]", "Tags": "System.Collections.Hashtable", "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", + "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck]", "FriendlyName": "System.String", "ResourceState": "System.String", "ProvisioningState": "System.String", @@ -2649,7 +2654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", "FrontendEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint]", @@ -2658,6 +2663,7 @@ "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule]", "Tags": "System.Collections.Hashtable", "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", + "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck]", "FriendlyName": "System.String", "ResourceState": "System.String", "ProvisioningState": "System.String", @@ -2883,7 +2889,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", "FrontendEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint]", @@ -2892,6 +2898,7 @@ "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule]", "Tags": "System.Collections.Hashtable", "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", + "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck]", "FriendlyName": "System.String", "ResourceState": "System.String", "ProvisioningState": "System.String", @@ -2985,7 +2992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -3003,7 +3010,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -3021,7 +3028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -3039,7 +3046,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -3057,7 +3064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -3093,7 +3100,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3190,6 +3197,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "DisableCertificateNameCheck", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -3283,7 +3308,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -3307,7 +3332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -3331,7 +3356,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -3355,7 +3380,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -3379,7 +3404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -3427,7 +3452,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3529,6 +3554,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DisableCertificateNameCheck", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -3587,7 +3636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "HttpPort": "System.Nullable`1[System.Int32]", @@ -3736,7 +3785,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4016,7 +4065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4200,7 +4249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EnabledState": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", @@ -4314,7 +4363,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend", "GenericTypeArguments": [], @@ -4479,7 +4528,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend", "GenericTypeArguments": [], @@ -4602,17 +4651,15 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition]", - "Transforms": "System.Collections.Generic.List`1[System.String]", "Priority": "System.Int32", "Action": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAction]", "RuleType": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType]", "RateLimitDurationInMinutes": "System.Nullable`1[System.Int32]", "RateLimitThreshold": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "Etag": "System.String" + "Name": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -4681,7 +4728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4784,7 +4831,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition", "GenericTypeArguments": [], @@ -4802,7 +4849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4955,24 +5002,6 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - { - "Name": "Transform", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -5042,7 +5071,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5151,7 +5180,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition", "GenericTypeArguments": [], @@ -5175,7 +5204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5351,30 +5380,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "Transform", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -5433,13 +5438,16 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", "ManagedRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", "Tags": "System.Collections.Hashtable", "PolicyEnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "PolicyMode": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMode]", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.UInt16]", + "RedirectUrl": "System.String", + "CustomBlockResponseBody": "System.String", "Etag": "System.String", "ProvisioningState": "System.String", "Id": "System.String", @@ -5531,7 +5539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5634,7 +5642,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5737,7 +5745,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", "GenericTypeArguments": [], @@ -5755,7 +5763,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", "GenericTypeArguments": [], @@ -5767,6 +5775,60 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "RedirectUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CustomBlockResponseStatusCode", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": 200, + "ValidateRangeMax": 499, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CustomBlockResponseBody", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -5860,7 +5922,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5969,7 +6031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6078,7 +6140,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", "GenericTypeArguments": [], @@ -6102,7 +6164,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", "GenericTypeArguments": [], @@ -6119,6 +6181,78 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "RedirectUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomBlockResponseStatusCode", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": 200, + "ValidateRangeMax": 499, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomBlockResponseBody", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -6177,7 +6311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CertificateSource": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource]", @@ -6282,7 +6416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6421,7 +6555,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6524,7 +6658,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocolType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocolType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocolType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6681,7 +6815,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6871,7 +7005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7028,7 +7162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7137,7 +7271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocolType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocolType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocolType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7318,7 +7452,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7478,7 +7612,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocol": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]", "IntervalInSeconds": "System.Nullable`1[System.Int32]", @@ -7573,7 +7707,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7781,7 +7915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7965,7 +8099,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SampleSize": "System.Nullable`1[System.Int32]", "AdditionalLatencyMilliseconds": "System.Nullable`1[System.Int32]", @@ -8282,11 +8416,11 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleGroupOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride]", - "Priority": "System.Nullable`1[System.Int32]", - "Version": "System.String" + "RuleSetType": "System.String", + "RuleSetVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -8332,12 +8466,12 @@ ], "Parameters": [ { - "Name": "Priority", + "Name": "Type", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8373,7 +8507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride", "GenericTypeArguments": [], @@ -8425,12 +8559,12 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Priority", + "Name": "Type", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8466,7 +8600,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -8478,7 +8612,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride", "GenericTypeArguments": [], @@ -8541,9 +8675,9 @@ }, { "VerbName": "New", - "NounName": "AzFrontDoorMatchConditionObject", - "Name": "New-AzFrontDoorMatchConditionObject", - "ClassName": "Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorMatchConditionObject", + "NounName": "AzFrontDoorManagedRuleOverrideObject", + "Name": "New-AzFrontDoorManagedRuleOverrideObject", + "ClassName": "Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorManagedRuleOverrideObject", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -8552,14 +8686,12 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "MatchValue": "System.Collections.Generic.List`1[System.String]", - "MatchVariable": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable]", - "OperatorProperty": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty]", - "NegateCondition": "System.Nullable`1[System.Boolean]", - "Selector": "System.String" + "Action": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAction]", + "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", + "RuleId": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -8605,12 +8737,30 @@ ], "Parameters": [ { - "Name": "MatchVariable", + "Name": "RuleId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Action", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8708,151 +8858,12 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "OperatorProperty", + "Name": "Disabled", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MatchValue", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Selector", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NegateCondition", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8904,101 +8915,16 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "MatchVariable", + "Name": "RuleId", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -9013,12 +8939,12 @@ }, { "ParameterMetadata": { - "Name": "OperatorProperty", + "Name": "Action", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9115,21 +9041,21 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MatchValue", + "Name": "Disabled", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, - "ElementType": "System.String", + "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -9137,69 +9063,21 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Selector", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NegateCondition", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", @@ -9238,9 +9116,9 @@ }, { "VerbName": "New", - "NounName": "AzFrontDoorRoutingRuleObject", - "Name": "New-AzFrontDoorRoutingRuleObject", - "ClassName": "Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRoutingRuleObject", + "NounName": "AzFrontDoorMatchConditionObject", + "Name": "New-AzFrontDoorMatchConditionObject", + "ClassName": "Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorMatchConditionObject", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -9249,24 +9127,14 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "EnableCaching": "System.Boolean", - "HealthProbeSettings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting]", - "AcceptedProtocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]", - "FrontendEndpointIds": "System.Collections.Generic.List`1[System.String]", - "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", - "DynamicCompression": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", - "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", - "ForwardingProtocol": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol]", - "QueryParameterStripDirective": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective]", - "CustomForwardingPath": "System.String", - "BackendPoolId": "System.String", - "ResourceState": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String" + "MatchValue": "System.Collections.Generic.List`1[System.String]", + "MatchVariable": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable]", + "OperatorProperty": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty]", + "NegateCondition": "System.Nullable`1[System.Boolean]", + "Selector": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -9312,156 +9180,12 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "FrontDoorName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Name", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "FrontendEndpointName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "BackendPoolName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AcceptedProtocol", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, - "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PatternToMatch", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CustomForwardingPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ForwardingProtocol", + "Name": "MatchVariable", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9559,30 +9283,12 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "EnableCaching", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "QueryParameterStripDirective", + "Name": "OperatorProperty", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9680,101 +9386,16 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "DynamicCompression", + "Name": "MatchValue", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": null, + "ElementType": "System.String", "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -9783,101 +9404,34 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "EnabledState", + "Name": "Selector", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NegateCondition", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -9925,204 +9479,12 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FrontDoorName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", + "Name": "MatchVariable", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FrontendEndpointName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BackendPoolName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AcceptedProtocol", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, - "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PatternToMatch", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "CustomForwardingPath", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ForwardingProtocol", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10219,43 +9581,19 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableCaching", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "QueryParameterStripDirective", + "Name": "OperatorProperty", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10352,6 +9690,30 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MatchValue", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -10359,242 +9721,72 @@ }, { "ParameterMetadata": { - "Name": "DynamicCompression", + "Name": "Selector", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnabledState", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NegateCondition", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], "Methods": [ { "Name": "Clear", @@ -10621,22 +9813,30 @@ }, { "VerbName": "New", - "NounName": "AzFrontDoorRuleGroupOverrideObject", - "Name": "New-AzFrontDoorRuleGroupOverrideObject", - "ClassName": "Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRuleGroupOverrideObject", + "NounName": "AzFrontDoorRoutingRuleObject", + "Name": "New-AzFrontDoorRoutingRuleObject", + "ClassName": "Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRoutingRuleObject", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByFieldsWithForwardingParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "Action": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction", - "RuleGroupOverride": "Microsoft.Azure.Commands.FrontDoor.Models.PSRuleGroupOverride" + "RouteConfiguration": "Microsoft.Azure.Commands.FrontDoor.Models.PSRouteConfiguration", + "HealthProbeSettings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting]", + "AcceptedProtocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]", + "FrontendEndpointIds": "System.Collections.Generic.List`1[System.String]", + "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", + "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", + "ResourceState": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -10682,29 +9882,173 @@ ], "Parameters": [ { - "Name": "Override", + "Name": "ResourceGroupName", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRuleGroupOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "FrontDoorName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "FrontendEndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BackendPoolName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AcceptedProtocol", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PatternToMatch", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CustomForwardingPath", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ForwardingProtocol", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" }, { @@ -10785,12 +10129,30 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Action", + "Name": "EnableCaching", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "QueryParameterStripDirective", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10888,51 +10250,1986 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DynamicCompression", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RedirectType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRedirectType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRedirectType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RedirectProtocol", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRedirectProtocol", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRedirectProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CustomHost", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CustomPath", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CustomFragment", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CustomQueryString", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnabledState", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FrontDoorName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FrontendEndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AcceptedProtocol", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PatternToMatch", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnabledState", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByFieldsWithForwardingParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "BackendPoolName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomForwardingPath", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ForwardingProtocol", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableCaching", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "QueryParameterStripDirective", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DynamicCompression", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FrontDoorName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FrontendEndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AcceptedProtocol", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PatternToMatch", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnabledState", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByFieldsWithRedirectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "RedirectType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRedirectType", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRedirectType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RedirectProtocol", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRedirectProtocol", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRedirectProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomHost", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomPath", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomFragment", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomQueryString", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FrontDoorName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FrontendEndpointName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AcceptedProtocol", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PatternToMatch", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "Override", + "Name": "EnabledState", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRuleGroupOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11029,106 +12326,36 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Action", - "AliasList": [], + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", + "Name": "Clear", "Parameters": [], - "ReturnType": "System.Type" + "ReturnType": "System.Void" } ], "Constructors": [] @@ -11138,11 +12365,200 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzFrontDoorRuleGroupOverrideObject", + "Name": "New-AzFrontDoorRuleGroupOverrideObject", + "ClassName": "Microsoft.Azure.Commands.FrontDoor.Cmdlets.NewAzureRmFrontDoorRuleGroupOverrideObject", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ManagedRuleOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride]", + "RuleGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "RuleGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ManagedRuleOverride", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "RuleGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "ManagedRuleOverride", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -11256,7 +12672,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", "FrontendEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint]", @@ -11265,6 +12681,7 @@ "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule]", "Tags": "System.Collections.Hashtable", "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", + "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck]", "FriendlyName": "System.String", "ResourceState": "System.String", "ProvisioningState": "System.String", @@ -11512,7 +12929,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", "FrontendEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint]", @@ -11521,6 +12938,7 @@ "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule]", "Tags": "System.Collections.Hashtable", "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", + "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck]", "FriendlyName": "System.String", "ResourceState": "System.String", "ProvisioningState": "System.String", @@ -12150,13 +13568,16 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", "ManagedRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", "Tags": "System.Collections.Hashtable", "PolicyEnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "PolicyMode": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMode]", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.UInt16]", + "RedirectUrl": "System.String", + "CustomBlockResponseBody": "System.String", "Etag": "System.String", "ProvisioningState": "System.String", "Id": "System.String", @@ -12402,13 +13823,16 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", "ManagedRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", "Tags": "System.Collections.Hashtable", "PolicyEnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "PolicyMode": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMode]", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.UInt16]", + "RedirectUrl": "System.String", + "CustomBlockResponseBody": "System.String", "Etag": "System.String", "ProvisioningState": "System.String", "Id": "System.String", @@ -12704,7 +14128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", "FrontendEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint]", @@ -12713,6 +14137,7 @@ "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule]", "Tags": "System.Collections.Hashtable", "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", + "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck]", "FriendlyName": "System.String", "ResourceState": "System.String", "ProvisioningState": "System.String", @@ -12806,7 +14231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", "FrontendEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint]", @@ -12815,6 +14240,7 @@ "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule]", "Tags": "System.Collections.Hashtable", "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", + "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck]", "FriendlyName": "System.String", "ResourceState": "System.String", "ProvisioningState": "System.String", @@ -12889,7 +14315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -12907,7 +14333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -12925,7 +14351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -12943,7 +14369,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -12961,7 +14387,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -12997,7 +14423,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13094,6 +14520,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "DisableCertificateNameCheck", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -13187,7 +14631,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -13211,7 +14655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -13235,7 +14679,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -13259,7 +14703,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -13283,7 +14727,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -13331,7 +14775,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13433,6 +14877,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DisableCertificateNameCheck", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -13484,7 +14952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontDoor, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", "FrontendEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint]", @@ -13493,6 +14961,7 @@ "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule]", "Tags": "System.Collections.Hashtable", "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", + "EnforceCertificateNameCheck": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck]", "FriendlyName": "System.String", "ResourceState": "System.String", "ProvisioningState": "System.String", @@ -13555,7 +15024,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -13579,7 +15048,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -13603,7 +15072,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -13627,7 +15096,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -13651,7 +15120,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -13699,7 +15168,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13801,6 +15270,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DisableCertificateNameCheck", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -13876,7 +15369,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -13900,7 +15393,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -13924,7 +15417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -13948,7 +15441,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -13972,7 +15465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -14020,7 +15513,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14122,6 +15615,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DisableCertificateNameCheck", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -14173,7 +15690,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", "GenericTypeArguments": [], @@ -14197,7 +15714,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", "GenericTypeArguments": [], @@ -14221,7 +15738,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", "GenericTypeArguments": [], @@ -14245,7 +15762,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", "GenericTypeArguments": [], @@ -14269,7 +15786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", "GenericTypeArguments": [], @@ -14317,7 +15834,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14419,6 +15936,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DisableCertificateNameCheck", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -14464,10 +16005,10 @@ "AliasList": [] }, { - "VerbName": "Set", + "VerbName": "Update", "NounName": "AzFrontDoorFireWallPolicy", - "Name": "Set-AzFrontDoorFireWallPolicy", - "ClassName": "Microsoft.Azure.Commands.FrontDoor.Cmdlets.SetAzureRmFrontDoorFireWallPolicy", + "Name": "Update-AzFrontDoorFireWallPolicy", + "ClassName": "Microsoft.Azure.Commands.FrontDoor.Cmdlets.UpdateAzureRmFrontDoorFireWallPolicy", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -14477,13 +16018,16 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", "ManagedRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", "Tags": "System.Collections.Hashtable", "PolicyEnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "PolicyMode": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMode]", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.UInt16]", + "RedirectUrl": "System.String", + "CustomBlockResponseBody": "System.String", "Etag": "System.String", "ProvisioningState": "System.String", "Id": "System.String", @@ -14575,13 +16119,16 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", "ManagedRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", "Tags": "System.Collections.Hashtable", "PolicyEnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "PolicyMode": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMode]", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.UInt16]", + "RedirectUrl": "System.String", + "CustomBlockResponseBody": "System.String", "Etag": "System.String", "ProvisioningState": "System.String", "Id": "System.String", @@ -14654,7 +16201,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14757,7 +16304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14860,7 +16407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", "GenericTypeArguments": [], @@ -14878,7 +16425,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", "GenericTypeArguments": [], @@ -14890,6 +16437,62 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "RedirectUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CustomBlockResponseStatusCode", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Int32" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CustomBlockResponseBody", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -14983,7 +16586,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15092,7 +16695,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15196,14 +16799,62 @@ }, { "ParameterMetadata": { - "Name": "Customrule", + "Name": "Customrule", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ManagedRule", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RedirectUrl", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", + "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -15220,14 +16871,40 @@ }, { "ParameterMetadata": { - "Name": "ManagedRule", + "Name": "CustomBlockResponseStatusCode", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", + "ElementType": null, + "GenericTypeArguments": [ + "System.Int32" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomBlockResponseBody", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -15293,13 +16970,16 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSPolicy, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", "ManagedRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", "Tags": "System.Collections.Hashtable", "PolicyEnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "PolicyMode": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMode]", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.UInt16]", + "RedirectUrl": "System.String", + "CustomBlockResponseBody": "System.String", "Etag": "System.String", "ProvisioningState": "System.String", "Id": "System.String", @@ -15360,7 +17040,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15469,7 +17149,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15578,7 +17258,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", "GenericTypeArguments": [], @@ -15602,7 +17282,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", "GenericTypeArguments": [], @@ -15619,6 +17299,80 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "RedirectUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomBlockResponseStatusCode", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Int32" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomBlockResponseBody", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -15694,7 +17448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15803,7 +17557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15912,7 +17666,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", "GenericTypeArguments": [], @@ -15936,7 +17690,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", "GenericTypeArguments": [], @@ -15953,6 +17707,80 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "RedirectUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomBlockResponseStatusCode", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Int32" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomBlockResponseBody", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -16004,7 +17832,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16113,7 +17941,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16222,7 +18050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", "GenericTypeArguments": [], @@ -16241,14 +18069,88 @@ }, { "ParameterMetadata": { - "Name": "ManagedRule", + "Name": "ManagedRule", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RedirectUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomBlockResponseStatusCode", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Int32" + ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomBlockResponseBody", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", + "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -16452,7 +18354,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16464,7 +18366,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackend, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "HttpPort": "System.Nullable`1[System.Int32]", @@ -16514,7 +18416,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16526,7 +18428,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16653,7 +18555,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16665,7 +18567,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16760,7 +18662,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16772,7 +18674,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateType": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16867,7 +18769,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16879,7 +18781,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16974,7 +18876,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -16986,7 +18888,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomHttpsProvisioningSubstate, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17081,7 +18983,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocolType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocolType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocolType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocolType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17093,7 +18995,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocolType": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocolType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocolType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocolType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17378,7 +19280,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17390,7 +19292,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSBackendPool, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EnabledState": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState", "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", @@ -17441,7 +19343,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17453,7 +19355,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSFrontendEndpoint, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Backends": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSBackend]", "CertificateSource": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCertificateSource]", @@ -17513,7 +19415,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17525,7 +19427,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocol": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]", "IntervalInSeconds": "System.Nullable`1[System.Int32]", @@ -17575,7 +19477,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17587,7 +19489,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17682,7 +19584,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17694,7 +19596,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSLoadBalancingSetting, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SampleSize": "System.Nullable`1[System.Int32]", "AdditionalLatencyMilliseconds": "System.Nullable`1[System.Int32]", @@ -17744,7 +19646,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -17756,19 +19658,14 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "EnableCaching": "System.Boolean", + "RouteConfiguration": "Microsoft.Azure.Commands.FrontDoor.Models.PSRouteConfiguration", "HealthProbeSettings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSHealthProbeSetting]", "AcceptedProtocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]", "FrontendEndpointIds": "System.Collections.Generic.List`1[System.String]", "PatternsToMatch": "System.Collections.Generic.List`1[System.String]", - "DynamicCompression": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", - "ForwardingProtocol": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol]", - "QueryParameterStripDirective": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective]", - "CustomForwardingPath": "System.String", - "BackendPoolId": "System.String", "ResourceState": "System.String", "Id": "System.String", "Name": "System.String", @@ -17811,128 +19708,33 @@ } ] }, - "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol" - ], - "Methods": [], - "Constructors": [] - }, - "System.Collections.Generic.List`1[System.String]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "System.String" - ], - "Methods": [], - "Constructors": [] - }, - "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol": { + "Microsoft.Azure.Commands.FrontDoor.Models.PSRouteConfiguration": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSForwardingProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRouteConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRouteConfiguration, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, { "Name": "ToString", "Parameters": [], "ReturnType": "System.String" }, { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", + "Name": "Equals", "Parameters": [ { - "Name": "flag", + "Name": "obj", "Type": "System.Reflection.RuntimeParameterInfo" } ], "ReturnType": "System.Boolean" }, { - "Name": "GetTypeCode", + "Name": "GetHashCode", "Parameters": [], - "ReturnType": "System.TypeCode" + "ReturnType": "System.Int32" }, { "Name": "GetType", @@ -17940,24 +19742,64 @@ "ReturnType": "System.Type" } ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.FrontDoor.Models.PSProtocol" + ], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.List`1[System.String]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Hashtable": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, - "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective]": { + "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective" + "Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective": { + "Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSQueryParameterStripDirective, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSEnforceCertificateNameCheck, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18049,20 +19891,10 @@ ], "Constructors": [] }, - "System.Collections.Hashtable": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -18074,17 +19906,15 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition]", - "Transforms": "System.Collections.Generic.List`1[System.String]", "Priority": "System.Int32", "Action": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAction]", "RuleType": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType]", "RateLimitDurationInMinutes": "System.Nullable`1[System.Int32]", "RateLimitThreshold": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "Etag": "System.String" + "Name": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -18126,7 +19956,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -18138,7 +19968,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchCondition, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchValue": "System.Collections.Generic.List`1[System.String]", "MatchVariable": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable]", @@ -18186,7 +20016,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -18198,7 +20028,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18293,7 +20123,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -18305,7 +20135,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSOperatorProperty, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18412,7 +20242,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAction]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAction]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -18424,7 +20254,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSAction": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18519,7 +20349,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -18531,7 +20361,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSCustomRuleType, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18626,7 +20456,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -18638,10 +20468,10 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSManagedRule, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "Priority": "System.Nullable`1[System.Int32]", - "Version": "System.String" + "RuleSetType": "System.String", + "RuleSetVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -18683,7 +20513,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMode]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -18695,7 +20525,7 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSMode": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSMode, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18787,10 +20617,22 @@ ], "Constructors": [] }, + "System.Nullable`1[System.UInt16]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.UInt16]", + "AssemblyQualifiedName": "System.Nullable`1[[System.UInt16, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.UInt16" + ], + "Methods": [], + "Constructors": [] + }, "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -18802,10 +20644,10 @@ "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride": { "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "Action": "Microsoft.Azure.Commands.FrontDoor.Models.PSAction", - "RuleGroupOverride": "Microsoft.Azure.Commands.FrontDoor.Models.PSRuleGroupOverride" + "ManagedRuleOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride]", + "RuleGroupName": "System.String" }, "ElementType": null, "GenericTypeArguments": [], @@ -18844,92 +20686,49 @@ } ] }, - "Microsoft.Azure.Commands.FrontDoor.Models.PSRuleGroupOverride": { - "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", - "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSRuleGroupOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.2.0, Culture=neutral, PublicKeyToken=null", + "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride": { + "Namespace": "Microsoft.Azure.Commands.FrontDoor.Models", + "Name": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.FrontDoor.Models.PSAzureManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.FrontDoor, Version=0.7.3.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Action": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSAction]", + "EnabledState": "System.Nullable`1[Microsoft.Azure.Commands.FrontDoor.Models.PSEnabledState]", + "RuleId": "System.String" + }, + "ElementType": null, "GenericTypeArguments": [], "Methods": [ - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, { "Name": "ToString", "Parameters": [], "ReturnType": "System.String" }, { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", + "Name": "Equals", "Parameters": [ { - "Name": "flag", + "Name": "obj", "Type": "System.Reflection.RuntimeParameterInfo" } ], "ReturnType": "System.Boolean" }, { - "Name": "GetTypeCode", + "Name": "GetHashCode", "Parameters": [], - "ReturnType": "System.TypeCode" + "ReturnType": "System.Int32" }, { "Name": "GetType", @@ -18937,7 +20736,13 @@ "ReturnType": "System.Type" } ], - "Constructors": [] + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] } } } diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll.json index b6b4b1c7040e..7129db139b82 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll.json @@ -2057,6 +2057,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "ApiVersion", "AliasList": [], @@ -2229,6 +2247,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -2467,6 +2509,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -2705,6 +2771,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -2945,31 +3035,7 @@ }, { "ParameterMetadata": { - "Name": "ApiVersion", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Pre", + "Name": "SkipTemplateParameterPrompt", "AliasList": [], "Type": { "Namespace": "System.Management.Automation", @@ -2993,125 +3059,7 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByTemplateObjectAndParameterFile", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "TemplateParameterFile", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TemplateObject", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", + "Name": "ApiVersion", "AliasList": [], "Type": { "Namespace": "System", @@ -3128,30 +3076,6 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DeploymentDebugLogLevel", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -3159,55 +3083,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ApiVersion", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Pre", + "Name": "Pre", "AliasList": [], "Type": { "Namespace": "System.Management.Automation", @@ -3271,7 +3147,7 @@ ] }, { - "Name": "ByTemplateFileAndParameterFile", + "Name": "ByTemplateObjectAndParameterFile", "Parameters": [ { "ParameterMetadata": { @@ -3299,12 +3175,12 @@ }, { "ParameterMetadata": { - "Name": "TemplateFile", + "Name": "TemplateObject", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3314,7 +3190,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -3419,6 +3295,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -3509,7 +3409,7 @@ ] }, { - "Name": "ByTemplateUriAndParameterFile", + "Name": "ByTemplateFileAndParameterFile", "Parameters": [ { "ParameterMetadata": { @@ -3537,7 +3437,7 @@ }, { "ParameterMetadata": { - "Name": "TemplateUri", + "Name": "TemplateFile", "AliasList": [], "Type": { "Namespace": "System", @@ -3659,31 +3559,7 @@ }, { "ParameterMetadata": { - "Name": "ApiVersion", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Pre", + "Name": "SkipTemplateParameterPrompt", "AliasList": [], "Type": { "Namespace": "System.Management.Automation", @@ -3707,125 +3583,7 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByTemplateObjectAndParameterUri", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "TemplateParameterUri", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TemplateObject", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "DeploymentName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", + "Name": "ApiVersion", "AliasList": [], "Type": { "Namespace": "System", @@ -3842,30 +3600,6 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DeploymentDebugLogLevel", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -3873,55 +3607,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ApiVersion", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Pre", + "Name": "Pre", "AliasList": [], "Type": { "Namespace": "System.Management.Automation", @@ -3985,11 +3671,11 @@ ] }, { - "Name": "ByTemplateFileAndParameterUri", + "Name": "ByTemplateUriAndParameterFile", "Parameters": [ { "ParameterMetadata": { - "Name": "TemplateParameterUri", + "Name": "TemplateParameterFile", "AliasList": [], "Type": { "Namespace": "System", @@ -4013,7 +3699,7 @@ }, { "ParameterMetadata": { - "Name": "TemplateFile", + "Name": "TemplateUri", "AliasList": [], "Type": { "Namespace": "System", @@ -4133,6 +3819,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -4223,7 +3933,7 @@ ] }, { - "Name": "ByTemplateUriAndParameterUri", + "Name": "ByTemplateObjectAndParameterUri", "Parameters": [ { "ParameterMetadata": { @@ -4251,12 +3961,12 @@ }, { "ParameterMetadata": { - "Name": "TemplateUri", + "Name": "TemplateObject", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4266,7 +3976,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -4371,6 +4081,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -4461,16 +4195,16 @@ ] }, { - "Name": "ByTemplateObjectWithNoParameters", + "Name": "ByTemplateFileAndParameterUri", "Parameters": [ { "ParameterMetadata": { - "Name": "TemplateObject", + "Name": "TemplateParameterUri", "AliasList": [], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4480,7 +4214,31 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TemplateFile", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -4585,6 +4343,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -4675,11 +4457,35 @@ ] }, { - "Name": "ByTemplateFileWithNoParameters", + "Name": "ByTemplateUriAndParameterUri", "Parameters": [ { "ParameterMetadata": { - "Name": "TemplateFile", + "Name": "TemplateParameterUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TemplateUri", "AliasList": [], "Type": { "Namespace": "System", @@ -4799,6 +4605,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -4889,16 +4719,16 @@ ] }, { - "Name": "ByTemplateUriWithNoParameters", + "Name": "ByTemplateObjectWithNoParameters", "Parameters": [ { "ParameterMetadata": { - "Name": "TemplateUri", + "Name": "TemplateObject", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4908,7 +4738,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -5013,6 +4843,506 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApiVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Pre", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByTemplateFileWithNoParameters", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "TemplateFile", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "DeploymentName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeploymentDebugLogLevel", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApiVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Pre", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByTemplateUriWithNoParameters", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "TemplateUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "DeploymentName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeploymentDebugLogLevel", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -7802,6 +8132,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "ApiVersion", "AliasList": [], @@ -7900,6 +8248,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -8064,6 +8436,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -8228,6 +8624,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -8392,6 +8812,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -8556,6 +9000,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -8674,7 +9142,31 @@ }, { "ParameterMetadata": { - "Name": "TemplateFile", + "Name": "TemplateFile", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", "AliasList": [], "Type": { "Namespace": "System", @@ -8694,16 +9186,16 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "SkipTemplateParameterPrompt", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8713,9 +9205,9 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -8884,6 +9376,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -9048,6 +9564,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -9212,6 +9752,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -9376,6 +9940,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -9516,6 +10104,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -9656,6 +10268,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -9796,6 +10432,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -42464,6 +43124,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "ApiVersion", "AliasList": [], @@ -42822,6 +43500,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -43246,6 +43948,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -43670,6 +44396,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -44094,6 +44844,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -44518,6 +45292,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -44942,6 +45740,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -45366,6 +46188,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -45790,6 +46636,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -46214,6 +47084,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -46638,6 +47532,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -47038,6 +47956,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -47438,6 +48380,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -47838,6 +48804,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -49654,6 +50644,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "ApiVersion", "AliasList": [], @@ -49909,6 +50917,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -50230,6 +51262,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -50551,6 +51607,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -50872,6 +51952,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -51193,6 +52297,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -51514,6 +52642,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -51835,6 +52987,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -52156,6 +53332,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -52477,6 +53677,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -52798,6 +54022,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -53095,6 +54343,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -53392,6 +54664,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", @@ -53689,6 +54985,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "SkipTemplateParameterPrompt", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApiVersion", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Resources.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Resources.dll.json index ac4f4e89b29a..83f2f0df5e52 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Resources.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Resources.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models", "Name": "Microsoft.Azure.Commands.Resources.Models.PSResourceProviderOperation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.PSResourceProviderOperation, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.PSResourceProviderOperation, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsDataAction": "System.Boolean", "Operation": "System.String", @@ -210,7 +210,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -3120,7 +3120,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -5291,7 +5291,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -5558,7 +5558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -7511,7 +7511,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CanDelegate": "System.Boolean", "RoleAssignmentId": "System.String", @@ -7652,7 +7652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -8151,7 +8151,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -8230,7 +8230,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -8397,7 +8397,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -8613,7 +8613,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -9046,7 +9046,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -9303,7 +9303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -9382,7 +9382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -9549,7 +9549,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsCustom": "System.Boolean", "Actions": "System.Collections.Generic.List`1[System.String]", @@ -9710,7 +9710,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String", "Type": "System.String", @@ -9773,7 +9773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -10026,7 +10026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -10749,7 +10749,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -10896,7 +10896,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -11464,7 +11464,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -11537,7 +11537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -11702,7 +11702,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -11848,7 +11848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "UpdatedTime": "System.Nullable`1[System.DateTime]", @@ -12350,7 +12350,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -12622,7 +12622,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -13009,7 +13009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -13331,7 +13331,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.String", "EndDate": "System.String", @@ -13441,7 +13441,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -13745,7 +13745,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -13907,7 +13907,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -14493,7 +14493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -14971,7 +14971,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADObject, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADObject, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisplayName": "System.String", "Id": "System.String", @@ -15065,7 +15065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -15300,7 +15300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -15458,7 +15458,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -15590,7 +15590,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -15984,7 +15984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -16220,7 +16220,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.String", "EndDate": "System.String", @@ -16332,7 +16332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -16634,7 +16634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -16794,7 +16794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserPrincipalName": "System.String", "ObjectType": "System.String", @@ -17449,7 +17449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.String", "EndDate": "System.String", @@ -17559,7 +17559,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -18571,7 +18571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -18754,7 +18754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -19036,7 +19036,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -19188,7 +19188,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -19206,7 +19206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -19855,7 +19855,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -20279,7 +20279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -20398,7 +20398,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -20630,7 +20630,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -20684,7 +20684,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADServicePrincipalWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADServicePrincipalWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADServicePrincipalWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "Secret": "System.Security.SecureString", @@ -20784,7 +20784,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -20847,7 +20847,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -20867,7 +20867,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -21242,7 +21242,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -21476,7 +21476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -21966,7 +21966,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -22200,7 +22200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -22268,7 +22268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -22379,7 +22379,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -22538,7 +22538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -22607,7 +22607,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", "GenericTypeArguments": [], @@ -22675,7 +22675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -22858,7 +22858,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -22927,7 +22927,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", "GenericTypeArguments": [], @@ -23046,7 +23046,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.String", "EndDate": "System.String", @@ -23098,7 +23098,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization", "Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADCredentialWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADCredentialWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADCredentialWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Secret": "System.Security.SecureString", "StartDate": "System.String", @@ -23200,7 +23200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -23870,7 +23870,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -24049,7 +24049,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -24305,7 +24305,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserPrincipalName": "System.String", "ObjectType": "System.String", @@ -24795,7 +24795,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -25351,7 +25351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -25682,7 +25682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -26166,7 +26166,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -26479,7 +26479,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -26843,7 +26843,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -27188,7 +27188,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -27442,7 +27442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -27829,7 +27829,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityEnabled": "System.Nullable`1[System.Boolean]", "MailNickname": "System.String", @@ -28155,7 +28155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -28290,7 +28290,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -28347,7 +28347,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -28952,7 +28952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -29107,7 +29107,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -29438,7 +29438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -29984,7 +29984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -30357,7 +30357,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserPrincipalName": "System.String", "ObjectType": "System.String", @@ -30954,7 +30954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserPrincipalName": "System.String", "ObjectType": "System.String", @@ -31207,7 +31207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -31305,7 +31305,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -31883,7 +31883,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableToOtherTenants": "System.Boolean", "IdentifierUris": "System.Collections.Generic.IList`1[System.String]", @@ -32171,7 +32171,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -32287,7 +32287,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -33017,7 +33017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ApplicationId": "System.Guid", "ObjectType": "System.String", @@ -33393,7 +33393,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserPrincipalName": "System.String", "ObjectType": "System.String", @@ -33506,7 +33506,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserPrincipalName": "System.String", "ObjectType": "System.String", @@ -34175,7 +34175,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserPrincipalName": "System.String", "ObjectType": "System.String", @@ -34775,7 +34775,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -34787,7 +34787,7 @@ "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo": { "Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups", "Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]", "Type": "System.String", @@ -34899,7 +34899,7 @@ "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.DateTime", "EndDate": "System.DateTime", @@ -34946,7 +34946,7 @@ "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential": { "Namespace": "Microsoft.Azure.Commands.ActiveDirectory", "Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.DateTime", "EndDate": "System.DateTime", diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json index 44c3c1b7c572..97b55e20d8fd 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -128,7 +128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -414,7 +414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -656,7 +656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -770,7 +770,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -1056,7 +1056,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -1298,7 +1298,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -1412,7 +1412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -1528,7 +1528,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1772,7 +1772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1997,7 +1997,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -2113,7 +2113,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2434,7 +2434,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2731,7 +2731,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2963,7 +2963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -3077,7 +3077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -3338,7 +3338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -3575,7 +3575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -3689,7 +3689,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -3950,7 +3950,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -4187,7 +4187,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -4301,7 +4301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -4417,7 +4417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4661,7 +4661,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4886,7 +4886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -5002,7 +5002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5323,7 +5323,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5620,7 +5620,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5852,7 +5852,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -5961,7 +5961,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -6160,7 +6160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -6329,7 +6329,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -6438,7 +6438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -6637,7 +6637,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -6806,7 +6806,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -6915,7 +6915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -7031,7 +7031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7305,7 +7305,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7578,7 +7578,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7779,7 +7779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -7847,7 +7847,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8048,7 +8048,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8256,7 +8256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -8365,7 +8365,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -8557,7 +8557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -8719,7 +8719,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -8828,7 +8828,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -9020,7 +9020,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -9182,7 +9182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -9296,7 +9296,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -9412,7 +9412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9686,7 +9686,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9959,7 +9959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10160,7 +10160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", "EmailAdmins": "System.Boolean", @@ -10228,7 +10228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10429,7 +10429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10637,7 +10637,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanExportModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServerName": "System.String", "DatabaseName": "System.String", @@ -10743,7 +10743,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -11018,7 +11018,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -11231,7 +11231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -11343,7 +11343,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -11671,7 +11671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -11937,7 +11937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -12049,7 +12049,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -12419,7 +12419,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -12709,7 +12709,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanExportModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "InstanceName": "System.String", "DatabaseName": "System.String", @@ -12815,7 +12815,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -13090,7 +13090,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -13347,7 +13347,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -13459,7 +13459,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -13762,7 +13762,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -14047,7 +14047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", "Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", @@ -14159,7 +14159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -14504,7 +14504,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -14837,7 +14837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -14944,7 +14944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -15314,7 +15314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -15604,7 +15604,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -15711,7 +15711,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -16081,7 +16081,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -16371,7 +16371,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -16478,7 +16478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -16832,7 +16832,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -17088,7 +17088,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -17195,7 +17195,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -17540,7 +17540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -17873,7 +17873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -17980,7 +17980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -18325,7 +18325,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -18658,7 +18658,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -18765,7 +18765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -19119,7 +19119,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleAppliesToMaster": "System.Boolean", "BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", @@ -19467,7 +19467,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", @@ -19741,7 +19741,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", @@ -20141,7 +20141,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", @@ -20457,7 +20457,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model", "Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", "ResourceGroupName": "System.String", @@ -21281,7 +21281,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -21539,7 +21539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -22033,7 +22033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "State": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType", "ResourceGroupName": "System.String", @@ -22305,7 +22305,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Status": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType", "PercentComplete": "System.Single", @@ -22578,7 +22578,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", "ResourceGroupName": "System.String", @@ -22809,7 +22809,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "State": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType", "ResourceGroupName": "System.String", @@ -22865,7 +22865,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23061,7 +23061,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23293,7 +23293,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", "ResourceGroupName": "System.String", @@ -23350,7 +23350,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23582,7 +23582,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23862,7 +23862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -24144,7 +24144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -24383,7 +24383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -24707,7 +24707,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -24988,7 +24988,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -25530,7 +25530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", "EmailAdmins": "System.Boolean", @@ -26342,7 +26342,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model", "Name": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model.UpgradeServerHint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model.UpgradeServerHint, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model.UpgradeServerHint, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Databases": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties]", "ElasticPools": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties]" @@ -26612,7 +26612,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model", "Name": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model.AzureSqlServerServiceObjectiveModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model.AzureSqlServerServiceObjectiveModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model.AzureSqlServerServiceObjectiveModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "IsDefault": "System.Boolean", @@ -26887,7 +26887,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -27127,7 +27127,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -27623,7 +27623,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -27905,7 +27905,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -28359,7 +28359,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -28686,7 +28686,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -28971,7 +28971,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -29298,7 +29298,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -29574,7 +29574,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -29892,7 +29892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -30004,7 +30004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -30318,7 +30318,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -30686,7 +30686,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -31134,7 +31134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -31429,7 +31429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState", "OperationId": "System.Guid", @@ -31755,7 +31755,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -32218,7 +32218,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -32555,7 +32555,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -33116,7 +33116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -33390,7 +33390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -33748,7 +33748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -34064,7 +34064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ObjectId": "System.Guid", "ResourceGroupName": "System.String", @@ -34294,7 +34294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ObjectId": "System.Guid", "ResourceGroupName": "System.String", @@ -34566,7 +34566,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ObjectId": "System.Guid", "ResourceGroupName": "System.String", @@ -34880,7 +34880,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.SecureConnection.Model", "Name": "Microsoft.Azure.Commands.Sql.SecureConnection.Model.DatabaseSecureConnectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.SecureConnection.Model.DatabaseSecureConnectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.SecureConnection.Model.DatabaseSecureConnectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionStrings": "Microsoft.Azure.Commands.Sql.SecureConnection.Model.ConnectionStrings", "SecureConnectionState": "Microsoft.Azure.Commands.Sql.SecureConnection.Model.SecureConnectionStateType", @@ -35155,7 +35155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -35673,7 +35673,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -36914,7 +36914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -37098,7 +37098,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37450,7 +37450,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37845,7 +37845,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38244,7 +38244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38500,7 +38500,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -38874,7 +38874,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -39734,7 +39734,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -40140,7 +40140,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -40546,7 +40546,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -40905,7 +40905,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -41029,7 +41029,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -41267,7 +41267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -41523,7 +41523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -41647,7 +41647,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -41885,7 +41885,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -42141,7 +42141,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo", "ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo", @@ -42260,7 +42260,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -42480,7 +42480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -42712,7 +42712,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -43071,7 +43071,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -44720,7 +44720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -44829,7 +44829,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -45092,7 +45092,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -45401,7 +45401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -45472,7 +45472,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -45825,7 +45825,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -47148,7 +47148,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -47315,7 +47315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -47664,7 +47664,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -47833,7 +47833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ManagedInstanceName": "System.String", @@ -48173,7 +48173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -48358,7 +48358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -48841,7 +48841,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -49236,7 +49236,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -49383,7 +49383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -49690,7 +49690,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -50019,7 +50019,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -50202,7 +50202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -50292,7 +50292,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ManagedInstanceName": "System.String", @@ -50754,7 +50754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -51416,7 +51416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -51912,7 +51912,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ManagedInstanceName": "System.String", @@ -52658,7 +52658,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DeletionDate": "System.DateTime", "CreationDate": "System.Nullable`1[System.DateTime]", @@ -53187,7 +53187,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RetentionDays": "System.Int32", "DeletionDate": "System.Nullable`1[System.DateTime]", @@ -53268,7 +53268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -53453,7 +53453,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -53815,7 +53815,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SupportedServerVersions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel]", "LocationName": "System.String", @@ -54307,7 +54307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Model", "Name": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EstimatedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", "ReportedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", @@ -54678,7 +54678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Model", "Name": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EstimatedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", "ReportedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", @@ -55007,7 +55007,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Model", "Name": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EstimatedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", "ReportedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]", @@ -55336,7 +55336,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportStatusModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportStatusModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportStatusModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationStatusLink": "System.String", "ErrorMessage": "System.String", @@ -55526,7 +55526,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthenticationType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", "StorageKeyType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", @@ -55626,7 +55626,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -55801,7 +55801,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56009,7 +56009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56214,7 +56214,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56398,7 +56398,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthenticationType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", "StorageKeyType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", @@ -56480,7 +56480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56637,7 +56637,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56812,7 +56812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56996,7 +56996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -57177,7 +57177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -57382,7 +57382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -57566,7 +57566,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model", "Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -57843,7 +57843,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model", "Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -58430,7 +58430,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model", "Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -58749,7 +58749,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model", "Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceGroupName": "System.String", "ServerName": "System.String", @@ -59110,7 +59110,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -59240,7 +59240,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -59365,7 +59365,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -59466,7 +59466,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -59776,7 +59776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -59942,7 +59942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -60063,7 +60063,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -60319,7 +60319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -60452,7 +60452,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -60636,7 +60636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -60766,7 +60766,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -60909,7 +60909,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -61034,7 +61034,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -61386,7 +61386,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -61516,7 +61516,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -61637,7 +61637,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -61845,7 +61845,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -61978,7 +61978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -62162,7 +62162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model", "Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint", "FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint", @@ -62556,7 +62556,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -62849,7 +62849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationId": "System.Guid", "IsCancellable": "System.Nullable`1[System.Boolean]", @@ -63183,7 +63183,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -63555,7 +63555,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -64902,7 +64902,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -65237,7 +65237,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -66588,7 +66588,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model", "Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationId": "System.Guid", "IsCancellable": "System.Nullable`1[System.Boolean]", @@ -66950,6 +66950,8387 @@ ], "AliasList": [] }, + { + "VerbName": "Get", + "NounName": "AzSqlDatabaseSensitivityClassification", + "Name": "Get-AzSqlDatabaseSensitivityClassification", + "ClassName": "Microsoft.Azure.Commands.Sql.DataClassification.Cmdlet.GetAzSqlDatabaseSensitivityClassification", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "DatabaseObjectParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", + "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", + "ServerName": "System.String", + "ResourceGroupName": "System.String", + "DatabaseName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ServerName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", + "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.DateTime", + "DatabaseId": "System.Guid", + "CurrentServiceObjectiveId": "System.Guid", + "MaxSizeBytes": "System.Int64", + "ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]", + "ZoneRedundant": "System.Nullable`1[System.Boolean]", + "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", + "RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]", + "Capacity": "System.Nullable`1[System.Int32]", + "ResourceGroupName": "System.String", + "Family": "System.String", + "CreateMode": "System.String", + "ResourceId": "System.String", + "ElasticPoolName": "System.String", + "CurrentServiceObjectiveName": "System.String", + "SkuName": "System.String", + "Status": "System.String", + "CatalogCollation": "System.String", + "CollationName": "System.String", + "Edition": "System.String", + "Location": "System.String", + "DatabaseName": "System.String", + "ServerName": "System.String", + "RequestedServiceObjectiveName": "System.String", + "LicenseType": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "DatabaseParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ServerName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ColumnParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ServerName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DatabaseObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", + "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.DateTime", + "DatabaseId": "System.Guid", + "CurrentServiceObjectiveId": "System.Guid", + "MaxSizeBytes": "System.Int64", + "ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]", + "ZoneRedundant": "System.Nullable`1[System.Boolean]", + "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", + "RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]", + "Capacity": "System.Nullable`1[System.Int32]", + "ResourceGroupName": "System.String", + "Family": "System.String", + "CreateMode": "System.String", + "ResourceId": "System.String", + "ElasticPoolName": "System.String", + "CurrentServiceObjectiveName": "System.String", + "SkuName": "System.String", + "Status": "System.String", + "CatalogCollation": "System.String", + "CollationName": "System.String", + "Edition": "System.String", + "Location": "System.String", + "DatabaseName": "System.String", + "ServerName": "System.String", + "RequestedServiceObjectiveName": "System.String", + "LicenseType": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DatabaseObjectColumnParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", + "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.DateTime", + "DatabaseId": "System.Guid", + "CurrentServiceObjectiveId": "System.Guid", + "MaxSizeBytes": "System.Int64", + "ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]", + "ZoneRedundant": "System.Nullable`1[System.Boolean]", + "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", + "RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]", + "Capacity": "System.Nullable`1[System.Int32]", + "ResourceGroupName": "System.String", + "Family": "System.String", + "CreateMode": "System.String", + "ResourceId": "System.String", + "ElasticPoolName": "System.String", + "CurrentServiceObjectiveName": "System.String", + "SkuName": "System.String", + "Status": "System.String", + "CatalogCollation": "System.String", + "CollationName": "System.String", + "Edition": "System.String", + "Location": "System.String", + "DatabaseName": "System.String", + "ServerName": "System.String", + "RequestedServiceObjectiveName": "System.String", + "LicenseType": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzSqlDatabaseSensitivityRecommendation", + "Name": "Get-AzSqlDatabaseSensitivityRecommendation", + "ClassName": "Microsoft.Azure.Commands.Sql.DataClassification.Cmdlet.GetAzSqlDatabaseSensitivityRecommendation", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "DatabaseObjectParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", + "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", + "ServerName": "System.String", + "ResourceGroupName": "System.String", + "DatabaseName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ServerName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", + "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.DateTime", + "DatabaseId": "System.Guid", + "CurrentServiceObjectiveId": "System.Guid", + "MaxSizeBytes": "System.Int64", + "ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]", + "ZoneRedundant": "System.Nullable`1[System.Boolean]", + "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", + "RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]", + "Capacity": "System.Nullable`1[System.Int32]", + "ResourceGroupName": "System.String", + "Family": "System.String", + "CreateMode": "System.String", + "ResourceId": "System.String", + "ElasticPoolName": "System.String", + "CurrentServiceObjectiveName": "System.String", + "SkuName": "System.String", + "Status": "System.String", + "CatalogCollation": "System.String", + "CollationName": "System.String", + "Edition": "System.String", + "Location": "System.String", + "DatabaseName": "System.String", + "ServerName": "System.String", + "RequestedServiceObjectiveName": "System.String", + "LicenseType": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "DatabaseParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ServerName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DatabaseObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", + "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.DateTime", + "DatabaseId": "System.Guid", + "CurrentServiceObjectiveId": "System.Guid", + "MaxSizeBytes": "System.Int64", + "ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]", + "ZoneRedundant": "System.Nullable`1[System.Boolean]", + "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", + "RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]", + "Capacity": "System.Nullable`1[System.Int32]", + "ResourceGroupName": "System.String", + "Family": "System.String", + "CreateMode": "System.String", + "ResourceId": "System.String", + "ElasticPoolName": "System.String", + "CurrentServiceObjectiveName": "System.String", + "SkuName": "System.String", + "Status": "System.String", + "CatalogCollation": "System.String", + "CollationName": "System.String", + "Edition": "System.String", + "Location": "System.String", + "DatabaseName": "System.String", + "ServerName": "System.String", + "RequestedServiceObjectiveName": "System.String", + "LicenseType": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzSqlInstanceDatabaseSensitivityClassification", + "Name": "Get-AzSqlInstanceDatabaseSensitivityClassification", + "ClassName": "Microsoft.Azure.Commands.Sql.DataClassification.Cmdlet.GetAzSqlInstanceDatabaseSensitivityClassification", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "DatabaseObjectParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", + "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", + "InstanceName": "System.String", + "ResourceGroupName": "System.String", + "DatabaseName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.Nullable`1[System.DateTime]", + "RestorePointInTime": "System.Nullable`1[System.DateTime]", + "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", + "Location": "System.String", + "Name": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String", + "RecoverableDatabaseId": "System.String", + "FailoverGroupId": "System.String", + "StorageContainerSasToken": "System.String", + "StorageContainerUri": "System.String", + "CreateMode": "System.String", + "CatalogCollation": "System.String", + "DefaultSecondaryLocation": "System.String", + "Status": "System.String", + "Collation": "System.String", + "SourceDatabaseId": "System.String", + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "managedInstanceName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "DatabaseParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ColumnParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DatabaseObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.Nullable`1[System.DateTime]", + "RestorePointInTime": "System.Nullable`1[System.DateTime]", + "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", + "Location": "System.String", + "Name": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String", + "RecoverableDatabaseId": "System.String", + "FailoverGroupId": "System.String", + "StorageContainerSasToken": "System.String", + "StorageContainerUri": "System.String", + "CreateMode": "System.String", + "CatalogCollation": "System.String", + "DefaultSecondaryLocation": "System.String", + "Status": "System.String", + "Collation": "System.String", + "SourceDatabaseId": "System.String", + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "managedInstanceName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DatabaseObjectColumnParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.Nullable`1[System.DateTime]", + "RestorePointInTime": "System.Nullable`1[System.DateTime]", + "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", + "Location": "System.String", + "Name": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String", + "RecoverableDatabaseId": "System.String", + "FailoverGroupId": "System.String", + "StorageContainerSasToken": "System.String", + "StorageContainerUri": "System.String", + "CreateMode": "System.String", + "CatalogCollation": "System.String", + "DefaultSecondaryLocation": "System.String", + "Status": "System.String", + "Collation": "System.String", + "SourceDatabaseId": "System.String", + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "managedInstanceName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzSqlInstanceDatabaseSensitivityRecommendation", + "Name": "Get-AzSqlInstanceDatabaseSensitivityRecommendation", + "ClassName": "Microsoft.Azure.Commands.Sql.DataClassification.Cmdlet.GetAzSqlInstanceDatabaseSensitivityRecommendation", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "DatabaseObjectParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", + "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", + "InstanceName": "System.String", + "ResourceGroupName": "System.String", + "DatabaseName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.Nullable`1[System.DateTime]", + "RestorePointInTime": "System.Nullable`1[System.DateTime]", + "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", + "Location": "System.String", + "Name": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String", + "RecoverableDatabaseId": "System.String", + "FailoverGroupId": "System.String", + "StorageContainerSasToken": "System.String", + "StorageContainerUri": "System.String", + "CreateMode": "System.String", + "CatalogCollation": "System.String", + "DefaultSecondaryLocation": "System.String", + "Status": "System.String", + "Collation": "System.String", + "SourceDatabaseId": "System.String", + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "managedInstanceName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "DatabaseParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DatabaseObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.Nullable`1[System.DateTime]", + "RestorePointInTime": "System.Nullable`1[System.DateTime]", + "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", + "Location": "System.String", + "Name": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String", + "RecoverableDatabaseId": "System.String", + "FailoverGroupId": "System.String", + "StorageContainerSasToken": "System.String", + "StorageContainerUri": "System.String", + "CreateMode": "System.String", + "CatalogCollation": "System.String", + "DefaultSecondaryLocation": "System.String", + "Status": "System.String", + "Collation": "System.String", + "SourceDatabaseId": "System.String", + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "managedInstanceName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzSqlDatabaseSensitivityClassification", + "Name": "Remove-AzSqlDatabaseSensitivityClassification", + "ClassName": "Microsoft.Azure.Commands.Sql.DataClassification.Cmdlet.RemoveAzSqlDatabaseSensitivityClassification", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ClassificationObjectParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ServerName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", + "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.DateTime", + "DatabaseId": "System.Guid", + "CurrentServiceObjectiveId": "System.Guid", + "MaxSizeBytes": "System.Int64", + "ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]", + "ZoneRedundant": "System.Nullable`1[System.Boolean]", + "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", + "RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]", + "Capacity": "System.Nullable`1[System.Int32]", + "ResourceGroupName": "System.String", + "Family": "System.String", + "CreateMode": "System.String", + "ResourceId": "System.String", + "ElasticPoolName": "System.String", + "CurrentServiceObjectiveName": "System.String", + "SkuName": "System.String", + "Status": "System.String", + "CatalogCollation": "System.String", + "CollationName": "System.String", + "Edition": "System.String", + "Location": "System.String", + "DatabaseName": "System.String", + "ServerName": "System.String", + "RequestedServiceObjectiveName": "System.String", + "LicenseType": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ClassificationObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", + "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", + "ServerName": "System.String", + "ResourceGroupName": "System.String", + "DatabaseName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ColumnParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ServerName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DatabaseObjectColumnParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", + "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.DateTime", + "DatabaseId": "System.Guid", + "CurrentServiceObjectiveId": "System.Guid", + "MaxSizeBytes": "System.Int64", + "ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]", + "ZoneRedundant": "System.Nullable`1[System.Boolean]", + "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", + "RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]", + "Capacity": "System.Nullable`1[System.Int32]", + "ResourceGroupName": "System.String", + "Family": "System.String", + "CreateMode": "System.String", + "ResourceId": "System.String", + "ElasticPoolName": "System.String", + "CurrentServiceObjectiveName": "System.String", + "SkuName": "System.String", + "Status": "System.String", + "CatalogCollation": "System.String", + "CollationName": "System.String", + "Edition": "System.String", + "Location": "System.String", + "DatabaseName": "System.String", + "ServerName": "System.String", + "RequestedServiceObjectiveName": "System.String", + "LicenseType": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ClassificationObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ClassificationObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", + "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", + "ServerName": "System.String", + "ResourceGroupName": "System.String", + "DatabaseName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzSqlInstanceDatabaseSensitivityClassification", + "Name": "Remove-AzSqlInstanceDatabaseSensitivityClassification", + "ClassName": "Microsoft.Azure.Commands.Sql.DataClassification.Cmdlet.RemoveAzSqlInstanceDatabaseSensitivityClassification", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ClassificationObjectParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.Nullable`1[System.DateTime]", + "RestorePointInTime": "System.Nullable`1[System.DateTime]", + "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", + "Location": "System.String", + "Name": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String", + "RecoverableDatabaseId": "System.String", + "FailoverGroupId": "System.String", + "StorageContainerSasToken": "System.String", + "StorageContainerUri": "System.String", + "CreateMode": "System.String", + "CatalogCollation": "System.String", + "DefaultSecondaryLocation": "System.String", + "Status": "System.String", + "Collation": "System.String", + "SourceDatabaseId": "System.String", + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "managedInstanceName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ClassificationObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", + "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", + "InstanceName": "System.String", + "ResourceGroupName": "System.String", + "DatabaseName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ColumnParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DatabaseObjectColumnParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.Nullable`1[System.DateTime]", + "RestorePointInTime": "System.Nullable`1[System.DateTime]", + "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", + "Location": "System.String", + "Name": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String", + "RecoverableDatabaseId": "System.String", + "FailoverGroupId": "System.String", + "StorageContainerSasToken": "System.String", + "StorageContainerUri": "System.String", + "CreateMode": "System.String", + "CatalogCollation": "System.String", + "DefaultSecondaryLocation": "System.String", + "Status": "System.String", + "Collation": "System.String", + "SourceDatabaseId": "System.String", + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "managedInstanceName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ClassificationObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ClassificationObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", + "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", + "InstanceName": "System.String", + "ResourceGroupName": "System.String", + "DatabaseName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Set", + "NounName": "AzSqlDatabaseSensitivityClassification", + "Name": "Set-AzSqlDatabaseSensitivityClassification", + "ClassName": "Microsoft.Azure.Commands.Sql.DataClassification.Cmdlet.SetAzSqlDatabaseSensitivityClassification", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ClassificationObjectParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "SensitivityLabel", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InformationType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ServerName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", + "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.DateTime", + "DatabaseId": "System.Guid", + "CurrentServiceObjectiveId": "System.Guid", + "MaxSizeBytes": "System.Int64", + "ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]", + "ZoneRedundant": "System.Nullable`1[System.Boolean]", + "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", + "RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]", + "Capacity": "System.Nullable`1[System.Int32]", + "ResourceGroupName": "System.String", + "Family": "System.String", + "CreateMode": "System.String", + "ResourceId": "System.String", + "ElasticPoolName": "System.String", + "CurrentServiceObjectiveName": "System.String", + "SkuName": "System.String", + "Status": "System.String", + "CatalogCollation": "System.String", + "CollationName": "System.String", + "Edition": "System.String", + "Location": "System.String", + "DatabaseName": "System.String", + "ServerName": "System.String", + "RequestedServiceObjectiveName": "System.String", + "LicenseType": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ClassificationObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", + "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", + "ServerName": "System.String", + "ResourceGroupName": "System.String", + "DatabaseName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ColumnParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SensitivityLabel", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InformationType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ServerName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DatabaseObjectColumnParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SensitivityLabel", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InformationType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", + "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.DateTime", + "DatabaseId": "System.Guid", + "CurrentServiceObjectiveId": "System.Guid", + "MaxSizeBytes": "System.Int64", + "ReadScale": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]", + "ZoneRedundant": "System.Nullable`1[System.Boolean]", + "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", + "RequestedServiceObjectiveId": "System.Nullable`1[System.Guid]", + "Capacity": "System.Nullable`1[System.Int32]", + "ResourceGroupName": "System.String", + "Family": "System.String", + "CreateMode": "System.String", + "ResourceId": "System.String", + "ElasticPoolName": "System.String", + "CurrentServiceObjectiveName": "System.String", + "SkuName": "System.String", + "Status": "System.String", + "CatalogCollation": "System.String", + "CollationName": "System.String", + "Edition": "System.String", + "Location": "System.String", + "DatabaseName": "System.String", + "ServerName": "System.String", + "RequestedServiceObjectiveName": "System.String", + "LicenseType": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "serverName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ClassificationObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ClassificationObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", + "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", + "ServerName": "System.String", + "ResourceGroupName": "System.String", + "DatabaseName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Set", + "NounName": "AzSqlInstanceDatabaseSensitivityClassification", + "Name": "Set-AzSqlInstanceDatabaseSensitivityClassification", + "ClassName": "Microsoft.Azure.Commands.Sql.DataClassification.Cmdlet.SetAzSqlInstanceDatabaseSensitivityClassification", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ClassificationObjectParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "SensitivityLabel", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InformationType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.Nullable`1[System.DateTime]", + "RestorePointInTime": "System.Nullable`1[System.DateTime]", + "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", + "Location": "System.String", + "Name": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String", + "RecoverableDatabaseId": "System.String", + "FailoverGroupId": "System.String", + "StorageContainerSasToken": "System.String", + "StorageContainerUri": "System.String", + "CreateMode": "System.String", + "CatalogCollation": "System.String", + "DefaultSecondaryLocation": "System.String", + "Status": "System.String", + "Collation": "System.String", + "SourceDatabaseId": "System.String", + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "managedInstanceName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ClassificationObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", + "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", + "InstanceName": "System.String", + "ResourceGroupName": "System.String", + "DatabaseName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ColumnParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SensitivityLabel", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InformationType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DatabaseObjectColumnParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SensitivityLabel", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InformationType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DatabaseObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", + "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "CreationDate": "System.Nullable`1[System.DateTime]", + "RestorePointInTime": "System.Nullable`1[System.DateTime]", + "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", + "Location": "System.String", + "Name": "System.String", + "ManagedInstanceName": "System.String", + "ResourceGroupName": "System.String", + "RecoverableDatabaseId": "System.String", + "FailoverGroupId": "System.String", + "StorageContainerSasToken": "System.String", + "StorageContainerUri": "System.String", + "CreateMode": "System.String", + "CatalogCollation": "System.String", + "DefaultSecondaryLocation": "System.String", + "Status": "System.String", + "Collation": "System.String", + "SourceDatabaseId": "System.String", + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "resourceGroup", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "managedInstanceName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "database", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SchemaName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TableName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ColumnName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ClassificationObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ClassificationObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", + "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", + "InstanceName": "System.String", + "ResourceGroupName": "System.String", + "DatabaseName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, { "VerbName": "Get", "NounName": "AzSqlDatabase", @@ -66964,7 +75345,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -67298,7 +75679,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState", "OperationId": "System.Guid", @@ -67669,7 +76050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModelExpanded", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModelExpanded, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModelExpanded, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceTierAdvisor": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ServiceTierAdvisorProperties", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -67977,7 +76358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -68219,7 +76600,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -68629,7 +77010,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -69124,7 +77505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -69623,7 +78004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -69955,7 +78336,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -70331,7 +78712,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -70537,7 +78918,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -71085,7 +79466,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -71458,7 +79839,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -72008,7 +80389,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState", "OperationId": "System.Guid", @@ -72379,7 +80760,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -72458,7 +80839,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -73410,7 +81791,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -73597,7 +81978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -73863,7 +82244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -73978,7 +82359,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -74295,7 +82676,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackupExpirationTime": "System.Nullable`1[System.DateTime]", "BackupTime": "System.Nullable`1[System.DateTime]", @@ -74596,7 +82977,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RetentionDays": "System.Int32", "ResourceGroupName": "System.String", @@ -74671,7 +83052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -74897,7 +83278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -75295,7 +83676,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LastAvailableBackupDate": "System.DateTime", "ResourceGroupName": "System.String", @@ -75570,7 +83951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDeletedDatabaseBackupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDeletedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDeletedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationDate": "System.DateTime", "DeletionDate": "System.DateTime", @@ -75896,7 +84277,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "WeekOfYear": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -76174,7 +84555,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "State": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState", "Location": "System.String", @@ -76447,7 +84828,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RestorePointCreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", @@ -76723,7 +85104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RestorePointCreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", @@ -77041,7 +85422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RestorePointCreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestoreDate": "System.Nullable`1[System.DateTime]", @@ -77401,7 +85782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -80511,7 +88892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RetentionDays": "System.Int32", "ResourceGroupName": "System.String", @@ -80604,7 +88985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -80898,7 +89279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -81324,7 +89705,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "WeekOfYear": "System.Nullable`1[System.Int32]", "ResourceGroupName": "System.String", @@ -82348,7 +90729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "State": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState", "Location": "System.String", @@ -82405,7 +90786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -82601,7 +90982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -82833,7 +91214,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RetentionDays": "System.Int32", "DeletionDate": "System.Nullable`1[System.DateTime]", @@ -82914,7 +91295,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -83117,7 +91498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CreationDate": "System.Nullable`1[System.DateTime]", "EarliestRestorePoint": "System.Nullable`1[System.DateTime]", @@ -83575,7 +91956,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -83947,7 +92328,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -84319,7 +92700,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsUpToDate": "System.Nullable`1[System.Boolean]", "LastAliveTime": "System.Nullable`1[System.DateTime]", @@ -84619,7 +93000,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentLinkedDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentLinkedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentLinkedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SeverName": "System.String", "DatabaseId": "System.String", @@ -84907,7 +93288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -85256,7 +93637,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupLogModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupLogModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupLogModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TimeStamp": "System.Nullable`1[System.DateTime]", "LogLevel": "System.String", @@ -85720,7 +94101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MemberDatabasePassword": "System.Security.SecureString", "ResourceId": "System.String", @@ -86117,7 +94498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tables": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel]", "LastUpdateTime": "System.Nullable`1[System.DateTime]" @@ -86481,7 +94862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsUpToDate": "System.Nullable`1[System.Boolean]", "LastAliveTime": "System.Nullable`1[System.DateTime]", @@ -87185,7 +95566,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentKeyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SyncAgentKey": "System.String" }, @@ -87454,7 +95835,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -88103,7 +96484,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MemberDatabasePassword": "System.Security.SecureString", "ResourceId": "System.String", @@ -89621,7 +98002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsUpToDate": "System.Nullable`1[System.Boolean]", "LastAliveTime": "System.Nullable`1[System.DateTime]", @@ -90005,7 +98386,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -90438,7 +98819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MemberDatabasePassword": "System.Security.SecureString", "ResourceId": "System.String", @@ -90919,7 +99300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -91310,7 +99691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -91701,7 +100082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -92176,7 +100557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MemberDatabasePassword": "System.Security.SecureString", "ResourceId": "System.String", @@ -92615,7 +100996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", "LastSyncTime": "System.Nullable`1[System.DateTime]", @@ -93044,7 +101425,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DataMaskingState": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType", "DatabaseName": "System.String", @@ -93317,7 +101698,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction", "NumberFrom": "System.Nullable`1[System.Double]", @@ -93723,7 +102104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction", "NumberFrom": "System.Nullable`1[System.Double]", @@ -94455,7 +102836,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction", "NumberFrom": "System.Nullable`1[System.Double]", @@ -94945,7 +103326,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DataMaskingState": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType", "DatabaseName": "System.String", @@ -95350,7 +103731,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction", "NumberFrom": "System.Nullable`1[System.Double]", @@ -96082,7 +104463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseBlobAuditingSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseBlobAuditingSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseBlobAuditingSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuditActionGroup": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", "AuditState": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType", @@ -96199,7 +104580,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -96825,7 +105206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -97012,7 +105393,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -97199,7 +105580,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -97437,7 +105818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerBlobAuditingSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerBlobAuditingSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerBlobAuditingSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuditActionGroup": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", "AuditState": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType", @@ -97534,7 +105915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -98036,7 +106417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -98171,7 +106552,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -98306,7 +106687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -98492,7 +106873,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseBlobAuditingSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseBlobAuditingSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseBlobAuditingSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuditActionGroup": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", "AuditState": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType", @@ -98609,7 +106990,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -98761,7 +107142,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -99281,7 +107662,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -99669,7 +108050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -100004,7 +108385,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -100315,7 +108696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -100455,7 +108836,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -100726,7 +109107,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -100866,7 +109247,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -101161,7 +109542,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -101301,7 +109682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -101543,7 +109924,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -101683,7 +110064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -101901,7 +110282,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -102092,7 +110473,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -102239,7 +110620,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerBlobAuditingSettingsModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerBlobAuditingSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerBlobAuditingSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuditActionGroup": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", "AuditState": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType", @@ -102336,7 +110717,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -102418,7 +110799,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -102890,7 +111271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -103230,7 +111611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -103517,7 +111898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -103780,7 +112161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -103920,7 +112301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -104115,7 +112496,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -104255,7 +112636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -104474,7 +112855,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -104614,7 +112995,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -104780,7 +113161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -104920,7 +113301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -105062,7 +113443,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -105229,7 +113610,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -105376,7 +113757,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -105760,7 +114141,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -106144,7 +114525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -106481,7 +114862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -106583,7 +114964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -106803,7 +115184,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -107035,7 +115416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -107137,7 +115518,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -107357,7 +115738,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -107589,7 +115970,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]", "LastChecked": "System.Nullable`1[System.DateTime]", @@ -107686,7 +116067,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -107888,7 +116269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet", "Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -108096,7 +116477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "ManagedInstanceName": "System.String", @@ -108151,7 +116532,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -108294,7 +116675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -108559,7 +116940,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedThreatProtectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedThreatProtectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedThreatProtectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "ServerName": "System.String", @@ -108614,7 +116995,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -108750,7 +117131,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -109008,7 +117389,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "ManagedInstanceName": "System.String", @@ -109063,7 +117444,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -109206,7 +117587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -109471,7 +117852,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedThreatProtectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedThreatProtectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedThreatProtectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "ServerName": "System.String", @@ -109526,7 +117907,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -109662,7 +118043,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -109920,7 +118301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "ManagedInstanceName": "System.String", @@ -109975,7 +118356,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -110118,7 +118499,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model", "Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku", "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", @@ -110383,7 +118764,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model", "Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedThreatProtectionPolicyModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedThreatProtectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedThreatProtectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsEnabled": "System.Boolean", "ServerName": "System.String", @@ -110438,7 +118819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -110574,7 +118955,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Sql.Server.Model", "Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity", "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", @@ -110963,7 +119344,7 @@ "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111131,7 +119512,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -111143,7 +119524,7 @@ "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111619,7 +120000,7 @@ "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111714,7 +120095,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -111726,7 +120107,7 @@ "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Code": "System.String", "Message": "System.String" @@ -111771,7 +120152,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -111783,7 +120164,7 @@ "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel": { "Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model", "Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Result": "System.Collections.Generic.IList`1[System.String]" }, @@ -111827,7 +120208,7 @@ "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111922,7 +120303,7 @@ "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -112017,7 +120398,7 @@ "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType": { "Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model", "Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -112112,7 +120493,7 @@ "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType": { "Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model", "Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -112340,7 +120721,7 @@ "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -112435,7 +120816,7 @@ "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState": { "Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model", "Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Current": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Requested": "System.Collections.Generic.IDictionary`2[System.String,System.String]" @@ -112480,7 +120861,7 @@ "Microsoft.Azure.Commands.Sql.SecureConnection.Model.ConnectionStrings": { "Namespace": "Microsoft.Azure.Commands.Sql.SecureConnection.Model", "Name": "Microsoft.Azure.Commands.Sql.SecureConnection.Model.ConnectionStrings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.SecureConnection.Model.ConnectionStrings, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.SecureConnection.Model.ConnectionStrings, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdoNetConnectionString": "System.String", "OdbcConnectionString": "System.String", @@ -112544,7 +120925,7 @@ "Microsoft.Azure.Commands.Sql.SecureConnection.Model.SecureConnectionStateType": { "Namespace": "Microsoft.Azure.Commands.Sql.SecureConnection.Model", "Name": "Microsoft.Azure.Commands.Sql.SecureConnection.Model.SecureConnectionStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.SecureConnection.Model.SecureConnectionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.SecureConnection.Model.SecureConnectionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -112639,7 +121020,7 @@ "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections": { "Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model", "Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113025,7 +121406,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -113037,7 +121418,7 @@ "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SupportedEditions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel]", "Status": "System.String", @@ -113083,7 +121464,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -113095,7 +121476,7 @@ "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SupportedServiceObjectives": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel]", "Status": "System.String", @@ -113141,7 +121522,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -113153,7 +121534,7 @@ "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SupportedMaxSizes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel]", "Id": "System.Nullable`1[System.Guid]", @@ -113200,7 +121581,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -113212,7 +121593,7 @@ "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinValue": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel", "MaxValue": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel", @@ -113260,7 +121641,7 @@ "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model", "Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Limit": "System.Nullable`1[System.Int32]", "Unit": "System.String", @@ -113531,7 +121912,7 @@ "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113626,7 +122007,7 @@ "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType": { "Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model", "Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113878,7 +122259,7 @@ "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "CreationDate": "System.DateTime", @@ -113992,10 +122373,72 @@ "Methods": [], "Constructors": [] }, + "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel": { + "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model", + "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SchemaName": "System.String", + "TableName": "System.String", + "ColumnName": "System.String", + "SensitivityLabel": "System.String", + "InformationType": "System.String", + "SensitivityLabelId": "System.String", + "InformationTypeId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState": { "Namespace": "Microsoft.Azure.Commands.Sql.Database.Model", "Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Current": "System.Collections.Generic.IDictionary`2[System.String,System.String]", "Requested": "System.Collections.Generic.IDictionary`2[System.String,System.String]" @@ -114165,7 +122608,7 @@ "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState": { "Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model", "Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -114260,7 +122703,7 @@ "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tables": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel]", "MasterSyncMemberName": "System.String" @@ -114320,7 +122763,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -114332,7 +122775,7 @@ "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Columns": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel]", "QuotedName": "System.String" @@ -114392,7 +122835,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -114404,7 +122847,7 @@ "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "QuotedName": "System.String", "DataSize": "System.String", @@ -114625,7 +123068,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -114637,7 +123080,7 @@ "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HasError": "System.Boolean", "Columns": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel]", @@ -114695,7 +123138,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -114707,7 +123150,7 @@ "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel": { "Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model", "Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HasError": "System.Boolean", "IsPrimaryKey": "System.Boolean", @@ -114767,7 +123210,7 @@ "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -114862,7 +123305,7 @@ "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction": { "Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model", "Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -114957,7 +123400,7 @@ "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", "GenericTypeArguments": [], @@ -114967,7 +123410,7 @@ "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -115062,7 +123505,7 @@ "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -115157,7 +123600,7 @@ "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind": { "Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model", "Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll.json index 34693b4e599c..ff88398f4c3c 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HasLegalHold": "System.Nullable`1[System.Boolean]", "Tags": "System.String[]" @@ -132,7 +132,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -227,7 +227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -568,7 +568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -737,7 +737,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -985,11 +985,11 @@ "AliasList": [] }, { - "VerbName": "Get", - "NounName": "AzRmStorageContainer", - "Name": "Get-AzRmStorageContainer", - "ClassName": "Microsoft.Azure.Commands.Management.Storage.GetAzureStorageContainerCommand", - "SupportsShouldProcess": false, + "VerbName": "Disable", + "NounName": "AzStorageBlobDeleteRetentionPolicy", + "Name": "Disable-AzStorageBlobDeleteRetentionPolicy", + "ClassName": "Microsoft.Azure.Commands.Management.Storage.DisableAzStorageBlobDeleteRetentionPolicyCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "AccountName", @@ -997,58 +997,19 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", - "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", - "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", - "HasLegalHold": "System.Nullable`1[System.Boolean]", - "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", - "LastModifiedTime": "System.Nullable`1[System.DateTime]", - "ResourceGroupName": "System.String", - "StorageAccountName": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String", - "LeaseStatus": "System.String", - "LeaseState": "System.String", - "LeaseDuration": "System.String" + "Enabled": "System.Nullable`1[System.Boolean]", + "Days": "System.Nullable`1[System.Int32]" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "ParseResourceGroupFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ParseStorageAccountNameFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ParseStorageContainerNameFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" + "Name": "ParseDeleteRetentionPolicy", + "Parameters": [], + "ReturnType": "Microsoft.Azure.Management.Storage.Models.DeleteRetentionPolicy" }, { "Name": "ToString", @@ -1080,19 +1041,14 @@ { "Name": "", "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] + "Parameters": [] }, { "Name": "", "ReturnType": null, "Parameters": [ { - "Name": "container", + "Name": "policy", "Type": "System.Reflection.RuntimeParameterInfo" } ] @@ -1126,7 +1082,8 @@ { "Name": "StorageAccountName", "AliasList": [ - "AccountName" + "AccountName", + "Name" ], "Type": { "Namespace": "System", @@ -1149,7 +1106,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -1239,11 +1196,8 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "N", - "ContainerName" - ], + "Name": "ResourceId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", @@ -1257,6 +1211,24 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { @@ -1319,13 +1291,14 @@ "Mandatory": true, "Position": 0, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { "Name": "StorageAccountName", "AliasList": [ - "AccountName" + "AccountName", + "Name" ], "Type": { "Namespace": "System", @@ -1345,19 +1318,16 @@ "Mandatory": true, "Position": 1, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "N", - "ContainerName" - ], + "Name": "PassThru", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1371,8 +1341,8 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -1425,7 +1395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -1517,15 +1487,80 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", "AliasList": [ - "N", - "ContainerName" + "AzContext", + "AzureRmContext", + "AzureCredential" ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BlobServicePropertiesResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", @@ -1539,12 +1574,36 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -1592,15 +1651,12 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "N", - "ContainerName" - ], + "Name": "PassThru", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1614,8 +1670,8 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -1662,11 +1718,11 @@ "AliasList": [] }, { - "VerbName": "Get", - "NounName": "AzRmStorageContainerImmutabilityPolicy", - "Name": "Get-AzRmStorageContainerImmutabilityPolicy", - "ClassName": "Microsoft.Azure.Commands.Management.Storage.GetAzureStorageContainerImmutabilityPolicyCommand", - "SupportsShouldProcess": false, + "VerbName": "Enable", + "NounName": "AzStorageBlobDeleteRetentionPolicy", + "Name": "Enable-AzStorageBlobDeleteRetentionPolicy", + "ClassName": "Microsoft.Azure.Commands.Management.Storage.EnableAzStorageBlobDeleteRetentionPolicyCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "AccountName", @@ -1674,19 +1730,36 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", - "State": "System.String", - "Id": "System.String", + "Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules", + "DeleteRetentionPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy", + "ResourceGroupName": "System.String", + "StorageAccountName": "System.String", "Name": "System.String", + "Id": "System.String", "Type": "System.String", - "Etag": "System.String" + "DefaultServiceVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "ParseBlobServiceProperties", + "Parameters": [], + "ReturnType": "Microsoft.Azure.Management.Storage.Models.BlobServiceProperties" + }, + { + "Name": "GetStorageAccountNameFromResourceId", + "Parameters": [ + { + "Name": "ResourceId", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, { "Name": "ToString", "Parameters": [], @@ -1714,6 +1787,11 @@ } ], "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, { "Name": "", "ReturnType": null, @@ -1753,7 +1831,8 @@ { "Name": "StorageAccountName", "AliasList": [ - "AccountName" + "AccountName", + "Name" ], "Type": { "Namespace": "System", @@ -1770,33 +1849,13 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - { - "Name": "ContainerName", - "AliasList": [ - "N" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, { "Name": "StorageAccount", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -1886,111 +1945,17 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Container", + "Name": "ResourceId", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", - "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", - "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", - "HasLegalHold": "System.Nullable`1[System.Boolean]", - "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", - "LastModifiedTime": "System.Nullable`1[System.DateTime]", - "ResourceGroupName": "System.String", - "StorageAccountName": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String", - "LeaseStatus": "System.String", - "LeaseState": "System.String", - "LeaseDuration": "System.String" - }, + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ParseResourceGroupFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ParseStorageAccountNameFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ParseStorageContainerNameFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] + "Methods": [], + "Constructors": [] }, "ValidateSet": [], "ValidateRangeMin": null, @@ -1998,14 +1963,32 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Etag", + "Name": "RetentionDays", "AliasList": [ - "IfMatch" + "Days" ], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2077,13 +2060,14 @@ "Mandatory": true, "Position": 0, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { "Name": "StorageAccountName", "AliasList": [ - "AccountName" + "AccountName", + "Name" ], "Type": { "Namespace": "System", @@ -2103,18 +2087,18 @@ "Mandatory": true, "Position": 1, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ContainerName", + "Name": "RetentionDays", "AliasList": [ - "N" + "Days" ], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2127,20 +2111,18 @@ "ValidateNotNullOrEmpty": false }, "Mandatory": true, - "Position": 2, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Etag", - "AliasList": [ - "IfMatch" - ], + "Name": "PassThru", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2201,32 +2183,6 @@ { "Name": "AccountObject", "Parameters": [ - { - "ParameterMetadata": { - "Name": "ContainerName", - "AliasList": [ - "N" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "StorageAccount", @@ -2234,7 +2190,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -2326,18 +2282,42 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Etag", + "Name": "RetentionDays", "AliasList": [ - "IfMatch" + "Days" ], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2396,115 +2376,21 @@ ] }, { - "Name": "ContainerObject", + "Name": "BlobServicePropertiesResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "Container", + "Name": "ResourceId", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", - "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", - "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", - "HasLegalHold": "System.Nullable`1[System.Boolean]", - "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", - "LastModifiedTime": "System.Nullable`1[System.DateTime]", - "ResourceGroupName": "System.String", - "StorageAccountName": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String", - "LeaseStatus": "System.String", - "LeaseState": "System.String", - "LeaseDuration": "System.String" - }, + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ParseResourceGroupFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ParseStorageAccountNameFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ParseStorageContainerNameFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] + "Methods": [], + "Constructors": [] }, "ValidateSet": [], "ValidateRangeMin": null, @@ -2512,20 +2398,44 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, + "Position": 0, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Etag", + "Name": "RetentionDays", "AliasList": [ - "IfMatch" + "Days" ], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2588,14 +2498,38 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Etag", + "Name": "RetentionDays", "AliasList": [ - "IfMatch" + "Days" ], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2657,11 +2591,11 @@ "AliasList": [] }, { - "VerbName": "Lock", - "NounName": "AzRmStorageContainerImmutabilityPolicy", - "Name": "Lock-AzRmStorageContainerImmutabilityPolicy", - "ClassName": "Microsoft.Azure.Commands.Management.Storage.LockAzureStorageContainerImmutabilityPolicyCommand", - "SupportsShouldProcess": true, + "VerbName": "Get", + "NounName": "AzStorageBlobServiceProperty", + "Name": "Get-AzStorageBlobServiceProperty", + "ClassName": "Microsoft.Azure.Commands.Management.Storage.GetAzStorageBlobServicePropertyCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "AccountName", @@ -2669,19 +2603,36 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", - "State": "System.String", - "Id": "System.String", + "Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules", + "DeleteRetentionPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy", + "ResourceGroupName": "System.String", + "StorageAccountName": "System.String", "Name": "System.String", + "Id": "System.String", "Type": "System.String", - "Etag": "System.String" + "DefaultServiceVersion": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "ParseBlobServiceProperties", + "Parameters": [], + "ReturnType": "Microsoft.Azure.Management.Storage.Models.BlobServiceProperties" + }, + { + "Name": "GetStorageAccountNameFromResourceId", + "Parameters": [ + { + "Name": "ResourceId", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, { "Name": "ToString", "Parameters": [], @@ -2709,6 +2660,11 @@ } ], "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, { "Name": "", "ReturnType": null, @@ -2748,7 +2704,8 @@ { "Name": "StorageAccountName", "AliasList": [ - "AccountName" + "AccountName", + "Name" ], "Type": { "Namespace": "System", @@ -2765,33 +2722,13 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - { - "Name": "ContainerName", - "AliasList": [ - "N" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, { "Name": "StorageAccount", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -2881,235 +2818,39 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Container", + "Name": "ResourceId", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", - "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", - "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", - "HasLegalHold": "System.Nullable`1[System.Boolean]", - "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", - "LastModifiedTime": "System.Nullable`1[System.DateTime]", - "ResourceGroupName": "System.String", - "StorageAccountName": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String", - "LeaseStatus": "System.String", - "LeaseState": "System.String", - "LeaseDuration": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ParseResourceGroupFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ParseStorageAccountNameFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ParseStorageContainerNameFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Etag", - "AliasList": [ - "IfMatch" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "AliasList": [ - "ImmutabilityPolicy" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", - "State": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "policy", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Force", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" }, "ElementType": null, "GenericTypeArguments": [], @@ -3154,13 +2895,14 @@ "Mandatory": true, "Position": 0, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { "Name": "StorageAccountName", "AliasList": [ - "AccountName" + "AccountName", + "Name" ], "Type": { "Namespace": "System", @@ -3180,22 +2922,35 @@ "Mandatory": true, "Position": 1, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ContainerName", + "Name": "DefaultProfile", "AliasList": [ - "N" + "AzContext", + "AzureRmContext", + "AzureCredential" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, "ElementType": null, "GenericTypeArguments": [], - "Methods": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], "Constructors": [] }, "ValidateSet": [], @@ -3203,139 +2958,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 2, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "AccountObject", + "Parameters": [ { "ParameterMetadata": { - "Name": "Etag", - "AliasList": [ - "IfMatch" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Force", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "AccountObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ContainerName", - "AliasList": [ - "N" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "StorageAccount", - "AliasList": [], + "Name": "StorageAccount", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -3427,22 +3067,35 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Etag", + "Name": "DefaultProfile", "AliasList": [ - "IfMatch" + "AzContext", + "AzureRmContext", + "AzureCredential" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, "ElementType": null, "GenericTypeArguments": [], - "Methods": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], "Constructors": [] }, "ValidateSet": [], @@ -3450,19 +3103,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "BlobServicePropertiesResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "Force", + "Name": "ResourceId", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3472,12 +3130,12 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, + "Mandatory": true, + "Position": 0, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -3521,199 +3179,31 @@ ] }, { - "Name": "ContainerObject", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Container", - "AliasList": [], + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", - "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", - "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", - "HasLegalHold": "System.Nullable`1[System.Boolean]", - "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", - "LastModifiedTime": "System.Nullable`1[System.DateTime]", - "ResourceGroupName": "System.String", - "StorageAccountName": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String", - "LeaseStatus": "System.String", - "LeaseState": "System.String", - "LeaseDuration": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "ParseResourceGroupFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ParseStorageAccountNameFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ParseStorageContainerNameFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Etag", - "AliasList": [ - "IfMatch" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Force", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", + "Name": "Clear", "Parameters": [], "ReturnType": "System.Void" } @@ -3731,271 +3221,65 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzRmStorageContainer", + "Name": "Get-AzRmStorageContainer", + "ClassName": "Microsoft.Azure.Commands.Management.Storage.GetAzureStorageContainerCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "AccountName", + "OutputTypes": [ { - "Name": "ImmutabilityPolicyObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "ImmutabilityPolicy" + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", + "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", + "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", + "HasLegalHold": "System.Nullable`1[System.Boolean]", + "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", + "LastModifiedTime": "System.Nullable`1[System.DateTime]", + "ResourceGroupName": "System.String", + "StorageAccountName": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "LeaseStatus": "System.String", + "LeaseState": "System.String", + "LeaseDuration": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ParseResourceGroupFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", - "State": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "policy", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ReturnType": "System.String" }, - "Mandatory": true, - "Position": 0, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Force", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "New", - "NounName": "AzRmStorageContainer", - "Name": "New-AzRmStorageContainer", - "ClassName": "Microsoft.Azure.Commands.Management.Storage.NewAzureStorageContainerCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "AccountName", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", - "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", - "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", - "HasLegalHold": "System.Nullable`1[System.Boolean]", - "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", - "LastModifiedTime": "System.Nullable`1[System.DateTime]", - "ResourceGroupName": "System.String", - "StorageAccountName": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String", - "LeaseStatus": "System.String", - "LeaseState": "System.String", - "LeaseDuration": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ParseResourceGroupFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ParseStorageAccountNameFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" + { + "Name": "ParseStorageAccountNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" }, { "Name": "ParseStorageContainerNameFromId", @@ -4106,7 +3390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -4214,185 +3498,64 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "PublicAccess", - "AliasList": [], + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", + "Name": "Clear", "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Metadata", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "AccountName", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "AccountName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": 0, @@ -4445,39 +3608,108 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PublicAccess", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "AccountObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "StorageAccount", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", + "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", + "Encryption": "Microsoft.Azure.Management.Storage.Models.Encryption", + "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", + "Sku": "Microsoft.Azure.Management.Storage.Models.Sku", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", + "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "Kind": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", + "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", + "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", + "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", + "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "Location": "System.String", + "SecondaryLocation": "System.String", + "Id": "System.String", + "StorageAccountName": "System.String", + "ResourceGroupName": "System.String" + }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "Equals", + "Name": "Create", "Parameters": [ { - "Name": "obj", + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "client", "Type": "System.Reflection.RuntimeParameterInfo" } ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" + "ReturnType": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount" }, { "Name": "ToString", @@ -4485,90 +3717,60 @@ "ReturnType": "System.String" }, { - "Name": "ToString", + "Name": "Equals", "Parameters": [ { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", + "Name": "obj", "Type": "System.Reflection.RuntimeParameterInfo" } ], - "ReturnType": "System.String" + "ReturnType": "System.Boolean" }, { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], + "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" }, { - "Name": "ToString", + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, "Parameters": [ { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", + "Name": "storageAccount", "Type": "System.Reflection.RuntimeParameterInfo" } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" + ] } - ], - "Constructors": [] + ] }, "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Metadata", - "AliasList": [], + "Name": "Name", + "AliasList": [ + "N", + "ContainerName" + ], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4582,8 +3784,8 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -4627,109 +3829,8 @@ ] }, { - "Name": "AccountObject", + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "StorageAccount", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", - "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", - "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "Encryption": "Microsoft.Azure.Management.Storage.Models.Encryption", - "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", - "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", - "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "Sku": "Microsoft.Azure.Management.Storage.Models.Sku", - "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", - "Kind": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", - "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", - "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", - "CreationTime": "System.Nullable`1[System.DateTime]", - "PrimaryLocation": "System.String", - "Location": "System.String", - "SecondaryLocation": "System.String", - "Id": "System.String", - "StorageAccountName": "System.String", - "ResourceGroupName": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Create", - "Parameters": [ - { - "Name": "storageAccount", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "client", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "storageAccount", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "Name", @@ -4750,169 +3851,36 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PublicAccess", - "AliasList": [], + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Metadata", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", + "Name": "Clear", "Parameters": [], "ReturnType": "System.Void" } @@ -4930,234 +3898,74 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzRmStorageContainerImmutabilityPolicy", + "Name": "Get-AzRmStorageContainerImmutabilityPolicy", + "ClassName": "Microsoft.Azure.Commands.Management.Storage.GetAzureStorageContainerImmutabilityPolicyCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "AccountName", + "OutputTypes": [ { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "N", - "ContainerName" + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "State": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ReturnType": "System.Boolean" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "PublicAccess", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "HasFlag", - "Parameters": [ - { - "Name": "flag", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetTypeCode", - "Parameters": [], - "ReturnType": "System.TypeCode" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Metadata", - "AliasList": [], - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Remove", - "NounName": "AzRmStorageContainer", - "Name": "Remove-AzRmStorageContainer", - "ClassName": "Microsoft.Azure.Commands.Management.Storage.RemoveAzureStorageContainerCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "AccountName", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "policy", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] }, "ParameterSets": [ "__AllParameterSets" @@ -5204,10 +4012,9 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "ContainerName", "AliasList": [ - "N", - "ContainerName" + "N" ], "Type": { "Namespace": "System", @@ -5230,7 +4037,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -5320,14 +4127,12 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "InputObject", - "AliasList": [ - "Container" - ], + "Name": "Container", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -5434,30 +4239,14 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Force", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "AliasList": [], + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5559,10 +4348,9 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ContainerName", "AliasList": [ - "N", - "ContainerName" + "N" ], "Type": { "Namespace": "System", @@ -5586,36 +4374,14 @@ }, { "ParameterMetadata": { - "Name": "Force", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5678,10 +4444,9 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ContainerName", "AliasList": [ - "N", - "ContainerName" + "N" ], "Type": { "Namespace": "System", @@ -5710,7 +4475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -5806,36 +4571,14 @@ }, { "ParameterMetadata": { - "Name": "Force", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5898,14 +4641,12 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "Container" - ], + "Name": "Container", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -6018,12 +4759,14 @@ }, { "ParameterMetadata": { - "Name": "Force", - "AliasList": [], + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6042,36 +4785,12 @@ }, { "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", @@ -6110,36 +4829,14 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Force", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "AliasList": [], + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6201,10 +4898,10 @@ "AliasList": [] }, { - "VerbName": "Remove", + "VerbName": "Lock", "NounName": "AzRmStorageContainerImmutabilityPolicy", - "Name": "Remove-AzRmStorageContainerImmutabilityPolicy", - "ClassName": "Microsoft.Azure.Commands.Management.Storage.RemoveAzureStorageContainerImmutabilityPolicyCommand", + "Name": "Lock-AzRmStorageContainerImmutabilityPolicy", + "ClassName": "Microsoft.Azure.Commands.Management.Storage.LockAzureStorageContainerImmutabilityPolicyCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -6214,7 +4911,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPeriodSinceCreationInDays": "System.Int32", "State": "System.String", @@ -6335,7 +5032,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -6430,7 +5127,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -6564,7 +5261,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPeriodSinceCreationInDays": "System.Int32", "State": "System.String", @@ -6620,6 +5317,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, + { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -6760,6 +5475,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -6837,7 +5576,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -6957,6 +5696,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -7008,7 +5771,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -7145,6 +5908,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -7198,7 +5985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPeriodSinceCreationInDays": "System.Int32", "State": "System.String", @@ -7259,6 +6046,30 @@ "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -7303,6 +6114,30 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -7348,10 +6183,10 @@ "AliasList": [] }, { - "VerbName": "Remove", - "NounName": "AzRmStorageContainerLegalHold", - "Name": "Remove-AzRmStorageContainerLegalHold", - "ClassName": "Microsoft.Azure.Commands.Management.Storage.RemoveAzureStorageContainerLegalHoldCommand", + "VerbName": "New", + "NounName": "AzRmStorageContainer", + "Name": "New-AzRmStorageContainer", + "ClassName": "Microsoft.Azure.Commands.Management.Storage.NewAzureStorageContainerCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -7360,40 +6195,84 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { + "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", + "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", + "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", "HasLegalHold": "System.Nullable`1[System.Boolean]", - "Tags": "System.String[]" + "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", + "LastModifiedTime": "System.Nullable`1[System.DateTime]", + "ResourceGroupName": "System.String", + "StorageAccountName": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "LeaseStatus": "System.String", + "LeaseState": "System.String", + "LeaseDuration": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "ToString", - "Parameters": [], + "Name": "ParseResourceGroupFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], "ReturnType": "System.String" }, { - "Name": "Equals", + "Name": "ParseStorageAccountNameFromId", "Parameters": [ { - "Name": "obj", + "Name": "idFromServer", "Type": "System.Reflection.RuntimeParameterInfo" } ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" + "ReturnType": "System.String" }, { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } + "Name": "ParseStorageContainerNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } ], "Constructors": [ { @@ -7401,7 +6280,17 @@ "ReturnType": null, "Parameters": [ { - "Name": "legalHold", + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", "Type": "System.Reflection.RuntimeParameterInfo" } ] @@ -7452,34 +6341,13 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - { - "Name": "Name", - "AliasList": [ - "N", - "ContainerName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, { "Name": "StorageAccount", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -7569,58 +6437,86 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Container", + "Name": "Name", + "AliasList": [ + "N", + "ContainerName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PublicAccess", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", - "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", - "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", - "HasLegalHold": "System.Nullable`1[System.Boolean]", - "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", - "LastModifiedTime": "System.Nullable`1[System.DateTime]", - "ResourceGroupName": "System.String", - "StorageAccountName": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String", - "LeaseStatus": "System.String", - "LeaseState": "System.String", - "LeaseDuration": "System.String" - }, + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "ParseResourceGroupFromId", + "Name": "Equals", "Parameters": [ { - "Name": "idFromServer", + "Name": "obj", "Type": "System.Reflection.RuntimeParameterInfo" } ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { - "Name": "ParseStorageAccountNameFromId", + "Name": "ToString", "Parameters": [ { - "Name": "idFromServer", + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", "Type": "System.Reflection.RuntimeParameterInfo" } ], "ReturnType": "System.String" }, { - "Name": "ParseStorageContainerNameFromId", + "Name": "CompareTo", "Parameters": [ { - "Name": "idFromServer", + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", "Type": "System.Reflection.RuntimeParameterInfo" } ], @@ -7628,23 +6524,28 @@ }, { "Name": "ToString", - "Parameters": [], + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], "ReturnType": "System.String" }, { - "Name": "Equals", + "Name": "HasFlag", "Parameters": [ { - "Name": "obj", + "Name": "flag", "Type": "System.Reflection.RuntimeParameterInfo" } ], "ReturnType": "System.Boolean" }, { - "Name": "GetHashCode", + "Name": "GetTypeCode", "Parameters": [], - "ReturnType": "System.Int32" + "ReturnType": "System.TypeCode" }, { "Name": "GetType", @@ -7652,28 +6553,7 @@ "ReturnType": "System.Type" } ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] + "Constructors": [] }, "ValidateSet": [], "ValidateRangeMin": null, @@ -7681,14 +6561,14 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Tag", + "Name": "Metadata", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, - "ElementType": "System.String", + "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -7696,7 +6576,7 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -7806,92 +6686,130 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": 2, + "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "PublicAccess", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, - "ElementType": "System.String", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "Clear", + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", "Parameters": [], - "ReturnType": "System.Void" - } - ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], "Constructors": [] }, "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "AccountObject", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "N", - "ContainerName" - ], + "Name": "Metadata", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7903,11 +6821,55 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "AccountObject", + "Parameters": [ { "ParameterMetadata": { "Name": "StorageAccount", @@ -7915,7 +6877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -8011,14 +6973,17 @@ }, { "ParameterMetadata": { - "Name": "Tag", - "AliasList": [], + "Name": "Name", + "AliasList": [ + "N", + "ContainerName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": "System.String", + "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -8030,131 +6995,99 @@ }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ContainerObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Container", + "Name": "PublicAccess", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", - "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", - "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", - "HasLegalHold": "System.Nullable`1[System.Boolean]", - "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", - "LastModifiedTime": "System.Nullable`1[System.DateTime]", - "ResourceGroupName": "System.String", - "StorageAccountName": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String", - "LeaseStatus": "System.String", - "LeaseState": "System.String", - "LeaseDuration": "System.String" - }, + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "ParseResourceGroupFromId", + "Name": "Equals", "Parameters": [ { - "Name": "idFromServer", + "Name": "obj", "Type": "System.Reflection.RuntimeParameterInfo" } ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { - "Name": "ParseStorageAccountNameFromId", + "Name": "ToString", "Parameters": [ { - "Name": "idFromServer", + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", "Type": "System.Reflection.RuntimeParameterInfo" } ], "ReturnType": "System.String" }, { - "Name": "ParseStorageContainerNameFromId", + "Name": "CompareTo", "Parameters": [ { - "Name": "idFromServer", + "Name": "target", "Type": "System.Reflection.RuntimeParameterInfo" } ], - "ReturnType": "System.String" + "ReturnType": "System.Int32" }, { "Name": "ToString", - "Parameters": [], + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], "ReturnType": "System.String" }, { - "Name": "Equals", + "Name": "ToString", "Parameters": [ { - "Name": "obj", + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", "Type": "System.Reflection.RuntimeParameterInfo" } ], "ReturnType": "System.Boolean" }, { - "Name": "GetHashCode", + "Name": "GetTypeCode", "Parameters": [], - "ReturnType": "System.Int32" + "ReturnType": "System.TypeCode" }, { "Name": "GetType", @@ -8162,49 +7095,28 @@ "ReturnType": "System.Type" } ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] + "Constructors": [] }, "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Metadata", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, - "ElementType": "System.String", + "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -8212,9 +7124,9 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -8265,14 +7177,17 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Tag", - "AliasList": [], + "Name": "Name", + "AliasList": [ + "N", + "ContainerName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": "System.String", + "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -8284,6 +7199,139 @@ }, "Mandatory": true, "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PublicAccess", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Metadata", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, @@ -8332,10 +7380,10 @@ "AliasList": [] }, { - "VerbName": "Set", - "NounName": "AzRmStorageContainerImmutabilityPolicy", - "Name": "Set-AzRmStorageContainerImmutabilityPolicy", - "ClassName": "Microsoft.Azure.Commands.Management.Storage.SetAzureStorageContainerImmutabilityPolicyCommand", + "VerbName": "Remove", + "NounName": "AzRmStorageContainer", + "Name": "Remove-AzRmStorageContainer", + "ClassName": "Microsoft.Azure.Commands.Management.Storage.RemoveAzureStorageContainerCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -8343,58 +7391,14 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", - "State": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String" - }, + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "policy", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] + "Methods": [], + "Constructors": [] }, "ParameterSets": [ "__AllParameterSets" @@ -8441,9 +7445,10 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ContainerName", + "Name": "Name", "AliasList": [ - "N" + "N", + "ContainerName" ], "Type": { "Namespace": "System", @@ -8466,7 +7471,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -8556,12 +7561,14 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Container", - "AliasList": [], + "Name": "InputObject", + "AliasList": [ + "Container" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -8668,98 +7675,12 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "InputObject", - "AliasList": [ - "ImmutabilityPolicy" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", - "State": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "policy", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ImmutabilityPeriod", - "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" - ], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Etag", - "AliasList": [ - "IfMatch" - ], + "Name": "Force", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8772,7 +7693,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "ExtendPolicy", + "Name": "PassThru", "AliasList": [], "Type": { "Namespace": "System.Management.Automation", @@ -8879,9 +7800,10 @@ }, { "ParameterMetadata": { - "Name": "ContainerName", + "Name": "Name", "AliasList": [ - "N" + "N", + "ContainerName" ], "Type": { "Namespace": "System", @@ -8905,14 +7827,12 @@ }, { "ParameterMetadata": { - "Name": "Etag", - "AliasList": [ - "IfMatch" - ], + "Name": "Force", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8931,14 +7851,12 @@ }, { "ParameterMetadata": { - "Name": "ImmutabilityPeriod", - "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" - ], + "Name": "PassThru", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8950,7 +7868,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -8997,63 +7915,14 @@ ] }, { - "Name": "ExtendAccountName", + "Name": "AccountObject", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": 0, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "StorageAccountName", - "AliasList": [ - "AccountName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": 1, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ContainerName", + "Name": "Name", "AliasList": [ - "N" + "N", + "ContainerName" ], "Type": { "Namespace": "System", @@ -9071,164 +7940,18 @@ "ValidateNotNullOrEmpty": false }, "Mandatory": true, - "Position": 2, + "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Etag", - "AliasList": [ - "IfMatch" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExtendPolicy", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ImmutabilityPeriod", - "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" - ], - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "AccountObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ContainerName", - "AliasList": [ - "N" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "StorageAccount", + "Name": "StorageAccount", "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -9324,14 +8047,12 @@ }, { "ParameterMetadata": { - "Name": "Etag", - "AliasList": [ - "IfMatch" - ], + "Name": "Force", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9350,14 +8071,12 @@ }, { "ParameterMetadata": { - "Name": "ImmutabilityPeriod", - "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" - ], + "Name": "PassThru", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9369,7 +8088,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -9416,85 +8135,68 @@ ] }, { - "Name": "ExtendAccountObject", + "Name": "ContainerObject", "Parameters": [ { "ParameterMetadata": { - "Name": "ContainerName", + "Name": "InputObject", "AliasList": [ - "N" + "Container" ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "StorageAccount", - "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", - "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", - "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "Encryption": "Microsoft.Azure.Management.Storage.Models.Encryption", - "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", - "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", - "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "Sku": "Microsoft.Azure.Management.Storage.Models.Sku", - "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", - "Kind": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", - "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", - "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", - "CreationTime": "System.Nullable`1[System.DateTime]", - "PrimaryLocation": "System.String", - "Location": "System.String", - "SecondaryLocation": "System.String", - "Id": "System.String", + "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", + "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", + "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", + "HasLegalHold": "System.Nullable`1[System.Boolean]", + "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", + "LastModifiedTime": "System.Nullable`1[System.DateTime]", + "ResourceGroupName": "System.String", "StorageAccountName": "System.String", - "ResourceGroupName": "System.String" + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "LeaseStatus": "System.String", + "LeaseState": "System.String", + "LeaseDuration": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "Create", + "Name": "ParseResourceGroupFromId", "Parameters": [ { - "Name": "storageAccount", + "Name": "idFromServer", "Type": "System.Reflection.RuntimeParameterInfo" - }, + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageAccountNameFromId", + "Parameters": [ { - "Name": "client", + "Name": "idFromServer", "Type": "System.Reflection.RuntimeParameterInfo" } ], - "ReturnType": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount" + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageContainerNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" }, { "Name": "ToString", @@ -9528,7 +8230,17 @@ "ReturnType": null, "Parameters": [ { - "Name": "storageAccount", + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", "Type": "System.Reflection.RuntimeParameterInfo" } ] @@ -9547,34 +8259,8 @@ }, { "ParameterMetadata": { - "Name": "Etag", - "AliasList": [ - "IfMatch" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExtendPolicy", - "AliasList": [], + "Name": "Force", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -9590,21 +8276,19 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ImmutabilityPeriod", - "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" - ], + "Name": "PassThru", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9616,7 +8300,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -9663,136 +8347,16 @@ ] }, { - "Name": "ContainerObject", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Container", + "Name": "Force", "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", - "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", - "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", - "HasLegalHold": "System.Nullable`1[System.Boolean]", - "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", - "LastModifiedTime": "System.Nullable`1[System.DateTime]", - "ResourceGroupName": "System.String", - "StorageAccountName": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String", - "LeaseStatus": "System.String", - "LeaseState": "System.String", - "LeaseDuration": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ParseResourceGroupFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ParseStorageAccountNameFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ParseStorageContainerNameFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Etag", - "AliasList": [ - "IfMatch" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9811,14 +8375,12 @@ }, { "ParameterMetadata": { - "Name": "ImmutabilityPeriod", - "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" - ], + "Name": "PassThru", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9830,7 +8392,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -9875,72 +8437,4091 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzRmStorageContainerImmutabilityPolicy", + "Name": "Remove-AzRmStorageContainerImmutabilityPolicy", + "ClassName": "Microsoft.Azure.Commands.Management.Storage.RemoveAzureStorageContainerImmutabilityPolicyCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "AccountName", + "OutputTypes": [ { - "Name": "ExtendContainerObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Container", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", - "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", - "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", - "HasLegalHold": "System.Nullable`1[System.Boolean]", - "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", - "LastModifiedTime": "System.Nullable`1[System.DateTime]", - "ResourceGroupName": "System.String", - "StorageAccountName": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String", - "LeaseStatus": "System.String", - "LeaseState": "System.String", - "LeaseDuration": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ParseResourceGroupFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ParseStorageAccountNameFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ParseStorageContainerNameFromId", - "Parameters": [ - { - "Name": "idFromServer", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "State": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "policy", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "StorageAccountName", + "AliasList": [ + "AccountName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ContainerName", + "AliasList": [ + "N" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "StorageAccount", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", + "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", + "Encryption": "Microsoft.Azure.Management.Storage.Models.Encryption", + "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", + "Sku": "Microsoft.Azure.Management.Storage.Models.Sku", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", + "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "Kind": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", + "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", + "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", + "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", + "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "Location": "System.String", + "SecondaryLocation": "System.String", + "Id": "System.String", + "StorageAccountName": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Create", + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "client", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Container", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", + "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", + "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", + "HasLegalHold": "System.Nullable`1[System.Boolean]", + "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", + "LastModifiedTime": "System.Nullable`1[System.DateTime]", + "ResourceGroupName": "System.String", + "StorageAccountName": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "LeaseStatus": "System.String", + "LeaseState": "System.String", + "LeaseDuration": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ParseResourceGroupFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageAccountNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageContainerNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [ + "ImmutabilityPolicy" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "State": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "policy", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "AccountName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "StorageAccountName", + "AliasList": [ + "AccountName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ContainerName", + "AliasList": [ + "N" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "AccountObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ContainerName", + "AliasList": [ + "N" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "StorageAccount", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", + "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", + "Encryption": "Microsoft.Azure.Management.Storage.Models.Encryption", + "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", + "Sku": "Microsoft.Azure.Management.Storage.Models.Sku", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", + "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "Kind": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", + "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", + "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", + "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", + "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "Location": "System.String", + "SecondaryLocation": "System.String", + "Id": "System.String", + "StorageAccountName": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Create", + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "client", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ContainerObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Container", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", + "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", + "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", + "HasLegalHold": "System.Nullable`1[System.Boolean]", + "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", + "LastModifiedTime": "System.Nullable`1[System.DateTime]", + "ResourceGroupName": "System.String", + "StorageAccountName": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "LeaseStatus": "System.String", + "LeaseState": "System.String", + "LeaseDuration": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ParseResourceGroupFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageAccountNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageContainerNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ImmutabilityPolicyObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [ + "ImmutabilityPolicy" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "State": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "policy", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzRmStorageContainerLegalHold", + "Name": "Remove-AzRmStorageContainerLegalHold", + "ClassName": "Microsoft.Azure.Commands.Management.Storage.RemoveAzureStorageContainerLegalHoldCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "AccountName", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHold, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "HasLegalHold": "System.Nullable`1[System.Boolean]", + "Tags": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "legalHold", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "StorageAccountName", + "AliasList": [ + "AccountName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "N", + "ContainerName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "StorageAccount", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", + "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", + "Encryption": "Microsoft.Azure.Management.Storage.Models.Encryption", + "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", + "Sku": "Microsoft.Azure.Management.Storage.Models.Sku", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", + "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "Kind": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", + "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", + "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", + "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", + "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "Location": "System.String", + "SecondaryLocation": "System.String", + "Id": "System.String", + "StorageAccountName": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Create", + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "client", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Container", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", + "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", + "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", + "HasLegalHold": "System.Nullable`1[System.Boolean]", + "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", + "LastModifiedTime": "System.Nullable`1[System.DateTime]", + "ResourceGroupName": "System.String", + "StorageAccountName": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "LeaseStatus": "System.String", + "LeaseState": "System.String", + "LeaseDuration": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ParseResourceGroupFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageAccountNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageContainerNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "AccountName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "StorageAccountName", + "AliasList": [ + "AccountName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "N", + "ContainerName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "AccountObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "N", + "ContainerName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "StorageAccount", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", + "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", + "Encryption": "Microsoft.Azure.Management.Storage.Models.Encryption", + "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", + "Sku": "Microsoft.Azure.Management.Storage.Models.Sku", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", + "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "Kind": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", + "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", + "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", + "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", + "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "Location": "System.String", + "SecondaryLocation": "System.String", + "Id": "System.String", + "StorageAccountName": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Create", + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "client", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ContainerObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Container", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", + "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", + "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", + "HasLegalHold": "System.Nullable`1[System.Boolean]", + "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", + "LastModifiedTime": "System.Nullable`1[System.DateTime]", + "ResourceGroupName": "System.String", + "StorageAccountName": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "LeaseStatus": "System.String", + "LeaseState": "System.String", + "LeaseDuration": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ParseResourceGroupFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageAccountNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageContainerNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Tag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Set", + "NounName": "AzRmStorageContainerImmutabilityPolicy", + "Name": "Set-AzRmStorageContainerImmutabilityPolicy", + "ClassName": "Microsoft.Azure.Commands.Management.Storage.SetAzureStorageContainerImmutabilityPolicyCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "AccountName", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "State": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "policy", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "StorageAccountName", + "AliasList": [ + "AccountName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ContainerName", + "AliasList": [ + "N" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "StorageAccount", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", + "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", + "Encryption": "Microsoft.Azure.Management.Storage.Models.Encryption", + "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", + "Sku": "Microsoft.Azure.Management.Storage.Models.Sku", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", + "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "Kind": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", + "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", + "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", + "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", + "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "Location": "System.String", + "SecondaryLocation": "System.String", + "Id": "System.String", + "StorageAccountName": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Create", + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "client", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Container", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", + "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", + "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", + "HasLegalHold": "System.Nullable`1[System.Boolean]", + "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", + "LastModifiedTime": "System.Nullable`1[System.DateTime]", + "ResourceGroupName": "System.String", + "StorageAccountName": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "LeaseStatus": "System.String", + "LeaseState": "System.String", + "LeaseDuration": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ParseResourceGroupFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageAccountNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageContainerNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", + "AliasList": [ + "ImmutabilityPolicy" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "State": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "policy", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ImmutabilityPeriod", + "AliasList": [ + "ImmutabilityPeriodSinceCreationInDays" + ], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ExtendPolicy", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "AccountName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "StorageAccountName", + "AliasList": [ + "AccountName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ContainerName", + "AliasList": [ + "N" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ImmutabilityPeriod", + "AliasList": [ + "ImmutabilityPeriodSinceCreationInDays" + ], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ExtendAccountName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "StorageAccountName", + "AliasList": [ + "AccountName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ContainerName", + "AliasList": [ + "N" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExtendPolicy", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ImmutabilityPeriod", + "AliasList": [ + "ImmutabilityPeriodSinceCreationInDays" + ], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "AccountObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ContainerName", + "AliasList": [ + "N" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "StorageAccount", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", + "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", + "Encryption": "Microsoft.Azure.Management.Storage.Models.Encryption", + "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", + "Sku": "Microsoft.Azure.Management.Storage.Models.Sku", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", + "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "Kind": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", + "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", + "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", + "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", + "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "Location": "System.String", + "SecondaryLocation": "System.String", + "Id": "System.String", + "StorageAccountName": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Create", + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "client", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ImmutabilityPeriod", + "AliasList": [ + "ImmutabilityPeriodSinceCreationInDays" + ], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ExtendAccountObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ContainerName", + "AliasList": [ + "N" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "StorageAccount", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", + "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", + "Encryption": "Microsoft.Azure.Management.Storage.Models.Encryption", + "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", + "Sku": "Microsoft.Azure.Management.Storage.Models.Sku", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", + "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "Kind": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", + "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", + "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", + "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", + "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "Location": "System.String", + "SecondaryLocation": "System.String", + "Id": "System.String", + "StorageAccountName": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Create", + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "client", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExtendPolicy", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ImmutabilityPeriod", + "AliasList": [ + "ImmutabilityPeriodSinceCreationInDays" + ], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ContainerObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Container", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", + "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", + "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", + "HasLegalHold": "System.Nullable`1[System.Boolean]", + "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", + "LastModifiedTime": "System.Nullable`1[System.DateTime]", + "ResourceGroupName": "System.String", + "StorageAccountName": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "LeaseStatus": "System.String", + "LeaseState": "System.String", + "LeaseDuration": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ParseResourceGroupFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageAccountNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageContainerNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ImmutabilityPeriod", + "AliasList": [ + "ImmutabilityPeriodSinceCreationInDays" + ], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ExtendContainerObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Container", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", + "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", + "Metadata": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "PublicAccess": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", + "HasLegalHold": "System.Nullable`1[System.Boolean]", + "HasImmutabilityPolicy": "System.Nullable`1[System.Boolean]", + "LastModifiedTime": "System.Nullable`1[System.DateTime]", + "ResourceGroupName": "System.String", + "StorageAccountName": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String", + "LeaseStatus": "System.String", + "LeaseState": "System.String", + "LeaseDuration": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ParseResourceGroupFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageAccountNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ParseStorageContainerNameFromId", + "Parameters": [ + { + "Name": "idFromServer", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Etag", + "AliasList": [ + "IfMatch" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExtendPolicy", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ImmutabilityPeriod", + "AliasList": [ + "ImmutabilityPeriodSinceCreationInDays" + ], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ImmutabilityPolicyObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [ + "ImmutabilityPolicy" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "State": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "policy", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ImmutabilityPeriod", + "AliasList": [ + "ImmutabilityPeriodSinceCreationInDays" + ], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ExtendImmutabilityPolicyObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [ + "ImmutabilityPolicy" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "State": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String", + "Etag": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { @@ -9959,50 +12540,503 @@ "ReturnType": "System.Int32" }, { - "Name": "GetType", + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "policy", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ExtendPolicy", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ImmutabilityPeriod", + "AliasList": [ + "ImmutabilityPeriodSinceCreationInDays" + ], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ImmutabilityPeriod", + "AliasList": [ + "ImmutabilityPeriodSinceCreationInDays" + ], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", "Parameters": [], - "ReturnType": "System.Type" + "ReturnType": "System.Void" } ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "container", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] + "Constructors": [] }, "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Update", + "NounName": "AzStorageBlobServiceProperty", + "Name": "Update-AzStorageBlobServiceProperty", + "ClassName": "Microsoft.Azure.Commands.Management.Storage.UpdateAzStorageBlobServicePropertyCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "AccountName", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSBlobServiceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Cors": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules", + "DeleteRetentionPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy", + "ResourceGroupName": "System.String", + "StorageAccountName": "System.String", + "Name": "System.String", + "Id": "System.String", + "Type": "System.String", + "DefaultServiceVersion": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ParseBlobServiceProperties", + "Parameters": [], + "ReturnType": "Microsoft.Azure.Management.Storage.Models.BlobServiceProperties" + }, + { + "Name": "GetStorageAccountNameFromResourceId", + "Parameters": [ + { + "Name": "ResourceId", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "policy", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "StorageAccountName", + "AliasList": [ + "AccountName", + "Name" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "StorageAccount", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", + "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", + "Encryption": "Microsoft.Azure.Management.Storage.Models.Encryption", + "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", + "Sku": "Microsoft.Azure.Management.Storage.Models.Sku", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", + "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "Kind": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", + "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", + "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", + "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", + "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "Location": "System.String", + "SecondaryLocation": "System.String", + "Id": "System.String", + "StorageAccountName": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Create", + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "client", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultServiceVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "AccountName", + "Parameters": [ { "ParameterMetadata": { - "Name": "Etag", - "AliasList": [ - "IfMatch" - ], + "Name": "ResourceGroupName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", @@ -10016,21 +13050,24 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": -2147483648, + "Position": 0, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ExtendPolicy", - "AliasList": [], + "Name": "StorageAccountName", + "AliasList": [ + "AccountName", + "Name" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10040,23 +13077,21 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": -2147483648, + "Position": 1, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ImmutabilityPeriod", - "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" - ], + "Name": "DefaultServiceVersion", + "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10068,7 +13103,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -10115,29 +13150,60 @@ ] }, { - "Name": "ImmutabilityPolicyObject", + "Name": "AccountObject", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "ImmutabilityPolicy" - ], + "Name": "StorageAccount", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", - "State": "System.String", + "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", + "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", + "Encryption": "Microsoft.Azure.Management.Storage.Models.Encryption", + "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", + "Sku": "Microsoft.Azure.Management.Storage.Models.Sku", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", + "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "Kind": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", + "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", + "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", + "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", + "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "Location": "System.String", + "SecondaryLocation": "System.String", "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String" + "StorageAccountName": "System.String", + "ResourceGroupName": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "Create", + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "client", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount" + }, { "Name": "ToString", "Parameters": [], @@ -10170,7 +13236,7 @@ "ReturnType": null, "Parameters": [ { - "Name": "policy", + "Name": "storageAccount", "Type": "System.Reflection.RuntimeParameterInfo" } ] @@ -10183,20 +13249,18 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": 0, + "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ImmutabilityPeriod", - "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" - ], + "Name": "DefaultServiceVersion", + "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10208,7 +13272,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -10240,101 +13304,31 @@ "ReturnType": "System.Void" } ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ExtendImmutabilityPolicyObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "ImmutabilityPolicy" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", - "State": "System.String", - "Id": "System.String", - "Name": "System.String", - "Type": "System.String", - "Etag": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "policy", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] + "Constructors": [] }, "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 0, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BlobServicePropertiesResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "ExtendPolicy", + "Name": "ResourceId", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10344,23 +13338,21 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": -2147483648, + "Position": 0, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ImmutabilityPeriod", - "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" - ], + "Name": "DefaultServiceVersion", + "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10372,7 +13364,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -10423,14 +13415,12 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ImmutabilityPeriod", - "AliasList": [ - "ImmutabilityPeriodSinceCreationInDays" - ], + "Name": "DefaultServiceVersion", + "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10442,7 +13432,7 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -10505,7 +13495,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -10677,7 +13667,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -10774,7 +13764,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -10886,7 +13876,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11123,7 +14113,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11327,7 +14317,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -11428,7 +14418,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11607,7 +14597,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ImmutabilityPolicy": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", "LegalHold": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", @@ -11725,7 +14715,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11902,7 +14892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12086,7 +15076,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -12233,7 +15223,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -12392,7 +15382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -12560,7 +15550,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -12678,7 +15668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -12803,7 +15793,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12845,7 +15835,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12930,7 +15920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -12948,7 +15938,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -13181,7 +16171,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -13324,7 +16314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -13763,7 +16753,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -14404,7 +17394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -14537,7 +17527,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -14833,7 +17823,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -15029,7 +18019,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -15385,7 +18375,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -15704,7 +18694,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -16243,7 +19233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -16824,7 +19814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrefixMatch": "System.String[]", "BlobTypes": "System.String[]" @@ -17045,7 +20035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Definition": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition", "Enabled": "System.Nullable`1[System.Boolean]", @@ -17171,7 +20161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -17239,7 +20229,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrefixMatch": "System.String[]", "BlobTypes": "System.String[]" @@ -17414,7 +20404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -17488,7 +20478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrefixMatch": "System.String[]", "BlobTypes": "System.String[]" @@ -17973,7 +20963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -18088,7 +21078,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -18339,7 +21329,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -18602,7 +21592,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -18827,7 +21817,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18869,7 +21859,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18954,7 +21944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -18972,7 +21962,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -19205,7 +22195,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -19348,7 +22338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -20136,7 +23126,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -20522,7 +23512,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -21032,7 +24022,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -21589,7 +24579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -22218,7 +25208,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -22498,7 +25488,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -22613,7 +25603,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -22726,7 +25716,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", "GenericTypeArguments": [], @@ -22746,7 +25736,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -22911,7 +25901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", "GenericTypeArguments": [], @@ -23031,7 +26021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -23157,7 +26147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -23258,7 +26248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", "GenericTypeArguments": [], @@ -23326,7 +26316,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", @@ -23429,7 +26419,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -23579,7 +26569,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", "GenericTypeArguments": [], @@ -23673,7 +26663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", "LastModifiedTime": "System.Nullable`1[System.DateTime]", @@ -23850,7 +26840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -24065,7 +27055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24168,7 +27158,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24271,7 +27261,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -24289,7 +27279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -24415,7 +27405,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24524,7 +27514,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24633,7 +27623,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -24657,7 +27647,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -24967,7 +27957,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSUsage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Unit": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.UsageUnit]", "CurrentValue": "System.Nullable`1[System.Int32]", @@ -25339,7 +28329,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UseSubDomain": "System.Nullable`1[System.Boolean]", "Name": "System.String" @@ -25468,7 +28458,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpRules": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", "DefaultAction": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", @@ -25635,7 +28625,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", "GenericTypeArguments": [], @@ -25645,7 +28635,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSIpRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25681,7 +28671,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25786,7 +28776,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", "GenericTypeArguments": [], @@ -25796,7 +28786,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25832,7 +28822,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25844,7 +28834,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetWorkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25939,7 +28929,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25951,7 +28941,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleActionEnum, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27346,24 +30336,251 @@ } ] } - ] + ] + }, + "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.Kind, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Storage.Models.Kind" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Storage.Models.Kind": { + "Namespace": "Microsoft.Azure.Management.Storage.Models", + "Name": "Microsoft.Azure.Management.Storage.Models.Kind", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Kind, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.SkuTier]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.SkuTier]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.SkuTier, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Management.Storage.Models.SkuTier" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Storage.Models.SkuTier": { + "Namespace": "Microsoft.Azure.Management.Storage.Models", + "Name": "Microsoft.Azure.Management.Storage.Models.SkuTier", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.SkuTier, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] }, - "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]": { + "System.Collections.Generic.IDictionary`2[System.String,System.String]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.Kind, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.AccessTier, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.Storage.Models.Kind" + "Microsoft.Azure.Management.Storage.Models.AccessTier" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Storage.Models.Kind": { + "Microsoft.Azure.Management.Storage.Models.AccessTier": { "Namespace": "Microsoft.Azure.Management.Storage.Models", - "Name": "Microsoft.Azure.Management.Storage.Models.Kind", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.Kind, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Storage.Models.AccessTier", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.AccessTier, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27455,22 +30672,22 @@ ], "Constructors": [] }, - "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.SkuTier]": { + "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.SkuTier]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.SkuTier, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.AccountStatus, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.Storage.Models.SkuTier" + "Microsoft.Azure.Management.Storage.Models.AccountStatus" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Storage.Models.SkuTier": { + "Microsoft.Azure.Management.Storage.Models.AccountStatus": { "Namespace": "Microsoft.Azure.Management.Storage.Models", - "Name": "Microsoft.Azure.Management.Storage.Models.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.SkuTier, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Storage.Models.AccountStatus", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.AccountStatus, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27562,35 +30779,22 @@ ], "Constructors": [] }, - "System.Collections.Generic.IDictionary`2[System.String,System.String]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "System.String", - "System.String" - ], - "Methods": [], - "Constructors": [] - }, - "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]": { + "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.AccessTier, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.ProvisioningState, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.Storage.Models.AccessTier" + "Microsoft.Azure.Management.Storage.Models.ProvisioningState" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Storage.Models.AccessTier": { + "Microsoft.Azure.Management.Storage.Models.ProvisioningState": { "Namespace": "Microsoft.Azure.Management.Storage.Models", - "Name": "Microsoft.Azure.Management.Storage.Models.AccessTier", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.AccessTier, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Management.Storage.Models.ProvisioningState", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ProvisioningState, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27651,28 +30855,220 @@ }, { "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", + "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", + "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", + "Encryption": "Microsoft.Azure.Management.Storage.Models.Encryption", + "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", + "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", + "Sku": "Microsoft.Azure.Management.Storage.Models.Sku", + "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", + "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", + "Kind": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", + "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", + "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", + "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", + "CreationTime": "System.Nullable`1[System.DateTime]", + "PrimaryLocation": "System.String", + "Location": "System.String", + "SecondaryLocation": "System.String", + "Id": "System.String", + "StorageAccountName": "System.String", + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Create", + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "client", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "storageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "UpdateHistory": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[]", + "ImmutabilityPeriodSinceCreationInDays": "System.Int32", + "State": "System.String", + "Etag": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "policy", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[]": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Timestamp": "System.Nullable`1[System.DateTime]", + "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", + "Update": "System.String", + "ObjectIdentifier": "System.String", + "TenantId": "System.String", + "Upn": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { - "Name": "HasFlag", + "Name": "Equals", "Parameters": [ { - "Name": "flag", + "Name": "obj", "Type": "System.Reflection.RuntimeParameterInfo" } ], "ReturnType": "System.Boolean" }, { - "Name": "GetTypeCode", + "Name": "GetHashCode", "Parameters": [], - "ReturnType": "System.TypeCode" + "ReturnType": "System.Int32" }, { "Name": "GetType", @@ -27680,28 +31076,47 @@ "ReturnType": "System.Type" } ], - "Constructors": [] + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "updateHistory", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] }, - "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]": { + "System.Nullable`1[System.Int32]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.AccountStatus, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.Storage.Models.AccountStatus" + "System.Int32" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Storage.Models.AccountStatus": { - "Namespace": "Microsoft.Azure.Management.Storage.Models", - "Name": "Microsoft.Azure.Management.Storage.Models.AccountStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.AccountStatus, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, + "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Tags": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[]", + "HasLegalHold": "System.Nullable`1[System.Boolean]" + }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, { "Name": "Equals", "Parameters": [ @@ -27718,68 +31133,67 @@ "ReturnType": "System.Int32" }, { - "Name": "ToString", + "Name": "GetType", "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" - }, - { - "Name": "CompareTo", - "Parameters": [ - { - "Name": "target", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.Int32" - }, + "ReturnType": "System.Type" + } + ], + "Constructors": [ { - "Name": "ToString", + "Name": "", + "ReturnType": null, "Parameters": [ { - "Name": "format", + "Name": "legalHoldProperty", "Type": "System.Reflection.RuntimeParameterInfo" } - ], - "ReturnType": "System.String" - }, + ] + } + ] + }, + "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[]": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Timestamp": "System.Nullable`1[System.DateTime]", + "Tag": "System.String", + "ObjectIdentifier": "System.String", + "TenantId": "System.String", + "Upn": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ { "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], + "Parameters": [], "ReturnType": "System.String" }, { - "Name": "HasFlag", + "Name": "Equals", "Parameters": [ { - "Name": "flag", + "Name": "obj", "Type": "System.Reflection.RuntimeParameterInfo" } ], "ReturnType": "System.Boolean" }, { - "Name": "GetTypeCode", + "Name": "GetHashCode", "Parameters": [], - "ReturnType": "System.TypeCode" + "ReturnType": "System.Int32" }, { "Name": "GetType", @@ -27787,24 +31201,35 @@ "ReturnType": "System.Type" } ], - "Constructors": [] + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "tagsProperty", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] }, - "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]": { + "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Storage.Models.ProvisioningState, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Management.Storage.Models.ProvisioningState" + "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Management.Storage.Models.ProvisioningState": { - "Namespace": "Microsoft.Azure.Management.Storage.Models", - "Name": "Microsoft.Azure.Management.Storage.Models.ProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.ProvisioningState, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess": { + "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27889,60 +31314,183 @@ "ReturnType": "System.TypeCode" }, { - "Name": "GetType", + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Account": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount", + "Environment": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment", + "Subscription": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription", + "Tenant": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant", + "TokenCache": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache", + "VersionProfile": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TenantMap": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Credential": "System.String", + "Type": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "OnPremise": "System.Boolean", + "VersionProfiles": "System.Collections.Generic.IList`1[System.String]", + "AzureDataLakeStoreFileSystemEndpointSuffix": "System.String", + "AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix": "System.String", + "BatchEndpointResourceId": "System.String", + "DataLakeEndpointResourceId": "System.String", + "GraphEndpointResourceId": "System.String", + "AzureKeyVaultServiceEndpointResourceId": "System.String", + "AzureKeyVaultDnsSuffix": "System.String", + "TrafficManagerDnsSuffix": "System.String", + "SqlDatabaseDnsSuffix": "System.String", + "StorageEndpointSuffix": "System.String", + "ActiveDirectoryServiceEndpointResourceId": "System.String", + "GraphUrl": "System.String", + "GalleryUrl": "System.String", + "ActiveDirectoryAuthority": "System.String", + "PublishSettingsFileUrl": "System.String", + "ManagementPortalUrl": "System.String", + "ResourceManagerUrl": "System.String", + "ServiceManagementUrl": "System.String", + "AdTenant": "System.String", + "Name": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "State": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CacheData": "System.Byte[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", "Parameters": [], - "ReturnType": "System.Type" + "ReturnType": "System.Void" } ], "Constructors": [] }, - "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "System.Byte[]": { + "Namespace": "System", + "Name": "System.Byte[]", + "AssemblyQualifiedName": "System.Byte[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.Byte", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount" + ], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment" + ], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Management.Storage.Models.DeleteRetentionPolicy": { + "Namespace": "Microsoft.Azure.Management.Storage.Models", + "Name": "Microsoft.Azure.Management.Storage.Models.DeleteRetentionPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.DeleteRetentionPolicy, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", - "CustomDomain": "Microsoft.Azure.Commands.Management.Storage.Models.PSCustomDomain", - "NetworkRuleSet": "Microsoft.Azure.Commands.Management.Storage.Models.PSNetworkRuleSet", - "Encryption": "Microsoft.Azure.Management.Storage.Models.Encryption", - "PrimaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", - "SecondaryEndpoints": "Microsoft.Azure.Management.Storage.Models.Endpoints", - "Identity": "Microsoft.Azure.Management.Storage.Models.Identity", - "Sku": "Microsoft.Azure.Management.Storage.Models.Sku", - "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "ExtendedProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "AccessTier": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccessTier]", - "StatusOfPrimary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", - "StatusOfSecondary": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.AccountStatus]", - "Kind": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.Kind]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.Management.Storage.Models.ProvisioningState]", - "EnableHttpsTrafficOnly": "System.Nullable`1[System.Boolean]", - "EnableHierarchicalNamespace": "System.Nullable`1[System.Boolean]", - "LastGeoFailoverTime": "System.Nullable`1[System.DateTime]", - "CreationTime": "System.Nullable`1[System.DateTime]", - "PrimaryLocation": "System.String", - "Location": "System.String", - "SecondaryLocation": "System.String", - "Id": "System.String", - "StorageAccountName": "System.String", - "ResourceGroupName": "System.String" + "Enabled": "System.Nullable`1[System.Boolean]", + "Days": "System.Nullable`1[System.Int32]" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "Create", - "Parameters": [ - { - "Name": "storageAccount", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "client", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount" + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" }, { "Name": "ToString", @@ -27971,31 +31519,42 @@ } ], "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, { "Name": "", "ReturnType": null, "Parameters": [ { - "Name": "storageAccount", + "Name": "enabled", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "days", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties": { + "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSImmutabilityPolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRules, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "UpdateHistory": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[]", - "ImmutabilityPeriodSinceCreationInDays": "System.Int32", - "State": "System.String", - "Etag": "System.String" + "CorsRulesProperty": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[]" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "ParseCorsRules", + "Parameters": [], + "ReturnType": "Microsoft.Azure.Management.Storage.Models.CorsRules" + }, { "Name": "ToString", "Parameters": [], @@ -28023,43 +31582,52 @@ } ], "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, { "Name": "", "ReturnType": null, "Parameters": [ { - "Name": "policy", + "Name": "rules", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[]": { + "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[]": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, - "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty", + "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule", "GenericTypeArguments": [], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty": { + "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSUpdateHistoryProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "Timestamp": "System.Nullable`1[System.DateTime]", - "ImmutabilityPeriodSinceCreationInDays": "System.Nullable`1[System.Int32]", - "Update": "System.String", - "ObjectIdentifier": "System.String", - "TenantId": "System.String", - "Upn": "System.String" + "MaxAgeInSeconds": "System.Int32", + "AllowedOrigins": "System.String[]", + "AllowedMethods": "System.String[]", + "ExposedHeaders": "System.String[]", + "AllowedHeaders": "System.String[]" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "ParseCorsRule", + "Parameters": [], + "ReturnType": "Microsoft.Azure.Management.Storage.Models.CorsRule" + }, { "Name": "ToString", "Parameters": [], @@ -28087,41 +31655,42 @@ } ], "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, { "Name": "", "ReturnType": null, "Parameters": [ { - "Name": "updateHistory", + "Name": "rule", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Nullable`1[System.Int32]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "System.Int32" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSLegalHoldProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Microsoft.Azure.Management.Storage.Models.CorsRule": { + "Namespace": "Microsoft.Azure.Management.Storage.Models", + "Name": "Microsoft.Azure.Management.Storage.Models.CorsRule", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.CorsRule, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Tags": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[]", - "HasLegalHold": "System.Nullable`1[System.Boolean]" + "AllowedOrigins": "System.Collections.Generic.IList`1[System.String]", + "AllowedMethods": "System.Collections.Generic.IList`1[System.String]", + "ExposedHeaders": "System.Collections.Generic.IList`1[System.String]", + "AllowedHeaders": "System.Collections.Generic.IList`1[System.String]", + "MaxAgeInSeconds": "System.Int32" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" + }, { "Name": "ToString", "Parameters": [], @@ -28149,38 +31718,45 @@ } ], "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, { "Name": "", "ReturnType": null, "Parameters": [ { - "Name": "legalHoldProperty", + "Name": "allowedOrigins", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "allowedMethods", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "maxAgeInSeconds", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "exposedHeaders", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "allowedHeaders", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[]": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, - "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty": { - "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSTagProperty, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Microsoft.Azure.Management.Storage.Models.CorsRules": { + "Namespace": "Microsoft.Azure.Management.Storage.Models", + "Name": "Microsoft.Azure.Management.Storage.Models.CorsRules", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.CorsRules, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Timestamp": "System.Nullable`1[System.DateTime]", - "Tag": "System.String", - "ObjectIdentifier": "System.String", - "TenantId": "System.String", - "Upn": "System.String" + "CorsRulesProperty": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.CorsRule]" }, "ElementType": null, "GenericTypeArguments": [], @@ -28212,38 +31788,56 @@ } ], "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, { "Name": "", "ReturnType": null, "Parameters": [ { - "Name": "tagsProperty", + "Name": "corsRulesProperty", "Type": "System.Reflection.RuntimeParameterInfo" } ] } ] }, - "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.CorsRule]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Storage.Models.CorsRule]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Storage.Models.CorsRule, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess" + "Microsoft.Azure.Management.Storage.Models.CorsRule" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess": { + "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", - "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSPublicAccess, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, + "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Enabled": "System.Nullable`1[System.Boolean]", + "Days": "System.Nullable`1[System.Int32]" + }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ + { + "Name": "ParseDeleteRetentionPolicy", + "Parameters": [], + "ReturnType": "Microsoft.Azure.Management.Storage.Models.DeleteRetentionPolicy" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, { "Name": "Equals", "Parameters": [ @@ -28260,68 +31854,68 @@ "ReturnType": "System.Int32" }, { - "Name": "ToString", + "Name": "GetType", "Parameters": [], - "ReturnType": "System.String" - }, + "ReturnType": "System.Type" + } + ], + "Constructors": [ { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" + "Name": "", + "ReturnType": null, + "Parameters": [] }, { - "Name": "CompareTo", + "Name": "", + "ReturnType": null, "Parameters": [ { - "Name": "target", + "Name": "policy", "Type": "System.Reflection.RuntimeParameterInfo" } - ], - "ReturnType": "System.Int32" - }, + ] + } + ] + }, + "Microsoft.Azure.Management.Storage.Models.BlobServiceProperties": { + "Namespace": "Microsoft.Azure.Management.Storage.Models", + "Name": "Microsoft.Azure.Management.Storage.Models.BlobServiceProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Management.Storage.Models.BlobServiceProperties, Microsoft.Azure.Management.Storage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Cors": "Microsoft.Azure.Management.Storage.Models.CorsRules", + "DeleteRetentionPolicy": "Microsoft.Azure.Management.Storage.Models.DeleteRetentionPolicy", + "DefaultServiceVersion": "System.String", + "Id": "System.String", + "Name": "System.String", + "Type": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ { - "Name": "ToString", - "Parameters": [ - { - "Name": "format", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": "System.String" + "Name": "Validate", + "Parameters": [], + "ReturnType": "System.Void" }, { "Name": "ToString", - "Parameters": [ - { - "Name": "provider", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], + "Parameters": [], "ReturnType": "System.String" }, { - "Name": "HasFlag", + "Name": "Equals", "Parameters": [ { - "Name": "flag", + "Name": "obj", "Type": "System.Reflection.RuntimeParameterInfo" } ], "ReturnType": "System.Boolean" }, { - "Name": "GetTypeCode", + "Name": "GetHashCode", "Parameters": [], - "ReturnType": "System.TypeCode" + "ReturnType": "System.Int32" }, { "Name": "GetType", @@ -28329,167 +31923,48 @@ "ReturnType": "System.Type" } ], - "Constructors": [] - }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Account": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount", - "Environment": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment", - "Subscription": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription", - "Tenant": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant", - "TokenCache": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache", - "VersionProfile": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "TenantMap": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Id": "System.String", - "Credential": "System.String", - "Type": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OnPremise": "System.Boolean", - "VersionProfiles": "System.Collections.Generic.IList`1[System.String]", - "AzureDataLakeStoreFileSystemEndpointSuffix": "System.String", - "AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix": "System.String", - "BatchEndpointResourceId": "System.String", - "DataLakeEndpointResourceId": "System.String", - "GraphEndpointResourceId": "System.String", - "AzureKeyVaultServiceEndpointResourceId": "System.String", - "AzureKeyVaultDnsSuffix": "System.String", - "TrafficManagerDnsSuffix": "System.String", - "SqlDatabaseDnsSuffix": "System.String", - "StorageEndpointSuffix": "System.String", - "ActiveDirectoryServiceEndpointResourceId": "System.String", - "GraphUrl": "System.String", - "GalleryUrl": "System.String", - "ActiveDirectoryAuthority": "System.String", - "PublishSettingsFileUrl": "System.String", - "ManagementPortalUrl": "System.String", - "ResourceManagerUrl": "System.String", - "ServiceManagementUrl": "System.String", - "AdTenant": "System.String", - "Name": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Id": "System.String", - "Name": "System.String", - "State": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Id": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CacheData": "System.Byte[]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ + "Constructors": [ { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "id", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "name", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "type", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "cors", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "defaultServiceVersion", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "deleteRetentionPolicy", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] } - ], - "Constructors": [] - }, - "System.Byte[]": { - "Namespace": "System", - "Name": "System.Byte[]", - "AssemblyQualifiedName": "System.Byte[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": "System.Byte", - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount" - ], - "Methods": [], - "Constructors": [] - }, - "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment" - ], - "Methods": [], - "Constructors": [] - }, - "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription" - ], - "Methods": [], - "Constructors": [] + ] }, "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TierToCool": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification", "TierToArchive": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification", @@ -28550,7 +32025,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterModification, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DaysAfterModificationGreaterThan": "System.Int32" }, @@ -28742,7 +32217,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Delete": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation" }, @@ -28801,7 +32276,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSDateAfterCreation, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DaysAfterCreationGreaterThan": "System.Int32" }, @@ -29154,7 +32629,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", "GenericTypeArguments": [], @@ -29164,7 +32639,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Definition": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition", "Enabled": "System.Nullable`1[System.Boolean]", @@ -29245,7 +32720,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", "Filters": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter" @@ -29315,7 +32790,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BaseBlob": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyBaseBlob", "Snapshot": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicySnapShot" @@ -29375,7 +32850,7 @@ "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter": { "Namespace": "Microsoft.Azure.Commands.Management.Storage.Models", "Name": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.Storage.Models.PSManagementPolicyRuleFilter, Microsoft.Azure.PowerShell.Cmdlets.Storage.Management, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrefixMatch": "System.String[]", "BlobTypes": "System.String[]" diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json index a0c4ec956a7b..5021a7b038cf 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json @@ -31944,6 +31944,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "Context", "AliasList": [], @@ -32247,6 +32265,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ServerTimeoutPerRequest", @@ -34288,6 +34330,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ServerTimeoutPerRequest", @@ -35764,6 +35830,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ServerTimeoutPerRequest", @@ -40845,6 +40935,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ServerTimeoutPerRequest", @@ -41038,6 +41152,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ServerTimeoutPerRequest", @@ -132269,6 +132407,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "Context", "AliasList": [], @@ -132550,6 +132706,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ServerTimeoutPerRequest", @@ -134569,6 +134749,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ServerTimeoutPerRequest", @@ -136023,6 +136227,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ServerTimeoutPerRequest", @@ -136242,6 +136470,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ServerTimeoutPerRequest", @@ -241114,6 +241366,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "Context", "AliasList": [], @@ -241522,6 +241792,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Context", @@ -244761,6 +245055,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Context", @@ -249154,6 +249472,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Context", @@ -249518,6 +249860,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Context", @@ -258027,6 +258393,24 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, { "Name": "Context", "AliasList": [], @@ -262229,6 +262613,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Context", @@ -265307,6 +265715,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Context", @@ -265584,6 +266016,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Context", @@ -265813,6 +266269,30 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Context", diff --git a/tools/VersionController/Program.cs b/tools/VersionController/Program.cs index 7a8448aace36..a95a0a80b899 100644 --- a/tools/VersionController/Program.cs +++ b/tools/VersionController/Program.cs @@ -30,12 +30,11 @@ public class Program public static void Main(string[] args) { var executingAssemblyPath = Assembly.GetExecutingAssembly().Location; - var artifactsDirectory = Directory.GetParent(executingAssemblyPath).FullName; + var versionControllerDirectory = Directory.GetParent(executingAssemblyPath).FullName; + var artifactsDirectory = Directory.GetParent(versionControllerDirectory).FullName; _rootDirectory = Directory.GetParent(artifactsDirectory).FullName; - _projectDirectories = new List{ Path.Combine(_rootDirectory, @"src\") }.Where((d) => Directory.Exists(d)).ToList(); - _outputDirectories = new List{ Path.Combine(_rootDirectory, @"artifacts\Debug\") }.Where((d) => Directory.Exists(d)).ToList(); var exceptionsDirectory = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Exceptions");